diff --git a/.github/skills/csharp-snippet-modernization/SKILL.md b/.github/skills/csharp-snippet-modernization/SKILL.md index 1e693a6f124..eeffbf9e23f 100644 --- a/.github/skills/csharp-snippet-modernization/SKILL.md +++ b/.github/skills/csharp-snippet-modernization/SKILL.md @@ -23,8 +23,8 @@ Apply these changes when they preserve behavior and sample clarity: - Use top-level statements where possible. - Use C# built-in aliases, such as `string`, `int`, and `bool`, instead of - framework type names. -- Use target-typed `new` when the target type is evident. + framework type names. Use `nint` and `nuint` for `IntPtr` and `UIntPtr`. +- Remove calls to `ToString()` when the result is used in a string context, unless the call is the subject of the snippet. - Use string interpolation instead of composite formatting, unless it makes the code harder to read or the composite-format overload is the subject of the snippet. For example, keep composite formatting when the arguments are complex: @@ -34,8 +34,8 @@ Apply these changes when they preserve behavior and sample clarity: timeZoneTime.DateTime); ``` - Use raw string literals (or interpolated raw string literals) for paragraph-style output. -- Use object and collection initializers when evaluation order and behavior - remain unchanged. +- Use target-typed `new` when the target type is evident. +- Use collection expressions to initialize collections and arrays wherever possible. - Convert eligible value-producing `switch` statements to switch expressions. - Use auto-implemented properties instead of defining a separate field. - Use expression-bodied members for simple single-expression members. If the line gets too long, for example, a method signature with a type parameter constraint, place the expression body on a new line: diff --git a/snippets/csharp/System/ComparisonT/Overview/Program.cs b/snippets/csharp/System/ComparisonT/Overview/Program.cs new file mode 100644 index 00000000000..fa4c677450d --- /dev/null +++ b/snippets/csharp/System/ComparisonT/Overview/Program.cs @@ -0,0 +1,2 @@ +ComparisonTOverviewExample1.Run(); +ComparisonTOverviewExample2.Run(); diff --git a/snippets/csharp/System/ComparisonT/Overview/Project.csproj b/snippets/csharp/System/ComparisonT/Overview/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/ComparisonT/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/ComparisonT/Overview/comparisont1.cs b/snippets/csharp/System/ComparisonT/Overview/comparisont1.cs index fbc3ab48f1e..1155811397d 100644 --- a/snippets/csharp/System/ComparisonT/Overview/comparisont1.cs +++ b/snippets/csharp/System/ComparisonT/Overview/comparisont1.cs @@ -3,75 +3,62 @@ public class CityInfo { - string cityName; - string countryName; - int pop2010; + string cityName; + string countryName; + int pop2010; - public CityInfo(string name, string country, int pop2010) - { - this.cityName = name; - this.countryName = country; - this.pop2010 = pop2010; - } + public CityInfo(string name, string country, int pop2010) + { + this.cityName = name; + this.countryName = country; + this.pop2010 = pop2010; + } - public string City - { get { return this.cityName; } } + public string City => this.cityName; - public string Country - { get { return this.countryName; } } + public string Country => this.countryName; - public int Population - { get { return this.pop2010; } } + public int Population => this.pop2010; - public static int CompareByName(CityInfo city1, CityInfo city2) - { - return String.Compare(city1.City, city2.City); - } + public static int CompareByName(CityInfo city1, CityInfo city2) => string.Compare(city1.City, city2.City); - public static int CompareByPopulation(CityInfo city1, CityInfo city2) - { - return city1.Population.CompareTo(city2.Population); - } + public static int CompareByPopulation(CityInfo city1, CityInfo city2) => city1.Population.CompareTo(city2.Population); - public static int CompareByNames(CityInfo city1, CityInfo city2) - { - return String.Compare(city1.Country + city1.City, city2.Country + city2.City); - } + public static int CompareByNames(CityInfo city1, CityInfo city2) => string.Compare(city1.Country + city1.City, city2.Country + city2.City); } -public class Example +public class ComparisonTOverviewExample1 { - public static void Main() - { - CityInfo NYC = new CityInfo("New York City", "United States of America", 8175133 ); - CityInfo Det = new CityInfo("Detroit", "United States of America", 713777); - CityInfo Paris = new CityInfo("Paris", "France", 2193031); - CityInfo[] cities = { NYC, Det, Paris }; - // Display ordered array. - DisplayArray(cities); + public static void Run() + { + CityInfo NYC = new("New York City", "United States of America", 8175133); + CityInfo Det = new("Detroit", "United States of America", 713777); + CityInfo Paris = new("Paris", "France", 2193031); + CityInfo[] cities = { NYC, Det, Paris }; + // Display ordered array. + DisplayArray(cities); - // Sort array by city name. - Array.Sort(cities, CityInfo.CompareByName); - DisplayArray(cities); + // Sort array by city name. + Array.Sort(cities, CityInfo.CompareByName); + DisplayArray(cities); - // Sort array by population. - Array.Sort(cities, CityInfo.CompareByPopulation); - DisplayArray(cities); + // Sort array by population. + Array.Sort(cities, CityInfo.CompareByPopulation); + DisplayArray(cities); - // Sort array by country + city name. - Array.Sort(cities, CityInfo.CompareByNames); - DisplayArray(cities); - } + // Sort array by country + city name. + Array.Sort(cities, CityInfo.CompareByNames); + DisplayArray(cities); + } - private static void DisplayArray(CityInfo[] cities) - { - Console.WriteLine("{0,-20} {1,-25} {2,10}", "City", "Country", "Population"); - foreach (var city in cities) - Console.WriteLine("{0,-20} {1,-25} {2,10:N0}", city.City, - city.Country, city.Population); + private static void DisplayArray(CityInfo[] cities) + { + Console.WriteLine($"{"City",-20} {"Country",-25} {"Population",10}"); + foreach (var city in cities) + Console.WriteLine($"{city.City,-20} {city.Country,-25} {city.Population,10:N0}"); - Console.WriteLine(); - } + Console.WriteLine(); + } } // The example displays the following output: // City Country Population diff --git a/snippets/csharp/System/ComparisonT/Overview/source.cs b/snippets/csharp/System/ComparisonT/Overview/source.cs index 4ffc0ed59bb..ded501522c8 100644 --- a/snippets/csharp/System/ComparisonT/Overview/source.cs +++ b/snippets/csharp/System/ComparisonT/Overview/source.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; -public class Example +public class ComparisonTOverviewExample2 { private static int CompareDinosByLength(string x, string y) { @@ -26,7 +26,7 @@ private static int CompareDinosByLength(string x, string y) // If x is not null... // if (y == null) - // ...and y is null, x is greater. + // ...and y is null, x is greater. { return 1; } @@ -55,15 +55,17 @@ private static int CompareDinosByLength(string x, string y) } } - public static void Main() + public static void Run() { - List dinosaurs = new List(); - dinosaurs.Add("Pachycephalosaurus"); - dinosaurs.Add("Amargasaurus"); - dinosaurs.Add(""); - dinosaurs.Add(null); - dinosaurs.Add("Mamenchisaurus"); - dinosaurs.Add("Deinonychus"); + List dinosaurs = new() + { + "Pachycephalosaurus", + "Amargasaurus", + "", + null, + "Mamenchisaurus", + "Deinonychus" + }; Display(dinosaurs); Console.WriteLine("\nSort with generic Comparison delegate:"); @@ -74,12 +76,12 @@ public static void Main() private static void Display(List list) { Console.WriteLine(); - foreach( string s in list ) + foreach (string s in list) { if (s == null) Console.WriteLine("(null)"); else - Console.WriteLine("\"{0}\"", s); + Console.WriteLine($"\"{s}\""); } } } diff --git a/snippets/csharp/System/LazyT/.ctor/Program.cs b/snippets/csharp/System/LazyT/.ctor/Program.cs new file mode 100644 index 00000000000..18d5981ecf8 --- /dev/null +++ b/snippets/csharp/System/LazyT/.ctor/Program.cs @@ -0,0 +1,6 @@ +LazyCtorExample1.Run(); +LazyCtorExample2.Run(); +LazyCtorExample3.Run(); +LazyCtorExample4.Run(); +LazyCtorExample5.Run(); +LazyCtorExample6.Run(); diff --git a/snippets/csharp/System/LazyT/.ctor/Project.csproj b/snippets/csharp/System/LazyT/.ctor/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/LazyT/.ctor/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/LazyT/.ctor/example.cs b/snippets/csharp/System/LazyT/.ctor/example.cs index 53baccaab31..910c9e28ba5 100644 --- a/snippets/csharp/System/LazyT/.ctor/example.cs +++ b/snippets/csharp/System/LazyT/.ctor/example.cs @@ -1,12 +1,13 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample1; -class Program +class LazyCtorExample1 { static Lazy lazyLargeObject = null; - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -25,7 +26,7 @@ static void Main() Console.ReadLine(); // Create and start 3 threads, passing the same blocking event to all of them. - ManualResetEvent startingGate = new ManualResetEvent(false); + ManualResetEvent startingGate = new(false); Thread[] threads = { new Thread(ThreadProc), new Thread(ThreadProc), new Thread(ThreadProc) }; foreach (Thread t in threads) { @@ -49,7 +50,7 @@ static void Main() static void ThreadProc(object state) { // Wait for the signal. - ManualResetEvent waitForStart = (ManualResetEvent) state; + ManualResetEvent waitForStart = (ManualResetEvent)state; waitForStart.WaitOne(); // @@ -62,7 +63,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("Initialized by thread {0}; last used by thread {1}.", @@ -71,12 +72,12 @@ static void ThreadProc(object state) } } -class LargeObject +class LargeObjectCtorExample1 { int initBy = 0; - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; - public LargeObject() + public LargeObjectCtorExample1() { initBy = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("LargeObject was created on thread id {0}.", initBy); diff --git a/snippets/csharp/System/LazyT/.ctor/example1.cs b/snippets/csharp/System/LazyT/.ctor/example1.cs index d05e301ad74..d7938abc811 100644 --- a/snippets/csharp/System/LazyT/.ctor/example1.cs +++ b/snippets/csharp/System/LazyT/.ctor/example1.cs @@ -1,12 +1,13 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample2; -class Program +class LazyCtorExample2 { static Lazy lazyLargeObject = null; - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -34,13 +35,9 @@ static void Main() } } -class LargeObject +class LargeObjectCtorExample2 { - public LargeObject() - { - Console.WriteLine("LargeObject was created on thread id {0}.", - Thread.CurrentThread.ManagedThreadId); - } + public LargeObjectCtorExample2() => Console.WriteLine($"LargeObject was created on thread id {Thread.CurrentThread.ManagedThreadId}."); public long[] Data = new long[100000000]; } diff --git a/snippets/csharp/System/LazyT/.ctor/example2.cs b/snippets/csharp/System/LazyT/.ctor/example2.cs index 94f0bac084e..b2e3f48919e 100644 --- a/snippets/csharp/System/LazyT/.ctor/example2.cs +++ b/snippets/csharp/System/LazyT/.ctor/example2.cs @@ -1,19 +1,17 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample3; -class Program +class LazyCtorExample3 { static Lazy lazyLargeObject = null; // - static LargeObject InitLargeObject() - { - return new LargeObject(); - } + static LargeObject InitLargeObject() => new LargeObject(); // - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -58,7 +56,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("Initialized by thread {0}; last used by thread {1}.", @@ -67,20 +65,20 @@ static void ThreadProc(object state) } catch (ApplicationException aex) { - Console.WriteLine("Exception: {0}", aex.Message); + Console.WriteLine($"Exception: {aex.Message}"); } // } } -class LargeObject +class LargeObjectCtorExample3 { int initBy = 0; - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; // static int instanceCount = 0; - public LargeObject() + public LargeObjectCtorExample3() { if (1 == Interlocked.Increment(ref instanceCount)) { diff --git a/snippets/csharp/System/LazyT/.ctor/example3.cs b/snippets/csharp/System/LazyT/.ctor/example3.cs index 634f125726b..2588d098243 100644 --- a/snippets/csharp/System/LazyT/.ctor/example3.cs +++ b/snippets/csharp/System/LazyT/.ctor/example3.cs @@ -1,19 +1,17 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample4; -class Program +class LazyCtorExample4 { static Lazy lazyLargeObject = null; // - static LargeObject InitLargeObject() - { - return new LargeObject(); - } + static LargeObject InitLargeObject() => new LargeObject(); // - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -40,7 +38,7 @@ static void Main() } catch (ApplicationException aex) { - Console.WriteLine("Exception: {0}", aex.Message); + Console.WriteLine($"Exception: {aex.Message}"); } } // @@ -50,11 +48,11 @@ static void Main() } } -class LargeObject +class LargeObjectCtorExample4 { // static bool pleaseThrow = true; - public LargeObject() + public LargeObjectCtorExample4() { if (pleaseThrow) { @@ -62,8 +60,7 @@ public LargeObject() throw new ApplicationException("Throw only ONCE."); } - Console.WriteLine("LargeObject was created on thread id {0}.", - Thread.CurrentThread.ManagedThreadId); + Console.WriteLine($"LargeObject was created on thread id {Thread.CurrentThread.ManagedThreadId}."); } // public long[] Data = new long[100000000]; diff --git a/snippets/csharp/System/LazyT/.ctor/example4.cs b/snippets/csharp/System/LazyT/.ctor/example4.cs index 768f57b38ea..6c97044e88e 100644 --- a/snippets/csharp/System/LazyT/.ctor/example4.cs +++ b/snippets/csharp/System/LazyT/.ctor/example4.cs @@ -1,8 +1,9 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample5; -class Program +class LazyCtorExample5 { static Lazy lazyLargeObject = null; @@ -14,14 +15,13 @@ static LargeObject InitLargeObject() if (1 == Interlocked.Increment(ref instanceCount)) { throw new ApplicationException( - String.Format("Lazy initialization function failed on thread {0}.", - Thread.CurrentThread.ManagedThreadId)); + $"Lazy initialization function failed on thread {Thread.CurrentThread.ManagedThreadId}."); } return new LargeObject(Thread.CurrentThread.ManagedThreadId); } // - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -31,7 +31,7 @@ static void Main() // // Create and start 3 threads, passing the same blocking event to all of them. - ManualResetEvent startingGate = new ManualResetEvent(false); + ManualResetEvent startingGate = new(false); Thread[] threads = { new Thread(ThreadProc), new Thread(ThreadProc), new Thread(ThreadProc) }; foreach (Thread t in threads) { @@ -64,7 +64,7 @@ static void Main() static void ThreadProc(object state) { // Wait for the signal. - ManualResetEvent waitForStart = (ManualResetEvent) state; + ManualResetEvent waitForStart = (ManualResetEvent)state; waitForStart.WaitOne(); // @@ -79,7 +79,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("LargeObject was initialized by thread {0}; last used by thread {1}.", @@ -88,28 +88,25 @@ static void ThreadProc(object state) } catch (ApplicationException ex) { - Console.WriteLine("ApplicationException: {0}", ex.Message); + Console.WriteLine($"ApplicationException: {ex.Message}"); } // } } -class LargeObject +class LargeObjectCtorExample5 { int initBy = -1; - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; // - public LargeObject(int initializedBy) + public LargeObjectCtorExample5(int initializedBy) { initBy = initializedBy; Console.WriteLine("Constructor: Instance initializing on thread {0}", initBy); } - ~LargeObject() - { - Console.WriteLine("Finalizer: Instance was initialized on {0}", initBy); - } + ~LargeObjectCtorExample5() => Console.WriteLine("Finalizer: Instance was initialized on {0}", initBy); // public long[] Data = new long[100000000]; diff --git a/snippets/csharp/System/LazyT/.ctor/example5.cs b/snippets/csharp/System/LazyT/.ctor/example5.cs index 8e3403efd25..b6335414466 100644 --- a/snippets/csharp/System/LazyT/.ctor/example5.cs +++ b/snippets/csharp/System/LazyT/.ctor/example5.cs @@ -1,12 +1,13 @@ // using System; using System.Threading; +using LargeObject = LargeObjectCtorExample6; -class Program +class LazyCtorExample6 { static Lazy lazyLargeObject = null; - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -15,7 +16,7 @@ static void Main() // // Create and start 3 threads, passing the same blocking event to all of them. - ManualResetEvent startingGate = new ManualResetEvent(false); + ManualResetEvent startingGate = new(false); Thread[] threads = { new Thread(ThreadProc), new Thread(ThreadProc), new Thread(ThreadProc) }; foreach (Thread t in threads) { @@ -49,7 +50,7 @@ static void Main() static void ThreadProc(object state) { // Wait for the signal. - ManualResetEvent waitForStart = (ManualResetEvent) state; + ManualResetEvent waitForStart = (ManualResetEvent)state; waitForStart.WaitOne(); // @@ -63,7 +64,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("LargeObject was initialized by thread {0}; last used by thread {1}.", @@ -72,22 +73,19 @@ static void ThreadProc(object state) } } -class LargeObject +class LargeObjectCtorExample6 { int initBy = -1; - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; // - public LargeObject() + public LargeObjectCtorExample6() { initBy = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("Constructor: Instance initializing on thread {0}", initBy); } - ~LargeObject() - { - Console.WriteLine("Finalizer: Instance was initialized on {0}", initBy); - } + ~LargeObjectCtorExample6() => Console.WriteLine("Finalizer: Instance was initialized on {0}", initBy); // public long[] Data = new long[100000000]; diff --git a/snippets/csharp/System/LazyT/Overview/Program.cs b/snippets/csharp/System/LazyT/Overview/Program.cs new file mode 100644 index 00000000000..22896b8011d --- /dev/null +++ b/snippets/csharp/System/LazyT/Overview/Program.cs @@ -0,0 +1,2 @@ +LazyOverviewExample1.Run(); +LazyOverviewExample2.Run(); diff --git a/snippets/csharp/System/LazyT/Overview/Project.csproj b/snippets/csharp/System/LazyT/Overview/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/LazyT/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/LazyT/Overview/example.cs b/snippets/csharp/System/LazyT/Overview/example.cs index a5be10f8635..c61c673e31a 100644 --- a/snippets/csharp/System/LazyT/Overview/example.cs +++ b/snippets/csharp/System/LazyT/Overview/example.cs @@ -1,21 +1,22 @@ // using System; using System.Threading; +using LargeObject = LargeObjectOverviewExample1; -class Program +class LazyOverviewExample1 { static Lazy lazyLargeObject = null; // static LargeObject InitLargeObject() { - LargeObject large = new LargeObject(Thread.CurrentThread.ManagedThreadId); + LargeObject large = new(Thread.CurrentThread.ManagedThreadId); // Perform additional initialization here. return large; } // - static void Main() + public static void Run() { // The lazy initializer is created here. LargeObject is not created until the // ThreadProc method executes. @@ -38,7 +39,7 @@ static void Main() Thread[] threads = new Thread[3]; for (int i = 0; i < 3; i++) { - threads[i] = new Thread(ThreadProc); + threads[i] = new(ThreadProc); threads[i].Start(); } @@ -60,7 +61,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("Initialized by thread {0}; last used by thread {1}.", @@ -70,13 +71,13 @@ static void ThreadProc(object state) } } -class LargeObject +class LargeObjectOverviewExample1 { - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; // int initBy = 0; - public LargeObject(int initializedBy) + public LargeObjectOverviewExample1(int initializedBy) { initBy = initializedBy; Console.WriteLine("LargeObject was created on thread id {0}.", initBy); diff --git a/snippets/csharp/System/LazyT/Overview/lambda.cs b/snippets/csharp/System/LazyT/Overview/lambda.cs index 2067f9837bd..e9939c4b39a 100644 --- a/snippets/csharp/System/LazyT/Overview/lambda.cs +++ b/snippets/csharp/System/LazyT/Overview/lambda.cs @@ -1,16 +1,17 @@ using System; using System.Threading; +using LargeObject = LargeObjectOverviewExample2; -class Program +class LazyOverviewExample2 { static Lazy lazyLargeObject = null; - static void Main() + public static void Run() { // lazyLargeObject = new Lazy(() => { - LargeObject large = new LargeObject(Thread.CurrentThread.ManagedThreadId); + LargeObject large = new(Thread.CurrentThread.ManagedThreadId); // Perform additional initialization here. return large; }); @@ -25,7 +26,7 @@ static void Main() Thread[] threads = new Thread[3]; for (int i = 0; i < 3; i++) { - threads[i] = new Thread(ThreadProc); + threads[i] = new(ThreadProc); threads[i].Start(); } @@ -46,7 +47,7 @@ static void ThreadProc(object state) // IMPORTANT: Lazy initialization is thread-safe, but it doesn't protect the // object after creation. You must lock the object before accessing it, // unless the type is thread safe. (LargeObject is not thread safe.) - lock(large) + lock (large) { large.Data[0] = Thread.CurrentThread.ManagedThreadId; Console.WriteLine("Initialized by thread {0}; last used by thread {1}.", @@ -55,12 +56,12 @@ static void ThreadProc(object state) } } -class LargeObject +class LargeObjectOverviewExample2 { - public int InitializedBy { get { return initBy; } } + public int InitializedBy => initBy; int initBy = 0; - public LargeObject(int initializedBy) + public LargeObjectOverviewExample2(int initializedBy) { initBy = initializedBy; Console.WriteLine("LargeObject was created on thread id {0}.", initBy); diff --git a/snippets/csharp/System/Math/Abs/Abs1.cs b/snippets/csharp/System/Math/Abs/Abs1.cs index a8a3403f890..91ebdcecb62 100644 --- a/snippets/csharp/System/Math/Abs/Abs1.cs +++ b/snippets/csharp/System/Math/Abs/Abs1.cs @@ -1,21 +1,21 @@ using System; -public class Example +public class MathAbsExample1 { - public static void Main() - { - // - decimal[] decimals = { Decimal.MaxValue, 12.45M, 0M, -19.69M, - Decimal.MinValue }; - foreach (decimal value in decimals) - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + public static void Run() + { + // + decimal[] decimals = { decimal.MaxValue, 12.45M, 0M, -19.69M, + decimal.MinValue }; + foreach (decimal value in decimals) + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - // The example displays the following output: - // Abs(79228162514264337593543950335) = 79228162514264337593543950335 - // Abs(12.45) = 12.45 - // Abs(0) = 0 - // Abs(-19.69) = 19.69 - // Abs(-79228162514264337593543950335) = 79228162514264337593543950335 - // - } + // The example displays the following output: + // Abs(79228162514264337593543950335) = 79228162514264337593543950335 + // Abs(12.45) = 12.45 + // Abs(0) = 0 + // Abs(-19.69) = 19.69 + // Abs(-79228162514264337593543950335) = 79228162514264337593543950335 + // + } } diff --git a/snippets/csharp/System/Math/Abs/Program.cs b/snippets/csharp/System/Math/Abs/Program.cs new file mode 100644 index 00000000000..98ae5302805 --- /dev/null +++ b/snippets/csharp/System/Math/Abs/Program.cs @@ -0,0 +1,7 @@ +MathAbsExample1.Run(); +MathAbsExample2.Run(); +MathAbsExample3.Run(); +MathAbsExample4.Run(); +MathAbsExample5.Run(); +MathAbsExample6.Run(); +MathAbsExample7.Run(); diff --git a/snippets/csharp/System/Math/Abs/Project.csproj b/snippets/csharp/System/Math/Abs/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/Math/Abs/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/Math/Abs/abs2.cs b/snippets/csharp/System/Math/Abs/abs2.cs index 5c5bca5462a..bd0869db31e 100644 --- a/snippets/csharp/System/Math/Abs/abs2.cs +++ b/snippets/csharp/System/Math/Abs/abs2.cs @@ -1,23 +1,23 @@ using System; -public class Example +public class MathAbsExample2 { - public static void Main() - { - // - double[] doubles = { Double.MaxValue, 16.354e-17, 15.098123, 0, - -19.069713, -15.058e18, Double.MinValue }; - foreach (double value in doubles) - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + public static void Run() + { + // + double[] doubles = { double.MaxValue, 16.354e-17, 15.098123, 0, + -19.069713, -15.058e18, double.MinValue }; + foreach (double value in doubles) + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - // The example displays the following output: - // Abs(1.79769313486232E+308) = 1.79769313486232E+308 - // Abs(1.6354E-16) = 1.6354E-16 - // Abs(15.098123) = 15.098123 - // Abs(0) = 0 - // Abs(-19.069713) = 19.069713 - // Abs(-1.5058E+19) = 1.5058E+19 - // Abs(-1.79769313486232E+308) = 1.79769313486232E+308 - // - } + // The example displays the following output: + // Abs(1.79769313486232E+308) = 1.79769313486232E+308 + // Abs(1.6354E-16) = 1.6354E-16 + // Abs(15.098123) = 15.098123 + // Abs(0) = 0 + // Abs(-19.069713) = 19.069713 + // Abs(-1.5058E+19) = 1.5058E+19 + // Abs(-1.79769313486232E+308) = 1.79769313486232E+308 + // + } } diff --git a/snippets/csharp/System/Math/Abs/abs3.cs b/snippets/csharp/System/Math/Abs/abs3.cs index b37c617cd7a..28275eb681c 100644 --- a/snippets/csharp/System/Math/Abs/abs3.cs +++ b/snippets/csharp/System/Math/Abs/abs3.cs @@ -1,28 +1,29 @@ using System; -public class Example +public class MathAbsExample3 { - public static void Main() - { - // - short[] values = { Int16.MaxValue, 10328, 0, -1476, Int16.MinValue }; - foreach (short value in values) - { - try { - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - } - catch (OverflowException) { - Console.WriteLine("Unable to calculate the absolute value of {0}.", - value); - } - } + public static void Run() + { + // + short[] values = { short.MaxValue, 10328, 0, -1476, short.MinValue }; + foreach (short value in values) + { + try + { + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + } + catch (OverflowException) + { + Console.WriteLine($"Unable to calculate the absolute value of {value}."); + } + } - // The example displays the following output: - // Abs(32767) = 32767 - // Abs(10328) = 10328 - // Abs(0) = 0 - // Abs(-1476) = 1476 - // Unable to calculate the absolute value of -32768. - // - } + // The example displays the following output: + // Abs(32767) = 32767 + // Abs(10328) = 10328 + // Abs(0) = 0 + // Abs(-1476) = 1476 + // Unable to calculate the absolute value of -32768. + // + } } diff --git a/snippets/csharp/System/Math/Abs/abs4.cs b/snippets/csharp/System/Math/Abs/abs4.cs index dea56d9505d..e3138e4b8ae 100644 --- a/snippets/csharp/System/Math/Abs/abs4.cs +++ b/snippets/csharp/System/Math/Abs/abs4.cs @@ -1,28 +1,29 @@ using System; -public class Example +public class MathAbsExample4 { - public static void Main() - { - // - int[] values = { Int32.MaxValue, 16921, 0, -804128, Int32.MinValue }; - foreach (int value in values) - { - try { - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - } - catch (OverflowException) { - Console.WriteLine("Unable to calculate the absolute value of {0}.", - value); - } - } + public static void Run() + { + // + int[] values = { int.MaxValue, 16921, 0, -804128, int.MinValue }; + foreach (int value in values) + { + try + { + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + } + catch (OverflowException) + { + Console.WriteLine($"Unable to calculate the absolute value of {value}."); + } + } - // The example displays the following output: - // Abs(2147483647) = 2147483647 - // Abs(16921) = 16921 - // Abs(0) = 0 - // Abs(-804128) = 804128 - // Unable to calculate the absolute value of -2147483648. - // - } + // The example displays the following output: + // Abs(2147483647) = 2147483647 + // Abs(16921) = 16921 + // Abs(0) = 0 + // Abs(-804128) = 804128 + // Unable to calculate the absolute value of -2147483648. + // + } } diff --git a/snippets/csharp/System/Math/Abs/abs5.cs b/snippets/csharp/System/Math/Abs/abs5.cs index 99dd0159d3a..410a8ef34b6 100644 --- a/snippets/csharp/System/Math/Abs/abs5.cs +++ b/snippets/csharp/System/Math/Abs/abs5.cs @@ -1,28 +1,29 @@ using System; -public class Example +public class MathAbsExample5 { - public static void Main() - { - // - long[] values = { Int64.MaxValue, 109013, 0, -6871982, Int64.MinValue }; - foreach (long value in values) - { - try { - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - } - catch (OverflowException) { - Console.WriteLine("Unable to calculate the absolute value of {0}.", - value); - } - } + public static void Run() + { + // + long[] values = { long.MaxValue, 109013, 0, -6871982, long.MinValue }; + foreach (long value in values) + { + try + { + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + } + catch (OverflowException) + { + Console.WriteLine($"Unable to calculate the absolute value of {value}."); + } + } - // The example displays the following output: - // Abs(9223372036854775807) = 9223372036854775807 - // Abs(109013) = 109013 - // Abs(0) = 0 - // Abs(-6871982) = 6871982 - // Unable to calculate the absolute value of -9223372036854775808. - // - } + // The example displays the following output: + // Abs(9223372036854775807) = 9223372036854775807 + // Abs(109013) = 109013 + // Abs(0) = 0 + // Abs(-6871982) = 6871982 + // Unable to calculate the absolute value of -9223372036854775808. + // + } } diff --git a/snippets/csharp/System/Math/Abs/abs6.cs b/snippets/csharp/System/Math/Abs/abs6.cs index ab5cf586f80..b617e930716 100644 --- a/snippets/csharp/System/Math/Abs/abs6.cs +++ b/snippets/csharp/System/Math/Abs/abs6.cs @@ -1,28 +1,29 @@ using System; -public class Example +public class MathAbsExample6 { - public static void Main() + public static void Run() { - // - sbyte[] values = { SByte.MaxValue, 98, 0, -32, SByte.MinValue }; - foreach (sbyte value in values) - { - try { - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - } - catch (OverflowException) { - Console.WriteLine("Unable to calculate the absolute value of {0}.", - value); - } - } + // + sbyte[] values = { sbyte.MaxValue, 98, 0, -32, sbyte.MinValue }; + foreach (sbyte value in values) + { + try + { + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + } + catch (OverflowException) + { + Console.WriteLine($"Unable to calculate the absolute value of {value}."); + } + } - // The example displays the following output: - // Abs(127) = 127 - // Abs(98) = 98 - // Abs(0) = 0 - // Abs(-32) = 32 - // Unable to calculate the absolute value of -128. - // - } + // The example displays the following output: + // Abs(127) = 127 + // Abs(98) = 98 + // Abs(0) = 0 + // Abs(-32) = 32 + // Unable to calculate the absolute value of -128. + // + } } diff --git a/snippets/csharp/System/Math/Abs/abs7.cs b/snippets/csharp/System/Math/Abs/abs7.cs index 7ea386cde58..b2d0c1b70b4 100644 --- a/snippets/csharp/System/Math/Abs/abs7.cs +++ b/snippets/csharp/System/Math/Abs/abs7.cs @@ -1,23 +1,23 @@ using System; -public class Example +public class MathAbsExample7 { - public static void Main() - { - // - float[] values= { Single.MaxValue, 16.354e-12F, 15.098123F, 0F, - -19.069713F, -15.058e17F, Single.MinValue }; - foreach (float value in values) - Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); + public static void Run() + { + // + float[] values = { float.MaxValue, 16.354e-12F, 15.098123F, 0F, + -19.069713F, -15.058e17F, float.MinValue }; + foreach (float value in values) + Console.WriteLine($"Abs({value}) = {Math.Abs(value)}"); - // The example displays the following output: - // Abs(3.402823E+38) = 3.402823E+38 - // Abs(1.6354E-11) = 1.6354E-11 - // Abs(15.09812) = 15.09812 - // Abs(0) = 0 - // Abs(-19.06971) = 19.06971 - // Abs(-1.5058E+18) = 1.5058E+18 - // Abs(-3.402823E+38) = 3.402823E+38 - // - } + // The example displays the following output: + // Abs(3.402823E+38) = 3.402823E+38 + // Abs(1.6354E-11) = 1.6354E-11 + // Abs(15.09812) = 15.09812 + // Abs(0) = 0 + // Abs(-19.06971) = 19.06971 + // Abs(-1.5058E+18) = 1.5058E+18 + // Abs(-3.402823E+38) = 3.402823E+38 + // + } } diff --git a/snippets/csharp/System/Math/Atan/atan.cs b/snippets/csharp/System/Math/Atan/atan.cs index 0880e906d89..b50dacd3be6 100644 --- a/snippets/csharp/System/Math/Atan/atan.cs +++ b/snippets/csharp/System/Math/Atan/atan.cs @@ -8,34 +8,34 @@ class Sample { public static void Main() { - double x = 1.0; - double y = 2.0; - double angle; - double radians; - double result; - -// Calculate the tangent of 30 degrees. - angle = 30; - radians = angle * (Math.PI/180); - result = Math.Tan(radians); - Console.WriteLine("The tangent of 30 degrees is {0}.", result); - -// Calculate the arctangent of the previous tangent. - radians = Math.Atan(result); - angle = radians * (180/Math.PI); - Console.WriteLine("The previous tangent is equivalent to {0} degrees.", angle); - -// Calculate the arctangent of an angle. - String line1 = "{0}The arctangent of the angle formed by the x-axis and "; - String line2 = "a vector to point ({0},{1}) is {2}, "; - String line3 = "which is equivalent to {0} degrees."; - - radians = Math.Atan2(y, x); - angle = radians * (180/Math.PI); - - Console.WriteLine(line1, Environment.NewLine); - Console.WriteLine(line2, x, y, radians); - Console.WriteLine(line3, angle); + double x = 1.0; + double y = 2.0; + double angle; + double radians; + double result; + + // Calculate the tangent of 30 degrees. + angle = 30; + radians = angle * (Math.PI / 180); + result = Math.Tan(radians); + Console.WriteLine($"The tangent of 30 degrees is {result}."); + + // Calculate the arctangent of the previous tangent. + radians = Math.Atan(result); + angle = radians * (180 / Math.PI); + Console.WriteLine($"The previous tangent is equivalent to {angle} degrees."); + + // Calculate the arctangent of an angle. + string line1 = "{0}The arctangent of the angle formed by the x-axis and "; + string line2 = "a vector to point ({0},{1}) is {2}, "; + string line3 = "which is equivalent to {0} degrees."; + + radians = Math.Atan2(y, x); + angle = radians * (180 / Math.PI); + + Console.WriteLine(line1, Environment.NewLine); + Console.WriteLine(line2, x, y, radians); + Console.WriteLine(line3, angle); } } /* @@ -48,4 +48,4 @@ The arctangent of the angle formed by the x-axis and a vector to point (1,2) is 1.10714871779409, which is equivalent to 63.434948822922 degrees. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Math/BigMul/bigmul.cs b/snippets/csharp/System/Math/BigMul/bigmul.cs index 22b26ca9855..77bfae833d3 100644 --- a/snippets/csharp/System/Math/BigMul/bigmul.cs +++ b/snippets/csharp/System/Math/BigMul/bigmul.cs @@ -6,13 +6,13 @@ class Sample { public static void Main() { - int int1 = Int32.MaxValue; - int int2 = Int32.MaxValue; - long longResult; -// - longResult = Math.BigMul(int1, int2); - Console.WriteLine("Calculate the product of two Int32 values:"); - Console.WriteLine("{0} * {1} = {2}", int1, int2, longResult); + int int1 = int.MaxValue; + int int2 = int.MaxValue; + long longResult; + // + longResult = Math.BigMul(int1, int2); + Console.WriteLine("Calculate the product of two Int32 values:"); + Console.WriteLine($"{int1} * {int2} = {longResult}"); } } /* @@ -20,4 +20,4 @@ public static void Main() Calculate the product of two Int32 values: 2147483647 * 2147483647 = 4611686014132420609 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Math/Ceiling/Ceiling1.cs b/snippets/csharp/System/Math/Ceiling/Ceiling1.cs index 0a49c4ecf24..e86a94c6527 100644 --- a/snippets/csharp/System/Math/Ceiling/Ceiling1.cs +++ b/snippets/csharp/System/Math/Ceiling/Ceiling1.cs @@ -2,50 +2,48 @@ public class Class1 { - public static void Main() - { - CeilingWithDecimal(); - Console.WriteLine(); - CeilingWithDouble(); - } + public static void Main() + { + CeilingWithDecimal(); + Console.WriteLine(); + CeilingWithDouble(); + } - private static void CeilingWithDecimal() - { - // - decimal[] values = {7.03m, 7.64m, 0.12m, -0.12m, -7.1m, -7.6m}; - Console.WriteLine(" Value Ceiling Floor\n"); - foreach (decimal value in values) - Console.WriteLine("{0,7} {1,16} {2,14}", - value, Math.Ceiling(value), Math.Floor(value)); - // The example displays the following output to the console: - // Value Ceiling Floor - // - // 7.03 8 7 - // 7.64 8 7 - // 0.12 1 0 - // -0.12 0 -1 - // -7.1 -7 -8 - // -7.6 -7 -8 - // - } + private static void CeilingWithDecimal() + { + // + decimal[] values = { 7.03m, 7.64m, 0.12m, -0.12m, -7.1m, -7.6m }; + Console.WriteLine(" Value Ceiling Floor\n"); + foreach (decimal value in values) + Console.WriteLine($"{value,7} {Math.Ceiling(value),16} {Math.Floor(value),14}"); + // The example displays the following output to the console: + // Value Ceiling Floor + // + // 7.03 8 7 + // 7.64 8 7 + // 0.12 1 0 + // -0.12 0 -1 + // -7.1 -7 -8 + // -7.6 -7 -8 + // + } - private static void CeilingWithDouble() - { - // - double[] values = {7.03, 7.64, 0.12, -0.12, -7.1, -7.6}; - Console.WriteLine(" Value Ceiling Floor\n"); - foreach (double value in values) - Console.WriteLine("{0,7} {1,16} {2,14}", - value, Math.Ceiling(value), Math.Floor(value)); - // The example displays the following output to the console: - // Value Ceiling Floor - // - // 7.03 8 7 - // 7.64 8 7 - // 0.12 1 0 - // -0.12 0 -1 - // -7.1 -7 -8 - // -7.6 -7 -8 - // - } + private static void CeilingWithDouble() + { + // + double[] values = { 7.03, 7.64, 0.12, -0.12, -7.1, -7.6 }; + Console.WriteLine(" Value Ceiling Floor\n"); + foreach (double value in values) + Console.WriteLine($"{value,7} {Math.Ceiling(value),16} {Math.Floor(value),14}"); + // The example displays the following output to the console: + // Value Ceiling Floor + // + // 7.03 8 7 + // 7.64 8 7 + // 0.12 1 0 + // -0.12 0 -1 + // -7.1 -7 -8 + // -7.6 -7 -8 + // + } } diff --git a/snippets/csharp/System/Math/Cos/sincos.cs b/snippets/csharp/System/Math/Cos/sincos.cs index 6fdf596ae5c..3253a3b016f 100644 --- a/snippets/csharp/System/Math/Cos/sincos.cs +++ b/snippets/csharp/System/Math/Cos/sincos.cs @@ -10,14 +10,14 @@ public static void Main() Console.WriteLine( "This example of trigonometric " + "Math.Sin( double ), Math.Cos( double ), and Math.SinCos( double )\n" + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Convert selected values for X to radians \n" + - "and evaluate these trigonometric identities:" ); - Console.WriteLine( " sin^2(X) + cos^2(X) == 1\n" + - " sin(2 * X) == 2 * sin(X) * cos(X)" ); - Console.WriteLine( " cos(2 * X) == cos^2(X) - sin^2(X)" ); - Console.WriteLine( " cos(2 * X) == cos^2(X) - sin^2(X)" ); + "and evaluate these trigonometric identities:"); + Console.WriteLine(" sin^2(X) + cos^2(X) == 1\n" + + " sin(2 * X) == 2 * sin(X) * cos(X)"); + Console.WriteLine(" cos(2 * X) == cos^2(X) - sin^2(X)"); + Console.WriteLine(" cos(2 * X) == cos^2(X) - sin^2(X)"); UseSineCosine(15.0); UseSineCosine(30.0); @@ -25,16 +25,16 @@ public static void Main() Console.WriteLine( "\nConvert selected values for X and Y to radians \n" + - "and evaluate these trigonometric identities:" ); - Console.WriteLine( " sin(X + Y) == sin(X) * cos(Y) + cos(X) * sin(Y)" ); - Console.WriteLine( " cos(X + Y) == cos(X) * cos(Y) - sin(X) * sin(Y)" ); + "and evaluate these trigonometric identities:"); + Console.WriteLine(" sin(X + Y) == sin(X) * cos(Y) + cos(X) * sin(Y)"); + Console.WriteLine(" cos(X + Y) == cos(X) * cos(Y) - sin(X) * sin(Y)"); UseTwoAngles(15.0, 30.0); UseTwoAngles(30.0, 45.0); Console.WriteLine( "\nWhen you have calls to sin(X) and cos(X) they \n" + - "can be replaced with a single call to sincos(x):" ); + "can be replaced with a single call to sincos(x):"); UseCombinedSineCosine(15.0); UseCombinedSineCosine(30.0); @@ -48,21 +48,15 @@ static void UseCombinedSineCosine(double degrees) (double sinAngle, double cosAngle) = Math.SinCos(angle); // Evaluate sin^2(X) + cos^2(X) == 1. - Console.WriteLine( - "\n Math.SinCos({0} deg) == ({1:E16}, {2:E16})", - degrees, sinAngle, cosAngle); - Console.WriteLine( - "(double sin, double cos) = Math.SinCos({0} deg)", - degrees ); - Console.WriteLine( - "sin^2 + cos^2 == {0:E16}", - sinAngle * sinAngle + cosAngle * cosAngle ); + Console.WriteLine($"\n Math.SinCos({degrees} deg) == ({sinAngle:E16}, {cosAngle:E16})"); + Console.WriteLine($"(double sin, double cos) = Math.SinCos({degrees} deg)"); + Console.WriteLine($"sin^2 + cos^2 == {sinAngle * sinAngle + cosAngle * cosAngle:E16}"); } // Evaluate trigonometric identities with a given angle. static void UseSineCosine(double degrees) { - double angle = Math.PI * degrees / 180.0; + double angle = Math.PI * degrees / 180.0; double sinAngle = Math.Sin(angle); double cosAngle = Math.Cos(angle); @@ -70,33 +64,29 @@ static void UseSineCosine(double degrees) Console.WriteLine( "\n Math.Sin({0} deg) == {1:E16}\n" + " Math.Cos({0} deg) == {2:E16}", - degrees, Math.Sin(angle), Math.Cos(angle) ); + degrees, Math.Sin(angle), Math.Cos(angle)); Console.WriteLine( "(Math.Sin({0} deg))^2 + (Math.Cos({0} deg))^2 == {1:E16}", - degrees, sinAngle * sinAngle + cosAngle * cosAngle ); + degrees, sinAngle * sinAngle + cosAngle * cosAngle); // Evaluate sin(2 * X) == 2 * sin(X) * cos(X). - Console.WriteLine( - " Math.Sin({0} deg) == {1:E16}", - 2.0 * degrees, Math.Sin(2.0 * angle) ); + Console.WriteLine($" Math.Sin({2.0 * degrees} deg) == {Math.Sin(2.0 * angle):E16}"); Console.WriteLine( " 2 * Math.Sin({0} deg) * Math.Cos({0} deg) == {1:E16}", - degrees, 2.0 * sinAngle * cosAngle ); + degrees, 2.0 * sinAngle * cosAngle); // Evaluate cos(2 * X) == cos^2(X) - sin^2(X). - Console.WriteLine( - " Math.Cos({0} deg) == {1:E16}", - 2.0 * degrees, Math.Cos(2.0 * angle) ); + Console.WriteLine($" Math.Cos({2.0 * degrees} deg) == {Math.Cos(2.0 * angle):E16}"); Console.WriteLine( "(Math.Cos({0} deg))^2 - (Math.Sin({0} deg))^2 == {1:E16}", - degrees, cosAngle * cosAngle - sinAngle * sinAngle ); + degrees, cosAngle * cosAngle - sinAngle * sinAngle); } // Evaluate trigonometric identities that are functions of two angles. static void UseTwoAngles(double degreesX, double degreesY) { - double angleX = Math.PI * degreesX / 180.0; - double angleY = Math.PI * degreesY / 180.0; + double angleX = Math.PI * degreesX / 180.0; + double angleY = Math.PI * degreesY / 180.0; // Evaluate sin(X + Y) == sin(X) * cos(Y) + cos(X) * sin(Y). Console.WriteLine( @@ -104,9 +94,7 @@ static void UseTwoAngles(double degreesX, double degreesY) " Math.Cos({0} deg) * Math.Sin({1} deg) == {2:E16}", degreesX, degreesY, Math.Sin(angleX) * Math.Cos(angleY) + Math.Cos(angleX) * Math.Sin(angleY)); - Console.WriteLine( - " Math.Sin({0} deg) == {1:E16}", - degreesX + degreesY, Math.Sin(angleX + angleY)); + Console.WriteLine($" Math.Sin({degreesX + degreesY} deg) == {Math.Sin(angleX + angleY):E16}"); // Evaluate cos(X + Y) == cos(X) * cos(Y) - sin(X) * sin(Y). Console.WriteLine( @@ -114,9 +102,7 @@ static void UseTwoAngles(double degreesX, double degreesY) " Math.Sin({0} deg) * Math.Sin({1} deg) == {2:E16}", degreesX, degreesY, Math.Cos(angleX) * Math.Cos(angleY) - Math.Sin(angleX) * Math.Sin(angleY)); - Console.WriteLine( - " Math.Cos({0} deg) == {1:E16}", - degreesX + degreesY, Math.Cos(angleX + angleY)); + Console.WriteLine($" Math.Cos({degreesX + degreesY} deg) == {Math.Cos(angleX + angleY):E16}"); } } diff --git a/snippets/csharp/System/Math/Cosh/sinhcosh.cs b/snippets/csharp/System/Math/Cosh/sinhcosh.cs index 8649d0dcebb..d05396059d1 100644 --- a/snippets/csharp/System/Math/Cosh/sinhcosh.cs +++ b/snippets/csharp/System/Math/Cosh/sinhcosh.cs @@ -10,14 +10,14 @@ public static void Main() Console.WriteLine( "This example of hyperbolic Math.Sinh( double ) " + "and Math.Cosh( double )\n" + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Evaluate these hyperbolic identities " + - "with selected values for X:" ); + "with selected values for X:"); Console.WriteLine( " cosh^2(X) - sinh^2(X) == 1\n" + - " sinh(2 * X) == 2 * sinh(X) * cosh(X)" ); - Console.WriteLine( " cosh(2 * X) == cosh^2(X) + sinh^2(X)" ); + " sinh(2 * X) == 2 * sinh(X) * cosh(X)"); + Console.WriteLine(" cosh(2 * X) == cosh^2(X) + sinh^2(X)"); UseSinhCosh(0.1); UseSinhCosh(1.2); @@ -25,11 +25,11 @@ public static void Main() Console.WriteLine( "\nEvaluate these hyperbolic identities " + - "with selected values for X and Y:" ); + "with selected values for X and Y:"); Console.WriteLine( - " sinh(X + Y) == sinh(X) * cosh(Y) + cosh(X) * sinh(Y)" ); + " sinh(X + Y) == sinh(X) * cosh(Y) + cosh(X) * sinh(Y)"); Console.WriteLine( - " cosh(X + Y) == cosh(X) * cosh(Y) + sinh(X) * sinh(Y)" ); + " cosh(X + Y) == cosh(X) * cosh(Y) + sinh(X) * sinh(Y)"); UseTwoArgs(0.1, 1.2); UseTwoArgs(1.2, 4.9); @@ -45,26 +45,22 @@ static void UseSinhCosh(double arg) Console.WriteLine( "\n Math.Sinh({0}) == {1:E16}\n" + " Math.Cosh({0}) == {2:E16}", - arg, Math.Sinh(arg), Math.Cosh(arg) ); + arg, Math.Sinh(arg), Math.Cosh(arg)); Console.WriteLine( "(Math.Cosh({0}))^2 - (Math.Sinh({0}))^2 == {1:E16}", - arg, coshArg * coshArg - sinhArg * sinhArg ); + arg, coshArg * coshArg - sinhArg * sinhArg); // Evaluate sinh(2 * X) == 2 * sinh(X) * cosh(X). - Console.WriteLine( - " Math.Sinh({0}) == {1:E16}", - 2.0 * arg, Math.Sinh(2.0 * arg) ); + Console.WriteLine($" Math.Sinh({2.0 * arg}) == {Math.Sinh(2.0 * arg):E16}"); Console.WriteLine( " 2 * Math.Sinh({0}) * Math.Cosh({0}) == {1:E16}", - arg, 2.0 * sinhArg * coshArg ); + arg, 2.0 * sinhArg * coshArg); // Evaluate cosh(2 * X) == cosh^2(X) + sinh^2(X). - Console.WriteLine( - " Math.Cosh({0}) == {1:E16}", - 2.0 * arg, Math.Cosh(2.0 * arg) ); + Console.WriteLine($" Math.Cosh({2.0 * arg}) == {Math.Cosh(2.0 * arg):E16}"); Console.WriteLine( "(Math.Cosh({0}))^2 + (Math.Sinh({0}))^2 == {1:E16}", - arg, coshArg * coshArg + sinhArg * sinhArg ); + arg, coshArg * coshArg + sinhArg * sinhArg); } // Evaluate hyperbolic identities that are functions of two arguments. @@ -76,9 +72,7 @@ static void UseTwoArgs(double argX, double argY) " Math.Cosh({0}) * Math.Sinh({1}) == {2:E16}", argX, argY, Math.Sinh(argX) * Math.Cosh(argY) + Math.Cosh(argX) * Math.Sinh(argY)); - Console.WriteLine( - " Math.Sinh({0}) == {1:E16}", - argX + argY, Math.Sinh(argX + argY)); + Console.WriteLine($" Math.Sinh({argX + argY}) == {Math.Sinh(argX + argY):E16}"); // Evaluate cosh(X + Y) == cosh(X) * cosh(Y) + sinh(X) * sinh(Y). Console.WriteLine( @@ -86,9 +80,7 @@ static void UseTwoArgs(double argX, double argY) " Math.Sinh({0}) * Math.Sinh({1}) == {2:E16}", argX, argY, Math.Cosh(argX) * Math.Cosh(argY) + Math.Sinh(argX) * Math.Sinh(argY)); - Console.WriteLine( - " Math.Cosh({0}) == {1:E16}", - argX + argY, Math.Cosh(argX + argY)); + Console.WriteLine($" Math.Cosh({argX + argY}) == {Math.Cosh(argX + argY):E16}"); } } diff --git a/snippets/csharp/System/Math/DivRem/Program.cs b/snippets/csharp/System/Math/DivRem/Program.cs new file mode 100644 index 00000000000..ee5f6f7ff64 --- /dev/null +++ b/snippets/csharp/System/Math/DivRem/Program.cs @@ -0,0 +1,2 @@ +MathDivRemExample1.Run(); +MathDivRemExample2.Run(); diff --git a/snippets/csharp/System/Math/DivRem/Project.csproj b/snippets/csharp/System/Math/DivRem/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/Math/DivRem/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/Math/DivRem/divrem1.cs b/snippets/csharp/System/Math/DivRem/divrem1.cs index 43a2253f196..7a19186de57 100644 --- a/snippets/csharp/System/Math/DivRem/divrem1.cs +++ b/snippets/csharp/System/Math/DivRem/divrem1.cs @@ -1,27 +1,26 @@ // using System; -public class Example +public class MathDivRemExample1 { - public static void Main() - { - // Define several positive and negative dividends. - int[] dividends = { Int32.MaxValue, 13952, 0, -14032, - Int32.MinValue }; - // Define one positive and one negative divisor. - int[] divisors = { 2000, -2000 }; + public static void Run() + { + // Define several positive and negative dividends. + int[] dividends = { int.MaxValue, 13952, 0, -14032, + int.MinValue }; + // Define one positive and one negative divisor. + int[] divisors = { 2000, -2000 }; - foreach (int divisor in divisors) - { - foreach (int dividend in dividends) - { - int remainder; - int quotient = Math.DivRem(dividend, divisor, out remainder); - Console.WriteLine(@"{0:N0} \ {1:N0} = {2:N0}, remainder {3:N0}", - dividend, divisor, quotient, remainder); - } - } - } + foreach (int divisor in divisors) + { + foreach (int dividend in dividends) + { + int remainder; + int quotient = Math.DivRem(dividend, divisor, out remainder); + Console.WriteLine($"{dividend:N0} \\ {divisor:N0} = {quotient:N0}, remainder {remainder:N0}"); + } + } + } } // The example displays the following output: // 2,147,483,647 \ 2,000 = 1,073,741, remainder 1,647 diff --git a/snippets/csharp/System/Math/DivRem/divrem2.cs b/snippets/csharp/System/Math/DivRem/divrem2.cs index 9fddf00056d..80c7dde90c2 100644 --- a/snippets/csharp/System/Math/DivRem/divrem2.cs +++ b/snippets/csharp/System/Math/DivRem/divrem2.cs @@ -1,27 +1,26 @@ // using System; -public class Example +public class MathDivRemExample2 { - public static void Main() - { - // Define several positive and negative dividends. - long[] dividends = { Int64.MaxValue, 13952, 0, -14032, - Int64.MinValue }; - // Define one positive and one negative divisor. - long[] divisors = { 2000, -2000 }; + public static void Run() + { + // Define several positive and negative dividends. + long[] dividends = { long.MaxValue, 13952, 0, -14032, + long.MinValue }; + // Define one positive and one negative divisor. + long[] divisors = { 2000, -2000 }; - foreach (long divisor in divisors) - { - foreach (long dividend in dividends) - { - long remainder; - long quotient = Math.DivRem(dividend, divisor, out remainder); - Console.WriteLine(@"{0:N0} \ {1:N0} = {2:N0}, remainder {3:N0}", - dividend, divisor, quotient, remainder); - } - } - } + foreach (long divisor in divisors) + { + foreach (long dividend in dividends) + { + long remainder; + long quotient = Math.DivRem(dividend, divisor, out remainder); + Console.WriteLine($"{dividend:N0} \\ {divisor:N0} = {quotient:N0}, remainder {remainder:N0}"); + } + } + } } // The example displays the following output: // 9,223,372,036,854,775,807 \ 2,000 = 4,611,686,018,427,387, remainder 1,807 diff --git a/snippets/csharp/System/Math/E/efield.cs b/snippets/csharp/System/Math/E/efield.cs index 73050c9fe3d..82eb0c73319 100644 --- a/snippets/csharp/System/Math/E/efield.cs +++ b/snippets/csharp/System/Math/E/efield.cs @@ -9,13 +9,13 @@ public static void Main() Console.WriteLine( "This example of Math.E == {0:E16}\n" + "generates the following output.\n", - Math.E ); + Math.E); Console.WriteLine( - "Define the power series PS(n) = Sum(k->0,n)[1/k!]" ); - Console.WriteLine( " (limit n->infinity)PS(n) == e" ); + "Define the power series PS(n) = Sum(k->0,n)[1/k!]"); + Console.WriteLine(" (limit n->infinity)PS(n) == e"); Console.WriteLine( "Display PS(n) and Math.E - PS(n), " + - "and stop when delta < 1.0E-15\n" ); + "and stop when delta < 1.0E-15\n"); CalcPowerSeries(); } @@ -28,17 +28,17 @@ static void CalcPowerSeries() // Stop iterating when the series converges, // and prevent a runaway process. - for( int n = 0; n < 999 && Math.Abs( Math.E - PS ) > 1.0E-15; n++ ) + for (int n = 0; n < 999 && Math.Abs(Math.E - PS) > 1.0E-15; n++) { // Calculate a running factorial. - if( n > 0 ) + if (n > 0) factorial *= (double)n; // Calculate and display the power series. PS += 1.0 / factorial; Console.WriteLine( "PS({0:D2}) == {1:E16}, Math.E - PS({0:D2}) == {2:E16}", - n, PS, Math.E - PS ); + n, PS, Math.E - PS); } } } diff --git a/snippets/csharp/System/Math/Exp/exp.cs b/snippets/csharp/System/Math/Exp/exp.cs index d6d9d593d39..fae76c02a1c 100644 --- a/snippets/csharp/System/Math/Exp/exp.cs +++ b/snippets/csharp/System/Math/Exp/exp.cs @@ -8,10 +8,10 @@ public static void Main() { Console.WriteLine( "This example of Math.Exp( double ) " + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Evaluate [e ^ ln(X) == ln(e ^ X) == X] " + - "with selected values for X:" ); + "with selected values for X:"); UseLnExp(0.1); UseLnExp(1.2); @@ -20,10 +20,10 @@ public static void Main() Console.WriteLine( "\nEvaluate these identities with " + - "selected values for X and Y:" ); - Console.WriteLine( " (e ^ X) * (e ^ Y) == e ^ (X + Y)" ); - Console.WriteLine( " (e ^ X) ^ Y == e ^ (X * Y)" ); - Console.WriteLine( " X ^ Y == e ^ (Y * ln(X))" ); + "selected values for X and Y:"); + Console.WriteLine(" (e ^ X) * (e ^ Y) == e ^ (X + Y)"); + Console.WriteLine(" (e ^ X) ^ Y == e ^ (X * Y)"); + Console.WriteLine(" X ^ Y == e ^ (Y * ln(X))"); UseTwoArgs(0.1, 1.2); UseTwoArgs(1.2, 4.9); @@ -37,7 +37,7 @@ static void UseLnExp(double arg) Console.WriteLine( "\n Math.Exp(Math.Log({0})) == {1:E16}\n" + " Math.Log(Math.Exp({0})) == {2:E16}", - arg, Math.Exp(Math.Log(arg)), Math.Log(Math.Exp(arg)) ); + arg, Math.Exp(Math.Log(arg)), Math.Log(Math.Exp(arg))); } // Evaluate exponential identities that are functions of two arguments. @@ -48,21 +48,21 @@ static void UseTwoArgs(double argX, double argY) "\nMath.Exp({0}) * Math.Exp({1}) == {2:E16}" + "\n Math.Exp({0} + {1}) == {3:E16}", argX, argY, Math.Exp(argX) * Math.Exp(argY), - Math.Exp(argX + argY) ); + Math.Exp(argX + argY)); // Evaluate (e ^ X) ^ Y == e ^ (X * Y). Console.WriteLine( " Math.Pow(Math.Exp({0}), {1}) == {2:E16}" + "\n Math.Exp({0} * {1}) == {3:E16}", argX, argY, Math.Pow(Math.Exp(argX), argY), - Math.Exp(argX * argY) ); + Math.Exp(argX * argY)); // Evaluate X ^ Y == e ^ (Y * ln(X)). Console.WriteLine( " Math.Pow({0}, {1}) == {2:E16}" + "\nMath.Exp({1} * Math.Log({0})) == {3:E16}", argX, argY, Math.Pow(argX, argY), - Math.Exp(argY * Math.Log(argX)) ); + Math.Exp(argY * Math.Log(argX))); } } diff --git a/snippets/csharp/System/Math/IEEERemainder/ieeeremainder1.cs b/snippets/csharp/System/Math/IEEERemainder/ieeeremainder1.cs index 9374237b135..8752e9cd3b0 100644 --- a/snippets/csharp/System/Math/IEEERemainder/ieeeremainder1.cs +++ b/snippets/csharp/System/Math/IEEERemainder/ieeeremainder1.cs @@ -3,29 +3,29 @@ public class Example { - public static void Main() - { - Console.WriteLine($"{"IEEERemainder",35} {"Remainder operator",20}"); - ShowRemainders(3, 2); - ShowRemainders(4, 2); - ShowRemainders(10, 3); - ShowRemainders(11, 3); - ShowRemainders(27, 4); - ShowRemainders(28, 5); - ShowRemainders(17.8, 4); - ShowRemainders(17.8, 4.1); - ShowRemainders(-16.3, 4.1); - ShowRemainders(17.8, -4.1); - ShowRemainders(-17.8, -4.1); - } + public static void Main() + { + Console.WriteLine($"{"IEEERemainder",35} {"Remainder operator",20}"); + ShowRemainders(3, 2); + ShowRemainders(4, 2); + ShowRemainders(10, 3); + ShowRemainders(11, 3); + ShowRemainders(27, 4); + ShowRemainders(28, 5); + ShowRemainders(17.8, 4); + ShowRemainders(17.8, 4.1); + ShowRemainders(-16.3, 4.1); + ShowRemainders(17.8, -4.1); + ShowRemainders(-17.8, -4.1); + } - private static void ShowRemainders(double number1, double number2) - { - var formula = $"{number1} / {number2} = "; - var ieeeRemainder = Math.IEEERemainder(number1, number2); - var remainder = number1 % number2; - Console.WriteLine($"{formula,-16} {ieeeRemainder,18} {remainder,20}"); - } + private static void ShowRemainders(double number1, double number2) + { + string formula = $"{number1} / {number2} = "; + double ieeeRemainder = Math.IEEERemainder(number1, number2); + double remainder = number1 % number2; + Console.WriteLine($"{formula,-16} {ieeeRemainder,18} {remainder,20}"); + } } // The example displays the following output: // diff --git a/snippets/csharp/System/Math/Log10/log10.cs b/snippets/csharp/System/Math/Log10/log10.cs index dbad2eab0c4..e9729e5f344 100644 --- a/snippets/csharp/System/Math/Log10/log10.cs +++ b/snippets/csharp/System/Math/Log10/log10.cs @@ -3,15 +3,14 @@ public class Example { - public static void Main() - { - double[] numbers = {-1, 0, .105, .5, .798, 1, 4, 6.9, 10, 50, - 100, 500, 1000, Double.MaxValue}; + public static void Main() + { + double[] numbers = {-1, 0, .105, .5, .798, 1, 4, 6.9, 10, 50, + 100, 500, 1000, double.MaxValue}; - foreach (double number in numbers) - Console.WriteLine("The base 10 log of {0} is {1}.", - number, Math.Log10(number)); - } + foreach (double number in numbers) + Console.WriteLine($"The base 10 log of {number} is {Math.Log10(number)}."); + } } // The example dislays the following output: // The base 10 log of -1 is NaN. diff --git a/snippets/csharp/System/Math/LogMethod/log1.cs b/snippets/csharp/System/Math/LogMethod/log1.cs index 410533c711a..1900a3f40f3 100644 --- a/snippets/csharp/System/Math/LogMethod/log1.cs +++ b/snippets/csharp/System/Math/LogMethod/log1.cs @@ -2,26 +2,24 @@ using System; public class Example { - public static void Main() - { - Console.WriteLine(" Evaluate this identity with selected values for X:"); - Console.WriteLine(" ln(x) = 1 / log[X](B)"); - Console.WriteLine(); + public static void Main() + { + Console.WriteLine(" Evaluate this identity with selected values for X:"); + Console.WriteLine(" ln(x) = 1 / log[X](B)"); + Console.WriteLine(); - double[] XArgs = { 1.2, 4.9, 9.9, 0.1 }; + double[] XArgs = { 1.2, 4.9, 9.9, 0.1 }; - foreach (double argX in XArgs) - { - // Find natural log of argX. - Console.WriteLine(" Math.Log({0}) = {1:E16}", - argX, Math.Log(argX)); + foreach (double argX in XArgs) + { + // Find natural log of argX. + Console.WriteLine($" Math.Log({argX}) = {Math.Log(argX):E16}"); - // Evaluate 1 / log[X](e). - Console.WriteLine(" 1.0 / Math.Log(e, {0}) = {1:E16}", - argX, 1.0 / Math.Log(Math.E, argX)); - Console.WriteLine(); - } - } + // Evaluate 1 / log[X](e). + Console.WriteLine($" 1.0 / Math.Log(e, {argX}) = {1.0 / Math.Log(Math.E, argX):E16}"); + Console.WriteLine(); + } + } } // This example displays the following output: // Evaluate this identity with selected values for X: diff --git a/snippets/csharp/System/Math/LogMethod/loggen.cs b/snippets/csharp/System/Math/LogMethod/loggen.cs index bf1a7f94139..97f703e8f66 100644 --- a/snippets/csharp/System/Math/LogMethod/loggen.cs +++ b/snippets/csharp/System/Math/LogMethod/loggen.cs @@ -9,13 +9,13 @@ public static void Main() Console.WriteLine( "This example of Math.Log( double ) and " + "Math.Log( double, double )\n" + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Evaluate these identities with " + - "selected values for X and B (base):" ); - Console.WriteLine( " log(B)[X] == 1 / log(X)[B]" ); - Console.WriteLine( " log(B)[X] == ln[X] / ln[B]" ); - Console.WriteLine( " log(B)[X] == log(B)[e] * ln[X]" ); + "selected values for X and B (base):"); + Console.WriteLine(" log(B)[X] == 1 / log(X)[B]"); + Console.WriteLine(" log(B)[X] == ln[X] / ln[B]"); + Console.WriteLine(" log(B)[X] == log(B)[e] * ln[X]"); UseBaseAndArg(0.1, 1.2); UseBaseAndArg(1.2, 4.9); @@ -31,17 +31,15 @@ static void UseBaseAndArg(double argB, double argX) "\n Math.Log({1}, {0}) == {2:E16}" + "\n 1.0 / Math.Log({0}, {1}) == {3:E16}", argB, argX, Math.Log(argX, argB), - 1.0 / Math.Log(argB, argX) ); + 1.0 / Math.Log(argB, argX)); // Evaluate log(B)[X] == ln[X] / ln[B]. Console.WriteLine( " Math.Log({1}) / Math.Log({0}) == {2:E16}", - argB, argX, Math.Log(argX) / Math.Log(argB) ); + argB, argX, Math.Log(argX) / Math.Log(argB)); // Evaluate log(B)[X] == log(B)[e] * ln[X]. - Console.WriteLine( - "Math.Log(Math.E, {0}) * Math.Log({1}) == {2:E16}", - argB, argX, Math.Log(Math.E, argB) * Math.Log(argX) ); + Console.WriteLine($"Math.Log(Math.E, {argB}) * Math.Log({argX}) == {Math.Log(Math.E, argB) * Math.Log(argX):E16}"); } } diff --git a/snippets/csharp/System/Math/Max/max.cs b/snippets/csharp/System/Math/Max/max.cs index f499bab3433..6512795cf44 100644 --- a/snippets/csharp/System/Math/Max/max.cs +++ b/snippets/csharp/System/Math/Max/max.cs @@ -8,19 +8,19 @@ public static void Main() // string str = "{0}: The greater of {1,3} and {2,3} is {3}."; - byte xByte1 = 1, xByte2 = 51; - short xShort1 = -2, xShort2 = 52; - int xInt1 = -3, xInt2 = 53; - long xLong1 = -4, xLong2 = 54; - float xSingle1 = 5.0f, xSingle2 = 55.0f; - double xDouble1 = 6.0, xDouble2 = 56.0; - Decimal xDecimal1 = 7m, xDecimal2 = 57m; + byte xByte1 = 1, xByte2 = 51; + short xShort1 = -2, xShort2 = 52; + int xInt1 = -3, xInt2 = 53; + long xLong1 = -4, xLong2 = 54; + float xSingle1 = 5.0f, xSingle2 = 55.0f; + double xDouble1 = 6.0, xDouble2 = 56.0; + decimal xDecimal1 = 7m, xDecimal2 = 57m; // The following types are not CLS-compliant. - sbyte xSbyte1 = 101, xSbyte2 = 111; - ushort xUshort1 = 102, xUshort2 = 112; - uint xUint1 = 103, xUint2 = 113; - ulong xUlong1 = 104, xUlong2 = 114; + sbyte xSbyte1 = 101, xSbyte2 = 111; + ushort xUshort1 = 102, xUshort2 = 112; + uint xUint1 = 103, xUint2 = 113; + ulong xUlong1 = 104, xUlong2 = 114; Console.WriteLine("Display the greater of two values:\n"); Console.WriteLine(str, "Byte ", xByte1, xByte2, Math.Max(xByte1, xByte2)); diff --git a/snippets/csharp/System/Math/Min/min.cs b/snippets/csharp/System/Math/Min/min.cs index 9c790bb9a2c..223041e316a 100644 --- a/snippets/csharp/System/Math/Min/min.cs +++ b/snippets/csharp/System/Math/Min/min.cs @@ -8,19 +8,19 @@ public static void Main() // string str = "{0}: The lesser of {1,3} and {2,3} is {3}."; - byte xByte1 = 1, xByte2 = 51; - short xShort1 = -2, xShort2 = 52; - int xInt1 = -3, xInt2 = 53; - long xLong1 = -4, xLong2 = 54; - float xSingle1 = 5.0f, xSingle2 = 55.0f; - double xDouble1 = 6.0, xDouble2 = 56.0; - Decimal xDecimal1 = 7m, xDecimal2 = 57m; + byte xByte1 = 1, xByte2 = 51; + short xShort1 = -2, xShort2 = 52; + int xInt1 = -3, xInt2 = 53; + long xLong1 = -4, xLong2 = 54; + float xSingle1 = 5.0f, xSingle2 = 55.0f; + double xDouble1 = 6.0, xDouble2 = 56.0; + decimal xDecimal1 = 7m, xDecimal2 = 57m; // The following types are not CLS-compliant. - sbyte xSbyte1 = 101, xSbyte2 = 111; - ushort xUshort1 = 102, xUshort2 = 112; - uint xUint1 = 103, xUint2 = 113; - ulong xUlong1 = 104, xUlong2 = 114; + sbyte xSbyte1 = 101, xSbyte2 = 111; + ushort xUshort1 = 102, xUshort2 = 112; + uint xUint1 = 103, xUint2 = 113; + ulong xUlong1 = 104, xUlong2 = 114; Console.WriteLine("Display the lesser of two values:\n"); Console.WriteLine(str, "Byte ", xByte1, xByte2, Math.Min(xByte1, xByte2)); diff --git a/snippets/csharp/System/Math/Overview/mathsample.cs b/snippets/csharp/System/Math/Overview/mathsample.cs index b8fdb53179e..f9f3a108d7b 100644 --- a/snippets/csharp/System/Math/Overview/mathsample.cs +++ b/snippets/csharp/System/Math/Overview/mathsample.cs @@ -6,77 +6,71 @@ namespace MathClassCS { - class MathTrapezoidSample - { - private double m_longBase; - private double m_shortBase; - private double m_leftLeg; - private double m_rightLeg; + class MathTrapezoidSample + { + private double m_longBase; + private double m_shortBase; + private double m_leftLeg; + private double m_rightLeg; - public MathTrapezoidSample(double longbase, double shortbase, double leftLeg, double rightLeg) - { - m_longBase = Math.Abs(longbase); - m_shortBase = Math.Abs(shortbase); - m_leftLeg = Math.Abs(leftLeg); - m_rightLeg = Math.Abs(rightLeg); - } + public MathTrapezoidSample(double longbase, double shortbase, double leftLeg, double rightLeg) + { + m_longBase = Math.Abs(longbase); + m_shortBase = Math.Abs(shortbase); + m_leftLeg = Math.Abs(leftLeg); + m_rightLeg = Math.Abs(rightLeg); + } - private double GetRightSmallBase() - { - return (Math.Pow(m_rightLeg,2.0) - Math.Pow(m_leftLeg,2.0) + Math.Pow(m_longBase,2.0) + Math.Pow(m_shortBase,2.0) - 2* m_shortBase * m_longBase)/ (2*(m_longBase - m_shortBase)); - } + private double GetRightSmallBase() => (Math.Pow(m_rightLeg, 2.0) - Math.Pow(m_leftLeg, 2.0) + Math.Pow(m_longBase, 2.0) + Math.Pow(m_shortBase, 2.0) - 2 * m_shortBase * m_longBase) / (2 * (m_longBase - m_shortBase)); - public double GetHeight() - { - double x = GetRightSmallBase(); - return Math.Sqrt(Math.Pow(m_rightLeg,2.0) - Math.Pow(x,2.0)); - } + public double GetHeight() + { + double x = GetRightSmallBase(); + return Math.Sqrt(Math.Pow(m_rightLeg, 2.0) - Math.Pow(x, 2.0)); + } - public double GetSquare() - { - return GetHeight() * m_longBase / 2.0; - } + public double GetSquare() => GetHeight() * m_longBase / 2.0; - public double GetLeftBaseRadianAngle() - { - double sinX = GetHeight()/m_leftLeg; - return Math.Round(Math.Asin(sinX),2); - } + public double GetLeftBaseRadianAngle() + { + double sinX = GetHeight() / m_leftLeg; + return Math.Round(Math.Asin(sinX), 2); + } - public double GetRightBaseRadianAngle() - { - double x = GetRightSmallBase(); - double cosX = (Math.Pow(m_rightLeg,2.0) + Math.Pow(x,2.0) - Math.Pow(GetHeight(),2.0))/(2*x*m_rightLeg); - return Math.Round(Math.Acos(cosX),2); - } + public double GetRightBaseRadianAngle() + { + double x = GetRightSmallBase(); + double cosX = (Math.Pow(m_rightLeg, 2.0) + Math.Pow(x, 2.0) - Math.Pow(GetHeight(), 2.0)) / (2 * x * m_rightLeg); + return Math.Round(Math.Acos(cosX), 2); + } - public double GetLeftBaseDegreeAngle() - { - double x = GetLeftBaseRadianAngle() * 180/ Math.PI; - return Math.Round(x,2); - } + public double GetLeftBaseDegreeAngle() + { + double x = GetLeftBaseRadianAngle() * 180 / Math.PI; + return Math.Round(x, 2); + } - public double GetRightBaseDegreeAngle() - { - double x = GetRightBaseRadianAngle() * 180/ Math.PI; - return Math.Round(x,2); - } + public double GetRightBaseDegreeAngle() + { + double x = GetRightBaseRadianAngle() * 180 / Math.PI; + return Math.Round(x, 2); + } - static void Main(string[] args) - { - MathTrapezoidSample trpz = new MathTrapezoidSample(20.0, 10.0, 8.0, 6.0); - Console.WriteLine("The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0"); - double h = trpz.GetHeight(); - Console.WriteLine("Trapezoid height is: " + h.ToString()); - double dxR = trpz.GetLeftBaseRadianAngle(); - Console.WriteLine("Trapezoid left base angle is: " + dxR.ToString() + " Radians"); - double dyR = trpz.GetRightBaseRadianAngle(); - Console.WriteLine("Trapezoid right base angle is: " + dyR.ToString() + " Radians"); - double dxD = trpz.GetLeftBaseDegreeAngle(); - Console.WriteLine("Trapezoid left base angle is: " + dxD.ToString() + " Degrees"); - double dyD = trpz.GetRightBaseDegreeAngle(); - Console.WriteLine("Trapezoid right base angle is: " + dyD.ToString() + " Degrees"); - } - } + static void Main(string[] args) + { + MathTrapezoidSample trpz = new(20.0, 10.0, 8.0, 6.0); + Console.WriteLine("The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0"); + double h = trpz.GetHeight(); + Console.WriteLine("Trapezoid height is: " + h.ToString()); + double dxR = trpz.GetLeftBaseRadianAngle(); + Console.WriteLine("Trapezoid left base angle is: " + dxR.ToString() + " Radians"); + double dyR = trpz.GetRightBaseRadianAngle(); + Console.WriteLine("Trapezoid right base angle is: " + dyR.ToString() + " Radians"); + double dxD = trpz.GetLeftBaseDegreeAngle(); + Console.WriteLine("Trapezoid left base angle is: " + dxD.ToString() + " Degrees"); + double dyD = trpz.GetRightBaseDegreeAngle(); + Console.WriteLine("Trapezoid right base angle is: " + dyD.ToString() + " Degrees"); + } + } } // diff --git a/snippets/csharp/System/Math/Pow/pow1.cs b/snippets/csharp/System/Math/Pow/pow1.cs index 06b94f68ca9..b6adceaac81 100644 --- a/snippets/csharp/System/Math/Pow/pow1.cs +++ b/snippets/csharp/System/Math/Pow/pow1.cs @@ -2,47 +2,47 @@ public class Example { - public static void Main() - { - // - int value = 2; - for (int power = 0; power <= 32; power++) - Console.WriteLine($"{value}^{power} = {(long)Math.Pow(value, power):N0} (0x{(long)Math.Pow(value, power):X})"); + public static void Main() + { + // + int value = 2; + for (int power = 0; power <= 32; power++) + Console.WriteLine($"{value}^{power} = {(long)Math.Pow(value, power):N0} (0x{(long)Math.Pow(value, power):X})"); - // The example displays the following output: - // 2^0 = 1 (0x1) - // 2^1 = 2 (0x2) - // 2^2 = 4 (0x4) - // 2^3 = 8 (0x8) - // 2^4 = 16 (0x10) - // 2^5 = 32 (0x20) - // 2^6 = 64 (0x40) - // 2^7 = 128 (0x80) - // 2^8 = 256 (0x100) - // 2^9 = 512 (0x200) - // 2^10 = 1,024 (0x400) - // 2^11 = 2,048 (0x800) - // 2^12 = 4,096 (0x1000) - // 2^13 = 8,192 (0x2000) - // 2^14 = 16,384 (0x4000) - // 2^15 = 32,768 (0x8000) - // 2^16 = 65,536 (0x10000) - // 2^17 = 131,072 (0x20000) - // 2^18 = 262,144 (0x40000) - // 2^19 = 524,288 (0x80000) - // 2^20 = 1,048,576 (0x100000) - // 2^21 = 2,097,152 (0x200000) - // 2^22 = 4,194,304 (0x400000) - // 2^23 = 8,388,608 (0x800000) - // 2^24 = 16,777,216 (0x1000000) - // 2^25 = 33,554,432 (0x2000000) - // 2^26 = 67,108,864 (0x4000000) - // 2^27 = 134,217,728 (0x8000000) - // 2^28 = 268,435,456 (0x10000000) - // 2^29 = 536,870,912 (0x20000000) - // 2^30 = 1,073,741,824 (0x40000000) - // 2^31 = 2,147,483,648 (0x80000000) - // 2^32 = 4,294,967,296 (0x100000000) - // - } + // The example displays the following output: + // 2^0 = 1 (0x1) + // 2^1 = 2 (0x2) + // 2^2 = 4 (0x4) + // 2^3 = 8 (0x8) + // 2^4 = 16 (0x10) + // 2^5 = 32 (0x20) + // 2^6 = 64 (0x40) + // 2^7 = 128 (0x80) + // 2^8 = 256 (0x100) + // 2^9 = 512 (0x200) + // 2^10 = 1,024 (0x400) + // 2^11 = 2,048 (0x800) + // 2^12 = 4,096 (0x1000) + // 2^13 = 8,192 (0x2000) + // 2^14 = 16,384 (0x4000) + // 2^15 = 32,768 (0x8000) + // 2^16 = 65,536 (0x10000) + // 2^17 = 131,072 (0x20000) + // 2^18 = 262,144 (0x40000) + // 2^19 = 524,288 (0x80000) + // 2^20 = 1,048,576 (0x100000) + // 2^21 = 2,097,152 (0x200000) + // 2^22 = 4,194,304 (0x400000) + // 2^23 = 8,388,608 (0x800000) + // 2^24 = 16,777,216 (0x1000000) + // 2^25 = 33,554,432 (0x2000000) + // 2^26 = 67,108,864 (0x4000000) + // 2^27 = 134,217,728 (0x8000000) + // 2^28 = 268,435,456 (0x10000000) + // 2^29 = 536,870,912 (0x20000000) + // 2^30 = 1,073,741,824 (0x40000000) + // 2^31 = 2,147,483,648 (0x80000000) + // 2^32 = 4,294,967,296 (0x100000000) + // + } } diff --git a/snippets/csharp/System/Math/Round/Program.cs b/snippets/csharp/System/Math/Round/Program.cs new file mode 100644 index 00000000000..bb05111e8d3 --- /dev/null +++ b/snippets/csharp/System/Math/Round/Program.cs @@ -0,0 +1,7 @@ +MathRoundExample1.Run(); +MathRoundExample2.Run(); +MathRoundExample3.Run(); +MathRoundExample4.Run(); +MathRoundExample5.Run(); +MathRoundExample6.Run(); +Sample.Run(); diff --git a/snippets/csharp/System/Math/Round/Project.csproj b/snippets/csharp/System/Math/Round/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/Math/Round/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/Math/Round/round2.cs b/snippets/csharp/System/Math/Round/round2.cs index 85f36ef2f3b..b456d432f7b 100644 --- a/snippets/csharp/System/Math/Round/round2.cs +++ b/snippets/csharp/System/Math/Round/round2.cs @@ -1,25 +1,25 @@ // using System; -public class Example +public class MathRoundExample1 { - public static void Main() - { - double value = 11.1; - for (int ctr = 0; ctr <= 5; ctr++) - value = RoundValueAndAdd(value); + public static void Run() + { + double value = 11.1; + for (int ctr = 0; ctr <= 5; ctr++) + value = RoundValueAndAdd(value); - Console.WriteLine(); + Console.WriteLine(); - value = 11.5; - RoundValueAndAdd(value); - } + value = 11.5; + RoundValueAndAdd(value); + } - private static double RoundValueAndAdd(double value) - { - Console.WriteLine("{0} --> {1}", value, Math.Round(value)); - return value + .1; - } + private static double RoundValueAndAdd(double value) + { + Console.WriteLine($"{value} --> {Math.Round(value)}"); + return value + .1; + } } // The example displays the following output: // 11.1 --> 11 diff --git a/snippets/csharp/System/Math/Round/round3.cs b/snippets/csharp/System/Math/Round/round3.cs index 448e7829e61..50545a0fbbe 100644 --- a/snippets/csharp/System/Math/Round/round3.cs +++ b/snippets/csharp/System/Math/Round/round3.cs @@ -1,14 +1,14 @@ // using System; -public class Example +public class MathRoundExample2 { - public static void Main() - { - double[] values = { 2.125, 2.135, 2.145, 3.125, 3.135, 3.145 }; - foreach (double value in values) - Console.WriteLine("{0} --> {1}", value, Math.Round(value, 2)); - } + public static void Run() + { + double[] values = { 2.125, 2.135, 2.145, 3.125, 3.135, 3.145 }; + foreach (double value in values) + Console.WriteLine($"{value} --> {Math.Round(value, 2)}"); + } } // The example displays the following output: // 2.125 --> 2.12 diff --git a/snippets/csharp/System/Math/Round/round4.cs b/snippets/csharp/System/Math/Round/round4.cs index 4644d380347..7c4443f8b86 100644 --- a/snippets/csharp/System/Math/Round/round4.cs +++ b/snippets/csharp/System/Math/Round/round4.cs @@ -1,22 +1,21 @@ using System; -public class Example +public class MathRoundExample3 { - public static void Main() - { - // - double[] values = { 2.125, 2.135, 2.145, 3.125, 3.135, 3.145 }; - foreach (double value in values) - Console.WriteLine("{0} --> {1}", value, - Math.Round(value, 2, MidpointRounding.AwayFromZero)); + public static void Run() + { + // + double[] values = { 2.125, 2.135, 2.145, 3.125, 3.135, 3.145 }; + foreach (double value in values) + Console.WriteLine($"{value} --> {Math.Round(value, 2, MidpointRounding.AwayFromZero)}"); - // The example displays the following output: - // 2.125 --> 2.13 - // 2.135 --> 2.13 - // 2.145 --> 2.15 - // 3.125 --> 3.13 - // 3.135 --> 3.14 - // 3.145 --> 3.15 - // - } + // The example displays the following output: + // 2.125 --> 2.13 + // 2.135 --> 2.13 + // 2.145 --> 2.15 + // 3.125 --> 3.13 + // 3.135 --> 3.14 + // 3.145 --> 3.15 + // + } } diff --git a/snippets/csharp/System/Math/Round/round5.cs b/snippets/csharp/System/Math/Round/round5.cs index c75ab9b2c20..bbccada8586 100644 --- a/snippets/csharp/System/Math/Round/round5.cs +++ b/snippets/csharp/System/Math/Round/round5.cs @@ -1,26 +1,26 @@ // using System; -public class Example +public class MathRoundExample4 { - public static void Main() - { - double value = 11.1; - for (int ctr = 0; ctr <= 5; ctr++) - value = RoundValueAndAdd(value); + public static void Run() + { + double value = 11.1; + for (int ctr = 0; ctr <= 5; ctr++) + value = RoundValueAndAdd(value); - Console.WriteLine(); + Console.WriteLine(); - value = 11.5; - RoundValueAndAdd(value); - } + value = 11.5; + RoundValueAndAdd(value); + } - private static double RoundValueAndAdd(double value) - { - Console.WriteLine("{0} --> {1}", value, Math.Round(value, - MidpointRounding.AwayFromZero)); - return value + .1; - } + private static double RoundValueAndAdd(double value) + { + Console.WriteLine($"{value} --> {Math.Round(value, + MidpointRounding.AwayFromZero)}"); + return value + .1; + } } // The example displays the following output: // 11.1 --> 11 diff --git a/snippets/csharp/System/Math/Round/rounddecimal1.cs b/snippets/csharp/System/Math/Round/rounddecimal1.cs index bc9ad15c373..7f4059f166a 100644 --- a/snippets/csharp/System/Math/Round/rounddecimal1.cs +++ b/snippets/csharp/System/Math/Round/rounddecimal1.cs @@ -1,20 +1,20 @@ using System; -class Example +class MathRoundExample5 { - static void Main() - { - // - for (decimal value = 4.2m; value <= 4.8m; value+=.1m ) - Console.WriteLine("{0} --> {1}", value, Math.Round(value)); - // The example displays the following output: - // 4.2 --> 4 - // 4.3 --> 4 - // 4.4 --> 4 - // 4.5 --> 4 - // 4.6 --> 5 - // 4.7 --> 5 - // 4.8 --> 5 - // - } + public static void Run() + { + // + for (decimal value = 4.2m; value <= 4.8m; value += .1m) + Console.WriteLine($"{value} --> {Math.Round(value)}"); + // The example displays the following output: + // 4.2 --> 4 + // 4.3 --> 4 + // 4.4 --> 4 + // 4.5 --> 4 + // 4.6 --> 5 + // 4.7 --> 5 + // 4.8 --> 5 + // + } } diff --git a/snippets/csharp/System/Math/Round/source.cs b/snippets/csharp/System/Math/Round/source.cs index 5b7e92dc26c..b4ce79acb8a 100644 --- a/snippets/csharp/System/Math/Round/source.cs +++ b/snippets/csharp/System/Math/Round/source.cs @@ -1,15 +1,15 @@ using System; -class Program +class MathRoundExample6 { - static void Main() + public static void Run() { -// - Console.WriteLine("Classic Math.Round in CSharp"); - Console.WriteLine(Math.Round(4.4)); // 4 - Console.WriteLine(Math.Round(4.5)); // 4 - Console.WriteLine(Math.Round(4.6)); // 5 - Console.WriteLine(Math.Round(5.5)); // 6 -// + // + Console.WriteLine("Classic Math.Round in CSharp"); + Console.WriteLine(Math.Round(4.4)); // 4 + Console.WriteLine(Math.Round(4.5)); // 4 + Console.WriteLine(Math.Round(4.6)); // 5 + Console.WriteLine(Math.Round(5.5)); // 6 + // } } diff --git a/snippets/csharp/System/Math/Round/source1.cs b/snippets/csharp/System/Math/Round/source1.cs index 24dc3206c31..01ae6d4c79c 100644 --- a/snippets/csharp/System/Math/Round/source1.cs +++ b/snippets/csharp/System/Math/Round/source1.cs @@ -1,15 +1,17 @@ using System; -public class Sample { - static void Main() { - // - Math.Round(3.44, 1); //Returns 3.4. - Math.Round(3.45, 1); //Returns 3.4. - Math.Round(3.46, 1); //Returns 3.5. +public class Sample +{ + public static void Run() + { + // + Math.Round(3.44, 1); //Returns 3.4. + Math.Round(3.45, 1); //Returns 3.4. + Math.Round(3.46, 1); //Returns 3.5. - Math.Round(4.34, 1); // Returns 4.3 - Math.Round(4.35, 1); // Returns 4.4 - Math.Round(4.36, 1); // Returns 4.4 - // - } + Math.Round(4.34, 1); // Returns 4.3 + Math.Round(4.35, 1); // Returns 4.4 + Math.Round(4.36, 1); // Returns 4.4 + // + } }; diff --git a/snippets/csharp/System/Math/Sign/sign.cs b/snippets/csharp/System/Math/Sign/sign.cs index 6445b40198f..9238a4d9e53 100644 --- a/snippets/csharp/System/Math/Sign/sign.cs +++ b/snippets/csharp/System/Math/Sign/sign.cs @@ -8,17 +8,17 @@ public static void Main() { string str = "{0}: {1,3} is {2} zero."; string nl = Environment.NewLine; - byte xByte1 = 0; - short xShort1 = -2; - int xInt1 = -3; - long xLong1 = -4; - float xSingle1 = 0.0f; - double xDouble1 = 6.0; - Decimal xDecimal1 = -7m; - nint xIntPtr1 = 8; + byte xByte1 = 0; + short xShort1 = -2; + int xInt1 = -3; + long xLong1 = -4; + float xSingle1 = 0.0f; + double xDouble1 = 6.0; + decimal xDecimal1 = -7m; + nint xIntPtr1 = 8; // The following type is not CLS-compliant. - sbyte xSbyte1 = -101; + sbyte xSbyte1 = -101; Console.WriteLine($"{nl}Test the sign of the following types of values:"); Console.WriteLine(str, "Byte ", xByte1, Test(Math.Sign(xByte1))); diff --git a/snippets/csharp/System/Math/Sqrt/sqrt1.cs b/snippets/csharp/System/Math/Sqrt/sqrt1.cs index 9f0ee019044..ac12b1d9aea 100644 --- a/snippets/csharp/System/Math/Sqrt/sqrt1.cs +++ b/snippets/csharp/System/Math/Sqrt/sqrt1.cs @@ -2,34 +2,32 @@ public class Example { - public static void Main() - { - // - // Create an array containing the area of some squares. - Tuple[] areas = - { Tuple.Create("Sitka, Alaska", 2870.3), + public static void Main() + { + // + // Create an array containing the area of some squares. + Tuple[] areas = + { Tuple.Create("Sitka, Alaska", 2870.3), Tuple.Create("New York City", 302.6), Tuple.Create("Los Angeles", 468.7), Tuple.Create("Detroit", 138.8), Tuple.Create("Chicago", 227.1), Tuple.Create("San Diego", 325.2) }; - Console.WriteLine("{0,-18} {1,14:N1} {2,30}\n", "City", "Area (mi.)", - "Equivalent to a square with:"); + Console.WriteLine($"{"City",-18} {"Area (mi.)",14:N1} {"Equivalent to a square with:",30}\n"); - foreach (var area in areas) - Console.WriteLine("{0,-18} {1,14:N1} {2,14:N2} miles per side", - area.Item1, area.Item2, Math.Round(Math.Sqrt(area.Item2), 2)); + foreach (var area in areas) + Console.WriteLine($"{area.Item1,-18} {area.Item2,14:N1} {Math.Round(Math.Sqrt(area.Item2), 2),14:N2} miles per side"); - // The example displays the following output: - // City Area (mi.) Equivalent to a square with: - // - // Sitka, Alaska 2,870.3 53.58 miles per side - // New York City 302.6 17.40 miles per side - // Los Angeles 468.7 21.65 miles per side - // Detroit 138.8 11.78 miles per side - // Chicago 227.1 15.07 miles per side - // San Diego 325.2 18.03 miles per side - // - } + // The example displays the following output: + // City Area (mi.) Equivalent to a square with: + // + // Sitka, Alaska 2,870.3 53.58 miles per side + // New York City 302.6 17.40 miles per side + // Los Angeles 468.7 21.65 miles per side + // Detroit 138.8 11.78 miles per side + // Chicago 227.1 15.07 miles per side + // San Diego 325.2 18.03 miles per side + // + } } diff --git a/snippets/csharp/System/Math/Tanh/tanh.cs b/snippets/csharp/System/Math/Tanh/tanh.cs index 2287df55413..650de427e13 100644 --- a/snippets/csharp/System/Math/Tanh/tanh.cs +++ b/snippets/csharp/System/Math/Tanh/tanh.cs @@ -8,13 +8,13 @@ public static void Main() { Console.WriteLine( "This example of hyperbolic Math.Tanh( double )\n" + - "generates the following output." ); + "generates the following output."); Console.WriteLine( "\nEvaluate these hyperbolic identities " + - "with selected values for X:" ); - Console.WriteLine( " tanh(X) == sinh(X) / cosh(X)" ); + "with selected values for X:"); + Console.WriteLine(" tanh(X) == sinh(X) / cosh(X)"); Console.WriteLine( - " tanh(2 * X) == 2 * tanh(X) / (1 + tanh^2(X))" ); + " tanh(2 * X) == 2 * tanh(X) / (1 + tanh^2(X))"); UseTanh(0.1); UseTanh(1.2); @@ -23,7 +23,7 @@ public static void Main() Console.WriteLine( "\nEvaluate [tanh(X + Y) == (tanh(X) + tanh(Y)) " + "/ (1 + tanh(X) * tanh(Y))]" + - "\nwith selected values for X and Y:" ); + "\nwith selected values for X and Y:"); UseTwoArgs(0.1, 1.2); UseTwoArgs(1.2, 4.9); @@ -38,18 +38,14 @@ static void UseTanh(double arg) Console.WriteLine( "\n Math.Tanh({0}) == {1:E16}\n" + " Math.Sinh({0}) / Math.Cosh({0}) == {2:E16}", - arg, tanhArg, (Math.Sinh(arg) / Math.Cosh(arg)) ); + arg, tanhArg, (Math.Sinh(arg) / Math.Cosh(arg))); // Evaluate tanh(2 * X) == 2 * tanh(X) / (1 + tanh^2(X)). Console.WriteLine( " 2 * Math.Tanh({0}) /", - arg, 2.0 * tanhArg ); - Console.WriteLine( - " (1 + (Math.Tanh({0}))^2) == {1:E16}", - arg, 2.0 * tanhArg / (1.0 + tanhArg * tanhArg ) ); - Console.WriteLine( - " Math.Tanh({0}) == {1:E16}", - 2.0 * arg, Math.Tanh(2.0 * arg) ); + arg, 2.0 * tanhArg); + Console.WriteLine($" (1 + (Math.Tanh({arg}))^2) == {2.0 * tanhArg / (1.0 + tanhArg * tanhArg):E16}"); + Console.WriteLine($" Math.Tanh({2.0 * arg}) == {Math.Tanh(2.0 * arg):E16}"); } // Evaluate a hyperbolic identity that is a function of two arguments. @@ -60,10 +56,8 @@ static void UseTwoArgs(double argX, double argY) "\n (Math.Tanh({0}) + Math.Tanh({1})) /\n" + "(1 + Math.Tanh({0}) * Math.Tanh({1})) == {2:E16}", argX, argY, (Math.Tanh(argX) + Math.Tanh(argY)) / - (1.0 + Math.Tanh(argX) * Math.Tanh(argY)) ); - Console.WriteLine( - " Math.Tanh({0}) == {1:E16}", - argX + argY, Math.Tanh(argX + argY)); + (1.0 + Math.Tanh(argX) * Math.Tanh(argY))); + Console.WriteLine($" Math.Tanh({argX + argY}) == {Math.Tanh(argX + argY):E16}"); } } diff --git a/snippets/csharp/System/Math/Truncate/Truncate1.cs b/snippets/csharp/System/Math/Truncate/Truncate1.cs index ccd81138362..53645bcee23 100644 --- a/snippets/csharp/System/Math/Truncate/Truncate1.cs +++ b/snippets/csharp/System/Math/Truncate/Truncate1.cs @@ -2,30 +2,30 @@ public class Class1 { - public static void Main() - { - // - double floatNumber; + public static void Main() + { + // + double floatNumber; - floatNumber = 32.7865; - // Displays 32 - Console.WriteLine(Math.Truncate(floatNumber)); + floatNumber = 32.7865; + // Displays 32 + Console.WriteLine(Math.Truncate(floatNumber)); - floatNumber = -32.9012; - // Displays -32 - Console.WriteLine(Math.Truncate(floatNumber)); - // + floatNumber = -32.9012; + // Displays -32 + Console.WriteLine(Math.Truncate(floatNumber)); + // - // - decimal decimalNumber; + // + decimal decimalNumber; - decimalNumber = 32.7865m; - // Displays 32 - Console.WriteLine(Math.Truncate(decimalNumber)); + decimalNumber = 32.7865m; + // Displays 32 + Console.WriteLine(Math.Truncate(decimalNumber)); - decimalNumber = -32.9012m; - // Displays -32 - Console.WriteLine(Math.Truncate(decimalNumber)); - // - } + decimalNumber = -32.9012m; + // Displays -32 + Console.WriteLine(Math.Truncate(decimalNumber)); + // + } } diff --git a/snippets/csharp/System/MissingFieldException/Overview/MissingMethodException.cs b/snippets/csharp/System/MissingFieldException/Overview/MissingMethodException.cs index 13c515ba601..ee088e3f376 100644 --- a/snippets/csharp/System/MissingFieldException/Overview/MissingMethodException.cs +++ b/snippets/csharp/System/MissingFieldException/Overview/MissingMethodException.cs @@ -22,7 +22,7 @@ public static void Main() catch (MissingMethodException e) { // Show the user that the DoSomething method cannot be called. - Console.WriteLine("Unable to call the DoSomething method: {0}", e.Message); + Console.WriteLine($"Unable to call the DoSomething method: {e.Message}"); } // @@ -33,12 +33,12 @@ public static void Main() // However, because the App class does not define this field, // a MissingFieldException is thrown. typeof(App).InvokeMember("AField", BindingFlags.Static | BindingFlags.SetField, - null, null, new Object[] { 5 }); + null, null, new object[] { 5 }); } catch (MissingFieldException e) { - // Show the user that the AField field cannot be accessed. - Console.WriteLine("Unable to access the AField field: {0}", e.Message); + // Show the user that the AField field cannot be accessed. + Console.WriteLine($"Unable to access the AField field: {e.Message}"); } // @@ -53,10 +53,10 @@ public static void Main() } catch (MissingMemberException e) { - // Notice that this code is catching MissingMemberException which is the - // base class of MissingMethodException and MissingFieldException. - // Show the user that the AnotherField field cannot be accessed. - Console.WriteLine("Unable to access the AnotherField field: {0}", e.Message); + // Notice that this code is catching MissingMemberException which is the + // base class of MissingMethodException and MissingFieldException. + // Show the user that the AnotherField field cannot be accessed. + Console.WriteLine($"Unable to access the AnotherField field: {e.Message}"); } // } @@ -66,4 +66,4 @@ public static void Main() // Unable to call the DoSomething method: Method 'App.DoSomething' not found. // Unable to access the AField field: Field 'App.AField' not found. // Unable to access the AnotherField field: Field 'App.AnotherField' not found. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/MulticastDelegate/Overview/delegatestring.cs b/snippets/csharp/System/MulticastDelegate/Overview/delegatestring.cs index 0ca29355b27..1fa902ccf3a 100644 --- a/snippets/csharp/System/MulticastDelegate/Overview/delegatestring.cs +++ b/snippets/csharp/System/MulticastDelegate/Overview/delegatestring.cs @@ -4,103 +4,100 @@ class StringContainer { - // Define a delegate to handle string display. - public delegate void CheckAndDisplayDelegate(string str); - - // A generic list object that holds the strings. - private List container = new List(); - - // A method that adds strings to the collection. - public void AddString(string str) - { - container.Add(str); - } - - // Iterate through the strings and invoke the method(s) that the delegate points to. - public void DisplayAllQualified(CheckAndDisplayDelegate displayDelegate) - { - foreach (var str in container) { - displayDelegate(str); - } - } - } + // Define a delegate to handle string display. + public delegate void CheckAndDisplayDelegate(string str); + + // A generic list object that holds the strings. + private List container = new(); + + // A method that adds strings to the collection. + public void AddString(string str) => container.Add(str); + + // Iterate through the strings and invoke the method(s) that the delegate points to. + public void DisplayAllQualified(CheckAndDisplayDelegate displayDelegate) + { + foreach (string str in container) + { + displayDelegate(str); + } + } +} // This class defines some methods to display strings. class StringExtensions { - // Display a string if it starts with a consonant. - public static void ConStart(string str) - { - if (!(str[0]=='a'||str[0]=='e'||str[0]=='i'||str[0]=='o'||str[0]=='u')) - Console.WriteLine(str); - } - - // Display a string if it starts with a vowel. - public static void VowelStart(string str) - { - if ((str[0]=='a'||str[0]=='e'||str[0]=='i'||str[0]=='o'||str[0]=='u')) - Console.WriteLine(str); - } + // Display a string if it starts with a consonant. + public static void ConStart(string str) + { + if (!(str[0] == 'a' || str[0] == 'e' || str[0] == 'i' || str[0] == 'o' || str[0] == 'u')) + Console.WriteLine(str); + } + + // Display a string if it starts with a vowel. + public static void VowelStart(string str) + { + if ((str[0] == 'a' || str[0] == 'e' || str[0] == 'i' || str[0] == 'o' || str[0] == 'u')) + Console.WriteLine(str); + } } // Demonstrate the use of delegates, including the Remove and // Combine methods to create and modify delegate combinations. class Test { - static public void Main() - { - // Declare the StringContainer class and add some strings - StringContainer container = new StringContainer(); - container.AddString("This"); - container.AddString("is"); - container.AddString("a"); - container.AddString("multicast"); - container.AddString("delegate"); - container.AddString("example"); - - // Create two delegates individually using different methods. - StringContainer.CheckAndDisplayDelegate conStart = StringExtensions.ConStart; - StringContainer.CheckAndDisplayDelegate vowelStart = StringExtensions.VowelStart; - - // Get the list of all delegates assigned to this MulticastDelegate instance. - Delegate[] delegateList = conStart.GetInvocationList(); - Console.WriteLine("conStart contains {0} delegate(s).", delegateList.Length); - delegateList = vowelStart.GetInvocationList(); - Console.WriteLine("vowelStart contains {0} delegate(s).\n", delegateList.Length); - - // Determine whether the delegates are System.Multicast delegates. - if (conStart is System.MulticastDelegate && vowelStart is System.MulticastDelegate) - Console.WriteLine("conStart and vowelStart are derived from MulticastDelegate.\n"); - - // Execute the two delegates. - Console.WriteLine("Executing the conStart delegate:"); - container.DisplayAllQualified(conStart); - Console.WriteLine(); - Console.WriteLine("Executing the vowelStart delegate:"); - container.DisplayAllQualified(vowelStart); - Console.WriteLine(); - - // Create a new MulticastDelegate and call Combine to add two delegates. - StringContainer.CheckAndDisplayDelegate multipleDelegates = - (StringContainer.CheckAndDisplayDelegate) Delegate.Combine(conStart, vowelStart); - - // How many delegates does multipleDelegates contain? - delegateList = multipleDelegates.GetInvocationList(); - Console.WriteLine("\nmultipleDelegates contains {0} delegates.\n", - delegateList.Length); - - // Pass this multicast delegate to DisplayAllQualified. - Console.WriteLine("Executing the multipleDelegate delegate."); - container.DisplayAllQualified(multipleDelegates); - - // Call remove and combine to change the contained delegates. - multipleDelegates = (StringContainer.CheckAndDisplayDelegate) Delegate.Remove(multipleDelegates, vowelStart); - multipleDelegates = (StringContainer.CheckAndDisplayDelegate) Delegate.Combine(multipleDelegates, conStart); - - // Pass multipleDelegates to DisplayAllQualified again. - Console.WriteLine("\nExecuting the multipleDelegate delegate with two conStart delegates:"); - container.DisplayAllQualified(multipleDelegates); - } + static public void Main() + { + // Declare the StringContainer class and add some strings + StringContainer container = new(); + container.AddString("This"); + container.AddString("is"); + container.AddString("a"); + container.AddString("multicast"); + container.AddString("delegate"); + container.AddString("example"); + + // Create two delegates individually using different methods. + StringContainer.CheckAndDisplayDelegate conStart = StringExtensions.ConStart; + StringContainer.CheckAndDisplayDelegate vowelStart = StringExtensions.VowelStart; + + // Get the list of all delegates assigned to this MulticastDelegate instance. + Delegate[] delegateList = conStart.GetInvocationList(); + Console.WriteLine($"conStart contains {delegateList.Length} delegate(s)."); + delegateList = vowelStart.GetInvocationList(); + Console.WriteLine($"vowelStart contains {delegateList.Length} delegate(s).\n"); + + // Determine whether the delegates are System.Multicast delegates. + if (conStart is System.MulticastDelegate && vowelStart is System.MulticastDelegate) + Console.WriteLine("conStart and vowelStart are derived from MulticastDelegate.\n"); + + // Execute the two delegates. + Console.WriteLine("Executing the conStart delegate:"); + container.DisplayAllQualified(conStart); + Console.WriteLine(); + Console.WriteLine("Executing the vowelStart delegate:"); + container.DisplayAllQualified(vowelStart); + Console.WriteLine(); + + // Create a new MulticastDelegate and call Combine to add two delegates. + StringContainer.CheckAndDisplayDelegate multipleDelegates = + (StringContainer.CheckAndDisplayDelegate)Delegate.Combine(conStart, vowelStart); + + // How many delegates does multipleDelegates contain? + delegateList = multipleDelegates.GetInvocationList(); + Console.WriteLine($"\nmultipleDelegates contains {delegateList.Length} delegates.\n"); + + // Pass this multicast delegate to DisplayAllQualified. + Console.WriteLine("Executing the multipleDelegate delegate."); + container.DisplayAllQualified(multipleDelegates); + + // Call remove and combine to change the contained delegates. + multipleDelegates = (StringContainer.CheckAndDisplayDelegate)Delegate.Remove(multipleDelegates, vowelStart); + multipleDelegates = (StringContainer.CheckAndDisplayDelegate)Delegate.Combine(multipleDelegates, conStart); + + // Pass multipleDelegates to DisplayAllQualified again. + Console.WriteLine("\nExecuting the multipleDelegate delegate with two conStart delegates:"); + container.DisplayAllQualified(multipleDelegates); + } } // The example displays the following output: // conStart contains 1 delegate(s). diff --git a/snippets/csharp/System/NotImplementedException/Overview/program.cs b/snippets/csharp/System/NotImplementedException/Overview/program.cs index 301fca07fae..941b6c8435b 100644 --- a/snippets/csharp/System/NotImplementedException/Overview/program.cs +++ b/snippets/csharp/System/NotImplementedException/Overview/program.cs @@ -2,23 +2,23 @@ class Program { -// -static void Main(string[] args) -{ - try + // + static void Main(string[] args) { - FutureFeature(); + try + { + FutureFeature(); + } + catch (NotImplementedException notImp) + { + Console.WriteLine(notImp.Message); + } } - catch (NotImplementedException notImp) + + static void FutureFeature() { - Console.WriteLine(notImp.Message); + // Not developed yet. + throw new NotImplementedException(); } -} - -static void FutureFeature() -{ - // Not developed yet. - throw new NotImplementedException(); -} -// + // } diff --git a/snippets/csharp/System/NotSupportedException/Overview/BadState1.cs b/snippets/csharp/System/NotSupportedException/Overview/BadState1.cs index 323cea83410..de52310127b 100644 --- a/snippets/csharp/System/NotSupportedException/Overview/BadState1.cs +++ b/snippets/csharp/System/NotSupportedException/Overview/BadState1.cs @@ -9,10 +9,10 @@ public class Example public static async Task Main() { Encoding enc = Encoding.Unicode; - String value = "This is a string to persist."; - Byte[] bytes = enc.GetBytes(value); + string value = "This is a string to persist."; + byte[] bytes = enc.GetBytes(value); - FileStream fs = new FileStream(@".\TestFile.dat", + FileStream fs = new(@".\TestFile.dat", FileMode.Open, FileAccess.Read); Task t = fs.WriteAsync(enc.GetPreamble(), 0, enc.GetPreamble().Length); diff --git a/snippets/csharp/System/NotSupportedException/Overview/TestProp1.cs b/snippets/csharp/System/NotSupportedException/Overview/TestProp1.cs index 7eaf7c84e92..abc9ae52b90 100644 --- a/snippets/csharp/System/NotSupportedException/Overview/TestProp1.cs +++ b/snippets/csharp/System/NotSupportedException/Overview/TestProp1.cs @@ -7,12 +7,11 @@ public class TestPropEx1 { public static async Task Main() { - String name = @".\TestFile.dat"; + string name = @".\TestFile.dat"; var fs = new FileStream(name, FileMode.Create, FileAccess.Write); - Console.WriteLine("Filename: {0}, Encoding: {1}", - name, await FileUtilities1.GetEncodingType(fs)); + Console.WriteLine($"Filename: {name}, Encoding: {await FileUtilities1.GetEncodingType(fs)}"); } } @@ -23,7 +22,7 @@ public enum EncodingType public async static Task GetEncodingType(FileStream fs) { - Byte[] bytes = new Byte[4]; + byte[] bytes = new byte[4]; int bytesRead = await fs.ReadAsync(bytes, 0, 4); if (bytesRead < 2) return EncodingType.None; @@ -33,12 +32,12 @@ public async static Task GetEncodingType(FileStream fs) if (bytesRead == 4) { - var value = BitConverter.ToUInt32(bytes, 0); + uint value = BitConverter.ToUInt32(bytes, 0); if (value == 0x0000FEFF | value == 0xFEFF0000) return EncodingType.Utf32; } - var value16 = BitConverter.ToUInt16(bytes, 0); + ushort value16 = BitConverter.ToUInt16(bytes, 0); if (value16 == (ushort)0xFEFF | value16 == (ushort)0xFFFE) return EncodingType.Utf16; diff --git a/snippets/csharp/System/NotSupportedException/Overview/TestProp2.cs b/snippets/csharp/System/NotSupportedException/Overview/TestProp2.cs index 795a01183ae..a10c1987c38 100644 --- a/snippets/csharp/System/NotSupportedException/Overview/TestProp2.cs +++ b/snippets/csharp/System/NotSupportedException/Overview/TestProp2.cs @@ -6,12 +6,11 @@ public class TestPropEx2 { public static async Task Main() { - String name = @".\TestFile.dat"; + string name = @".\TestFile.dat"; var fs = new FileStream(name, FileMode.Create, FileAccess.Write); - Console.WriteLine("Filename: {0}, Encoding: {1}", - name, await FileUtilities.GetEncodingType(fs)); + Console.WriteLine($"Filename: {name}, Encoding: {await FileUtilities.GetEncodingType(fs)}"); } } @@ -26,7 +25,7 @@ public static async Task GetEncodingType(FileStream fs) if (!fs.CanRead) return EncodingType.Unknown; - Byte[] bytes = new Byte[4]; + byte[] bytes = new byte[4]; int bytesRead = await fs.ReadAsync(bytes, 0, 4); if (bytesRead < 2) return EncodingType.None; @@ -36,12 +35,12 @@ public static async Task GetEncodingType(FileStream fs) if (bytesRead == 4) { - var value = BitConverter.ToUInt32(bytes, 0); + uint value = BitConverter.ToUInt32(bytes, 0); if (value == 0x0000FEFF | value == 0xFEFF0000) return EncodingType.Utf32; } - var value16 = BitConverter.ToUInt16(bytes, 0); + ushort value16 = BitConverter.ToUInt16(bytes, 0); if (value16 == (ushort)0xFEFF | value16 == (ushort)0xFFFE) return EncodingType.Utf16; diff --git a/snippets/csharp/System/NullReferenceException/Overview/Array1.cs b/snippets/csharp/System/NullReferenceException/Overview/Array1.cs index 599029a2be9..bf12d6305a3 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/Array1.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/Array1.cs @@ -5,10 +5,9 @@ public class Array1Example public static void Main() { // - string[] values = [ "one", null, "two" ]; + string[] values = ["one", null, "two"]; for (int ctr = 0; ctr <= values.GetUpperBound(0); ctr++) - Console.Write("{0}{1}", values[ctr].Trim(), - ctr == values.GetUpperBound(0) ? "" : ", "); + Console.Write($"{values[ctr].Trim()}{(ctr == values.GetUpperBound(0) ? "" : ", ")}"); Console.WriteLine(); // The example displays the following output: diff --git a/snippets/csharp/System/NullReferenceException/Overview/Array2.cs b/snippets/csharp/System/NullReferenceException/Overview/Array2.cs index 756e52f450b..4cdb6435cb9 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/Array2.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/Array2.cs @@ -5,11 +5,9 @@ public class Array2Example public static void Main() { // - string[] values = [ "one", null, "two" ]; + string[] values = ["one", null, "two"]; for (int ctr = 0; ctr <= values.GetUpperBound(0); ctr++) - Console.Write("{0}{1}", - values[ctr] != null ? values[ctr].Trim() : "", - ctr == values.GetUpperBound(0) ? "" : ", "); + Console.Write($"{(values[ctr] != null ? values[ctr].Trim() : "")}{(ctr == values.GetUpperBound(0) ? "" : ", ")}"); Console.WriteLine(); // The example displays the following output: diff --git a/snippets/csharp/System/NullReferenceException/Overview/Chain1.cs b/snippets/csharp/System/NullReferenceException/Overview/Chain1.cs index 31f69e53c3e..2756d22fbf4 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/Chain1.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/Chain1.cs @@ -23,7 +23,7 @@ public class Pages public Page CurrentPage { - get { return _page[_ctr]; } + get => _page[_ctr]; set { // Move all the page objects down to accommodate the new one. diff --git a/snippets/csharp/System/NullReferenceException/Overview/Chain2.cs b/snippets/csharp/System/NullReferenceException/Overview/Chain2.cs index 2034ef1efb6..8987d0d9a28 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/Chain2.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/Chain2.cs @@ -30,7 +30,7 @@ public class Pages public Page CurrentPage { - get { return _page[_ctr]; } + get => _page[_ctr]; set { // Move all the page objects down to accommodate the new one. diff --git a/snippets/csharp/System/NullReferenceException/Overview/example2.cs b/snippets/csharp/System/NullReferenceException/Overview/example2.cs index 41dfb78ede0..71ab56fe89a 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/example2.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/example2.cs @@ -17,10 +17,7 @@ private static void PopulateNames(List names) names.Add(arrName); } - private static List GetData() - { - return null; - } + private static List GetData() => null; } // The example displays output like the following: diff --git a/snippets/csharp/System/NullReferenceException/Overview/example3.cs b/snippets/csharp/System/NullReferenceException/Overview/example3.cs index 2ce0700f112..412cfa96068 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/example3.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/example3.cs @@ -1,4 +1,4 @@ -// +// using System; using System.Collections.Generic; using System.Collections; @@ -12,15 +12,12 @@ public static void Main() _ = GetList(listType); } - private static Type GetListType() - { - return typeof(List); - } + private static Type GetListType() => typeof(List); private static IList GetList(Type type) { var emptyList = (IList)FormatterServices.GetUninitializedObject(type); // Does not call list constructor - var value = 1; + int value = 1; emptyList.Add(value); return emptyList; } diff --git a/snippets/csharp/System/NullReferenceException/Overview/nullreturn2.cs b/snippets/csharp/System/NullReferenceException/Overview/nullreturn2.cs index 2c6dd285739..2036797ecce 100644 --- a/snippets/csharp/System/NullReferenceException/Overview/nullreturn2.cs +++ b/snippets/csharp/System/NullReferenceException/Overview/nullreturn2.cs @@ -44,15 +44,12 @@ public static Person[] AddRange(params string[] firstNames) { Person[] p = new Person[firstNames.Length]; for (int ctr = 0; ctr < firstNames.Length; ctr++) - p[ctr] = new Person(firstNames[ctr]); + p[ctr] = new(firstNames[ctr]); return p; } - public Person(string firstName) - { - FirstName = firstName; - } + public Person(string firstName) => FirstName = firstName; public string FirstName; } diff --git a/snippets/csharp/System/Nullable/GetUnderlyingType/gut.cs b/snippets/csharp/System/Nullable/GetUnderlyingType/gut.cs index dc86f85c3bd..8e163b67ee9 100644 --- a/snippets/csharp/System/Nullable/GetUnderlyingType/gut.cs +++ b/snippets/csharp/System/Nullable/GetUnderlyingType/gut.cs @@ -7,33 +7,30 @@ class Sample { -// Declare a type named Example. -// The MyMethod member of Example returns a Nullable of Int32. + // Declare a type named Example. + // The MyMethod member of Example returns a Nullable of Int32. public class Example { - public int? MyMethod() - { - return 0; - } + public int? MyMethod() => 0; } -/* - Use reflection to obtain a Type object for the Example type. - Use the Type object to obtain a MethodInfo object for the MyMethod method. - Use the MethodInfo object to obtain the type of the return value of - MyMethod, which is Nullable of Int32. - Use the GetUnderlyingType method to obtain the type argument of the - return value type, which is Int32. -*/ + /* + Use reflection to obtain a Type object for the Example type. + Use the Type object to obtain a MethodInfo object for the MyMethod method. + Use the MethodInfo object to obtain the type of the return value of + MyMethod, which is Nullable of Int32. + Use the GetUnderlyingType method to obtain the type argument of the + return value type, which is Int32. + */ public static void Main() { Type t = typeof(Example); MethodInfo mi = t.GetMethod("MyMethod"); Type retval = mi.ReturnType; - Console.WriteLine("Return value type ... {0}", retval); + Console.WriteLine($"Return value type ... {retval}"); Type answer = Nullable.GetUnderlyingType(retval); - Console.WriteLine("Underlying type ..... {0}", answer); + Console.WriteLine($"Underlying type ..... {answer}"); } } /* @@ -43,4 +40,4 @@ Return value type ... System.Nullable`1[System.Int32] Underlying type ..... System.Int32 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/Equals/eq.cs b/snippets/csharp/System/NullableT/Equals/eq.cs index ebd405f2f38..a86abbad545 100644 --- a/snippets/csharp/System/NullableT/Equals/eq.cs +++ b/snippets/csharp/System/NullableT/Equals/eq.cs @@ -8,30 +8,30 @@ class Sample { public static void Main() { - int? nullInt1 = 100; - int? nullInt2 = 200; - object myObj; - -// Determine if two nullable of System.Int32 values are equal. -// The nullable objects have different values. - Console.Write("1) nullInt1 and nullInt2 "); - if (nullInt1.Equals(nullInt2)) - Console.Write("are"); - else - Console.Write("are not"); - Console.WriteLine(" equal."); - -// Determine if a nullable of System.Int32 and an object -// are equal. The object contains the boxed value of the -// nullable object. - - myObj = (object)nullInt1; - Console.Write("2) nullInt1 and myObj "); - if (nullInt1.Equals(myObj)) - Console.Write("are"); - else - Console.Write("are not"); - Console.WriteLine(" equal."); + int? nullInt1 = 100; + int? nullInt2 = 200; + object myObj; + + // Determine if two nullable of System.Int32 values are equal. + // The nullable objects have different values. + Console.Write("1) nullInt1 and nullInt2 "); + if (nullInt1.Equals(nullInt2)) + Console.Write("are"); + else + Console.Write("are not"); + Console.WriteLine(" equal."); + + // Determine if a nullable of System.Int32 and an object + // are equal. The object contains the boxed value of the + // nullable object. + + myObj = (object)nullInt1; + Console.Write("2) nullInt1 and myObj "); + if (nullInt1.Equals(myObj)) + Console.Write("are"); + else + Console.Write("are not"); + Console.WriteLine(" equal."); } } @@ -42,4 +42,4 @@ public static void Main() 2) nullInt1 and myObj are equal. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/GetValueOrDefault/gvod.cs b/snippets/csharp/System/NullableT/GetValueOrDefault/gvod.cs index 3169bdada67..2fd73c2cee6 100644 --- a/snippets/csharp/System/NullableT/GetValueOrDefault/gvod.cs +++ b/snippets/csharp/System/NullableT/GetValueOrDefault/gvod.cs @@ -8,67 +8,63 @@ class Sample { public static void Main() { - float? mySingle = 12.34f; - float? yourSingle = -1.0f; + float? mySingle = 12.34f; + float? yourSingle = -1.0f; - Console.WriteLine("*** Display a value or the default value ***\n"); -// Display the values of mySingle and yourSingle. + Console.WriteLine("*** Display a value or the default value ***\n"); + // Display the values of mySingle and yourSingle. - Display("A1", mySingle, yourSingle); + Display("A1", mySingle, yourSingle); -// Assign the value of mySingle to yourSingle, then display the values -// of mySingle and yourSingle. The yourSingle variable is assigned the -// value 12.34 because mySingle has a value. + // Assign the value of mySingle to yourSingle, then display the values + // of mySingle and yourSingle. The yourSingle variable is assigned the + // value 12.34 because mySingle has a value. - yourSingle = mySingle.GetValueOrDefault(); - Display("A2", mySingle, yourSingle); + yourSingle = mySingle.GetValueOrDefault(); + Display("A2", mySingle, yourSingle); -// Assign null (Nothing in Visual Basic) to mySingle, which means no value is -// defined for mySingle. Then assign the value of mySingle to yourSingle and -// display the values of both variables. The default value of all binary zeroes -// is assigned to yourSingle because mySingle has no value. + // Assign null (Nothing in Visual Basic) to mySingle, which means no value is + // defined for mySingle. Then assign the value of mySingle to yourSingle and + // display the values of both variables. The default value of all binary zeroes + // is assigned to yourSingle because mySingle has no value. - mySingle = null; - yourSingle = mySingle.GetValueOrDefault(); - Display("A3", mySingle, yourSingle); + mySingle = null; + yourSingle = mySingle.GetValueOrDefault(); + Display("A3", mySingle, yourSingle); -// Reassign the original values of mySingle and yourSingle. - mySingle = 12.34f; - yourSingle = -1.0f; + // Reassign the original values of mySingle and yourSingle. + mySingle = 12.34f; + yourSingle = -1.0f; - Console.Write("\n*** Display a value or the "); - Console.WriteLine("specified default value ***\n"); + Console.Write("\n*** Display a value or the "); + Console.WriteLine("specified default value ***\n"); -// Display the values of mySingle and yourSingle. - Display("B1", mySingle, yourSingle); + // Display the values of mySingle and yourSingle. + Display("B1", mySingle, yourSingle); -// Assign the value of mySingle to yourSingle, then display the values -// of mySingle and yourSingle. The yourSingle variable is assigned the -// value 12.34 because mySingle has a value. + // Assign the value of mySingle to yourSingle, then display the values + // of mySingle and yourSingle. The yourSingle variable is assigned the + // value 12.34 because mySingle has a value. - yourSingle = mySingle.GetValueOrDefault(-222.22f); - Display("B2", mySingle, yourSingle); + yourSingle = mySingle.GetValueOrDefault(-222.22f); + Display("B2", mySingle, yourSingle); -// Assign null (Nothing in Visual Basic) to mySingle, which means no value is -// defined for mySingle. Then assign the value of mySingle to yourSingle and -// display the values of both variables. The specified default value of -333.33 -// is assigned to yourSingle because mySingle has no value. + // Assign null (Nothing in Visual Basic) to mySingle, which means no value is + // defined for mySingle. Then assign the value of mySingle to yourSingle and + // display the values of both variables. The specified default value of -333.33 + // is assigned to yourSingle because mySingle has no value. - mySingle = null; - yourSingle = mySingle.GetValueOrDefault(-333.33f); - Display("B3", mySingle, yourSingle); + mySingle = null; + yourSingle = mySingle.GetValueOrDefault(-333.33f); + Display("B3", mySingle, yourSingle); } -// Display the values of two nullable of System.Single structures. -// The Console.WriteLine method automatically calls the ToString methods of -// each input argument to display its values. If no value is defined for a -// nullable type, the ToString method for that argument returns the empty -// string (""). - public static void Display(string title, float? dspMySingle, float? dspYourSingle) - { - Console.WriteLine("{0}) mySingle = [{1}], yourSingle = [{2}]", - title, dspMySingle, dspYourSingle); - } + // Display the values of two nullable of System.Single structures. + // The Console.WriteLine method automatically calls the ToString methods of + // each input argument to display its values. If no value is defined for a + // nullable type, the ToString method for that argument returns the empty + // string (""). + public static void Display(string title, float? dspMySingle, float? dspYourSingle) => Console.WriteLine($"{title}) mySingle = [{dspMySingle}], yourSingle = [{dspYourSingle}]"); } /* @@ -85,4 +81,4 @@ public static void Display(string title, float? dspMySingle, float? dspYourSingl B3) mySingle = [], yourSingle = [-333.33] */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/HasValue/hasvalue2.cs b/snippets/csharp/System/NullableT/HasValue/hasvalue2.cs index a0d19fb3abe..07d18f393b6 100644 --- a/snippets/csharp/System/NullableT/HasValue/hasvalue2.cs +++ b/snippets/csharp/System/NullableT/HasValue/hasvalue2.cs @@ -3,27 +3,30 @@ public class Example { - public static void Main() - { - Nullable n1 = new Nullable(10); - Nullable n2 = null; - Nullable n3 = new Nullable(20); - n3 = null; - Nullable[] items = { n1, n2, n3 }; + public static void Main() + { + Nullable n1 = new Nullable(10); + Nullable n2 = null; + Nullable n3 = new Nullable(20); + n3 = null; + Nullable[] items = { n1, n2, n3 }; - foreach (var item in items) { - Console.WriteLine("Has a value: {0}", item.HasValue); - if (item.HasValue) { - Console.WriteLine("Type: {0}", item.GetType().Name); - Console.WriteLine("Value: {0}", item.Value); - } - else { - Console.WriteLine("Null: {0}", item == null); - Console.WriteLine("Default Value: {0}", item.GetValueOrDefault()); - } - Console.WriteLine(); - } - } + foreach (var item in items) + { + Console.WriteLine($"Has a value: {item.HasValue}"); + if (item.HasValue) + { + Console.WriteLine($"Type: {item.GetType().Name}"); + Console.WriteLine($"Value: {item.Value}"); + } + else + { + Console.WriteLine($"Null: {item == null}"); + Console.WriteLine($"Default Value: {item.GetValueOrDefault()}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // Has a value: True @@ -37,4 +40,4 @@ public static void Main() // Has a value: False // Null: True // Default Value: 0 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/Overview/tarow.cs b/snippets/csharp/System/NullableT/Overview/tarow.cs index 04d3a3085b5..541343a4e55 100644 --- a/snippets/csharp/System/NullableT/Overview/tarow.cs +++ b/snippets/csharp/System/NullableT/Overview/tarow.cs @@ -6,55 +6,56 @@ class Sample // Define the "titleAuthor" table of the Microsoft "pubs" database. public struct titleAuthor { - // Author ID; format ###-##-#### - public string au_id; - // Title ID; format AA#### - public string title_id; - // Author ORD is nullable. - public short? au_ord; - // Royalty Percent is nullable. - public int? royaltyper; + // Author ID; format ###-##-#### + public string au_id; + // Title ID; format AA#### + public string title_id; + // Author ORD is nullable. + public short? au_ord; + // Royalty Percent is nullable. + public int? royaltyper; } public static void Main() { - // Declare and initialize the titleAuthor array. - titleAuthor[] ta = new titleAuthor[3]; - ta[0].au_id = "712-32-1176"; - ta[0].title_id = "PS3333"; - ta[0].au_ord = 1; - ta[0].royaltyper = 100; + // Declare and initialize the titleAuthor array. + titleAuthor[] ta = new titleAuthor[3]; + ta[0].au_id = "712-32-1176"; + ta[0].title_id = "PS3333"; + ta[0].au_ord = 1; + ta[0].royaltyper = 100; - ta[1].au_id = "213-46-8915"; - ta[1].title_id = "BU1032"; - ta[1].au_ord = null; - ta[1].royaltyper = null; + ta[1].au_id = "213-46-8915"; + ta[1].title_id = "BU1032"; + ta[1].au_ord = null; + ta[1].royaltyper = null; - ta[2].au_id = "672-71-3249"; - ta[2].title_id = "TC7777"; - ta[2].au_ord = null; - ta[2].royaltyper = 40; + ta[2].au_id = "672-71-3249"; + ta[2].title_id = "TC7777"; + ta[2].au_ord = null; + ta[2].royaltyper = 40; - // Display the values of the titleAuthor array elements, and - // display a legend. - Display("Title Authors Table", ta); - Console.WriteLine("Legend:"); - Console.WriteLine("An Author ORD of -1 means no value is defined."); - Console.WriteLine("A Royalty % of 0 means no value is defined."); + // Display the values of the titleAuthor array elements, and + // display a legend. + Display("Title Authors Table", ta); + Console.WriteLine("Legend:"); + Console.WriteLine("An Author ORD of -1 means no value is defined."); + Console.WriteLine("A Royalty % of 0 means no value is defined."); } // Display the values of the titleAuthor array elements. public static void Display(string dspTitle, titleAuthor[] dspAllTitleAuthors) { - Console.WriteLine("*** {0} ***", dspTitle); - foreach (titleAuthor dspTA in dspAllTitleAuthors) { - Console.WriteLine("Author ID ... {0}", dspTA.au_id); - Console.WriteLine("Title ID .... {0}", dspTA.title_id); - Console.WriteLine("Author ORD .. {0}", dspTA.au_ord ?? -1); - Console.WriteLine("Royalty % ... {0}", dspTA.royaltyper ?? 0); - Console.WriteLine(); - } + Console.WriteLine($"*** {dspTitle} ***"); + foreach (titleAuthor dspTA in dspAllTitleAuthors) + { + Console.WriteLine($"Author ID ... {dspTA.au_id}"); + Console.WriteLine($"Title ID .... {dspTA.title_id}"); + Console.WriteLine($"Author ORD .. {dspTA.au_ord ?? -1}"); + Console.WriteLine($"Royalty % ... {dspTA.royaltyper ?? 0}"); + Console.WriteLine(); + } } } // The example displays the following output: @@ -77,4 +78,4 @@ public static void Display(string dspTitle, // Legend: // An Author ORD of -1 means no value is defined. // A Royalty % of 0 means no value is defined. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/ToString/ts.cs b/snippets/csharp/System/NullableT/ToString/ts.cs index 3636eb9ddce..5736259dbc3 100644 --- a/snippets/csharp/System/NullableT/ToString/ts.cs +++ b/snippets/csharp/System/NullableT/ToString/ts.cs @@ -8,28 +8,28 @@ class Sample { public static void Main() { - DateTime? nullableDate; + DateTime? nullableDate; -// Display the current date and time. - nullableDate = DateTime.Now; - Display("1)", nullableDate); + // Display the current date and time. + nullableDate = DateTime.Now; + Display("1)", nullableDate); -// Assign null (Nothing in Visual Basic) to nullableDate, then -// display its value. - nullableDate = null; - Display("2)", nullableDate); + // Assign null (Nothing in Visual Basic) to nullableDate, then + // display its value. + nullableDate = null; + Display("2)", nullableDate); } -// Display the text representation of a nullable DateTime. + // Display the text representation of a nullable DateTime. public static void Display(string title, DateTime? dspDT) { - string msg = dspDT.ToString(); + string msg = dspDT.ToString(); - Console.Write("{0} ", title); - if (String.IsNullOrEmpty(msg)) - Console.WriteLine("The nullable DateTime has no defined value."); - else - Console.WriteLine("The current date and time is {0}.", msg); + Console.Write($"{title} "); + if (string.IsNullOrEmpty(msg)) + Console.WriteLine("The nullable DateTime has no defined value."); + else + Console.WriteLine($"The current date and time is {msg}."); } } @@ -40,4 +40,4 @@ public static void Display(string title, DateTime? dspDT) 2) The nullable DateTime has no defined value. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/NullableT/op_Explicit/explicit1.cs b/snippets/csharp/System/NullableT/op_Explicit/explicit1.cs index c8b71550f9b..e98b1ec2a02 100644 --- a/snippets/csharp/System/NullableT/op_Explicit/explicit1.cs +++ b/snippets/csharp/System/NullableT/op_Explicit/explicit1.cs @@ -3,16 +3,16 @@ public class Example { - public static void Main() - { - var nullInt = new Nullable(172); - // Convert with CInt conversion method. - Console.WriteLine((int)nullInt); - // Convert with Convert.ChangeType. - Console.WriteLine(Convert.ChangeType(nullInt, typeof(int))); - } + public static void Main() + { + var nullInt = new Nullable(172); + // Convert with CInt conversion method. + Console.WriteLine((int)nullInt); + // Convert with Convert.ChangeType. + Console.WriteLine(Convert.ChangeType(nullInt, typeof(int))); + } } // The example displays the following output: // 172 // 172 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Object/Equals/equals2.cs b/snippets/csharp/System/Object/Equals/equals2.cs index e64ae9a67b8..e1f943ae930 100644 --- a/snippets/csharp/System/Object/Equals/equals2.cs +++ b/snippets/csharp/System/Object/Equals/equals2.cs @@ -1,4 +1,4 @@ -// +// using System; class Point2 @@ -14,7 +14,7 @@ public Point2(int x, int y) this.y = y; } - public override bool Equals(Object obj) + public override bool Equals(object obj) { //Check for null and compare run-time types. if ((obj == null) || !this.GetType().Equals(obj.GetType())) @@ -28,27 +28,18 @@ public override bool Equals(Object obj) } } - public override int GetHashCode() - { - return HashCode.Combine(x, y); - } + public override int GetHashCode() => HashCode.Combine(x, y); - public override string ToString() - { - return String.Format("Point2({0}, {1})", x, y); - } + public override string ToString() => $"Point2({x}, {y})"; } sealed class Point3D : Point2 { int z; - public Point3D(int x, int y, int z) : base(x, y) - { - this.z = z; - } + public Point3D(int x, int y, int z) : base(x, y) => this.z = z; - public override bool Equals(Object obj) + public override bool Equals(object obj) { Point3D pt3 = obj as Point3D; if (pt3 == null) @@ -57,25 +48,19 @@ public override bool Equals(Object obj) return base.Equals((Point2)obj) && z == pt3.z; } - public override int GetHashCode() - { - return HashCode.Combine(base.GetHashCode(), z); - } + public override int GetHashCode() => HashCode.Combine(base.GetHashCode(), z); - public override String ToString() - { - return String.Format("Point2({0}, {1}, {2})", x, y, z); - } + public override string ToString() => $"Point2({x}, {y}, {z})"; } class Example7 { public static void Main() { - Point2 point2D = new Point2(5, 5); - Point3D point3Da = new Point3D(5, 5, 2); - Point3D point3Db = new Point3D(5, 5, 2); - Point3D point3Dc = new Point3D(5, 5, -1); + Point2 point2D = new(5, 5); + Point3D point3Da = new(5, 5, 2); + Point3D point3Db = new(5, 5, 2); + Point3D point3Dc = new(5, 5, -1); Console.WriteLine($"{point2D} = {point3Da}: {point2D.Equals(point3Da)}"); Console.WriteLine($"{point2D} = {point3Db}: {point2D.Equals(point3Db)}"); diff --git a/snippets/csharp/System/Object/Equals/equals3.cs b/snippets/csharp/System/Object/Equals/equals3.cs index b03eeb114ab..bcf7e2bf2d3 100644 --- a/snippets/csharp/System/Object/Equals/equals3.cs +++ b/snippets/csharp/System/Object/Equals/equals3.cs @@ -1,74 +1,64 @@ -// +// using System; class Rectangle { - private Point a, b; + private Point a, b; - public Rectangle(int upLeftX, int upLeftY, int downRightX, int downRightY) - { - this.a = new Point(upLeftX, upLeftY); - this.b = new Point(downRightX, downRightY); - } - - public override bool Equals(Object obj) - { - // Perform an equality check on two rectangles (Point object pairs). - if (obj == null || GetType() != obj.GetType()) - return false; - Rectangle r = (Rectangle)obj; - return a.Equals(r.a) && b.Equals(r.b); - } - - public override int GetHashCode() - { - return Tuple.Create(a, b).GetHashCode(); - } + public Rectangle(int upLeftX, int upLeftY, int downRightX, int downRightY) + { + this.a = new(upLeftX, upLeftY); + this.b = new(downRightX, downRightY); + } - public override String ToString() + public override bool Equals(object obj) { - return String.Format("Rectangle({0}, {1}, {2}, {3})", - a.x, a.y, b.x, b.y); + // Perform an equality check on two rectangles (Point object pairs). + if (obj == null || GetType() != obj.GetType()) + return false; + Rectangle r = (Rectangle)obj; + return a.Equals(r.a) && b.Equals(r.b); } + + public override int GetHashCode() => Tuple.Create(a, b).GetHashCode(); + + public override string ToString() => $"Rectangle({a.x}, {a.y}, {b.x}, {b.y})"; } class Point { - internal int x; - internal int y; + internal int x; + internal int y; - public Point(int X, int Y) - { - this.x = X; - this.y = Y; - } + public Point(int X, int Y) + { + this.x = X; + this.y = Y; + } - public override bool Equals (Object obj) - { - // Performs an equality check on two points (integer pairs). - if (obj == null || GetType() != obj.GetType()) return false; - Point p = (Point)obj; - return (x == p.x) && (y == p.y); - } + public override bool Equals(object obj) + { + // Performs an equality check on two points (integer pairs). + if (obj == null || GetType() != obj.GetType()) return false; + Point p = (Point)obj; + return (x == p.x) && (y == p.y); + } - public override int GetHashCode() - { - return Tuple.Create(x, y).GetHashCode(); - } + public override int GetHashCode() => Tuple.Create(x, y).GetHashCode(); } class Example { - public static void Main() - { - Rectangle r1 = new Rectangle(0, 0, 100, 200); - Rectangle r2 = new Rectangle(0, 0, 100, 200); - Rectangle r3 = new Rectangle(0, 0, 150, 200); + public static void Main() + { + Rectangle r1 = new(0, 0, 100, 200); + Rectangle r2 = new(0, 0, 100, 200); + Rectangle r3 = new(0, 0, 150, 200); - Console.WriteLine($"{r1} = {r2}: {r1.Equals(r2)}"); - Console.WriteLine($"{r1} = {r3}: {r1.Equals(r3)}"); - Console.WriteLine($"{r2} = {r3}: {r2.Equals(r3)}"); - } + Console.WriteLine($"{r1} = {r2}: {r1.Equals(r2)}"); + Console.WriteLine($"{r1} = {r3}: {r1.Equals(r3)}"); + Console.WriteLine($"{r2} = {r3}: {r2.Equals(r3)}"); + } } // The example displays the following output: // Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 100, 200): True diff --git a/snippets/csharp/System/Object/Equals/equals4.cs b/snippets/csharp/System/Object/Equals/equals4.cs index fae811a3bca..69018b798e1 100644 --- a/snippets/csharp/System/Object/Equals/equals4.cs +++ b/snippets/csharp/System/Object/Equals/equals4.cs @@ -1,56 +1,41 @@ -// +// using System; public struct Complex { - public double re, im; + public double re, im; - public override bool Equals(Object obj) - { - return obj is Complex && this == (Complex)obj; - } + public override bool Equals(object obj) => obj is Complex && this == (Complex)obj; - public override int GetHashCode() - { - return Tuple.Create(re, im).GetHashCode(); - } + public override int GetHashCode() => Tuple.Create(re, im).GetHashCode(); - public static bool operator ==(Complex x, Complex y) - { - return x.re == y.re && x.im == y.im; - } + public static bool operator ==(Complex x, Complex y) => x.re == y.re && x.im == y.im; - public static bool operator !=(Complex x, Complex y) - { - return !(x == y); - } + public static bool operator !=(Complex x, Complex y) => !(x == y); - public override String ToString() - { - return String.Format("({0}, {1})", re, im); - } + public override string ToString() => $"({re}, {im})"; } class MyClass { - public static void Main() - { - Complex cmplx1, cmplx2; + public static void Main() + { + Complex cmplx1, cmplx2; - cmplx1.re = 4.0; - cmplx1.im = 1.0; + cmplx1.re = 4.0; + cmplx1.im = 1.0; - cmplx2.re = 2.0; - cmplx2.im = 1.0; + cmplx2.re = 2.0; + cmplx2.im = 1.0; - Console.WriteLine($"{cmplx1} <> {cmplx2}: {cmplx1 != cmplx2}"); - Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1.Equals(cmplx2)}"); + Console.WriteLine($"{cmplx1} <> {cmplx2}: {cmplx1 != cmplx2}"); + Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1.Equals(cmplx2)}"); - cmplx2.re = 4.0; + cmplx2.re = 4.0; - Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1 == cmplx2}"); - Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1.Equals(cmplx2)}"); - } + Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1 == cmplx2}"); + Console.WriteLine($"{cmplx1} = {cmplx2}: {cmplx1.Equals(cmplx2)}"); + } } // The example displays the following output: // (4, 1) <> (2, 1): True diff --git a/snippets/csharp/System/Object/Equals/equals_ref.cs b/snippets/csharp/System/Object/Equals/equals_ref.cs index 8db6b1dc08a..2f9efcc9277 100644 --- a/snippets/csharp/System/Object/Equals/equals_ref.cs +++ b/snippets/csharp/System/Object/Equals/equals_ref.cs @@ -1,38 +1,32 @@ -// +// using System; // Define a reference type that does not override Equals. public class Person { - private string personName; + private string personName; - public Person(string name) - { - this.personName = name; - } + public Person(string name) => this.personName = name; - public override string ToString() - { - return this.personName; - } + public override string ToString() => this.personName; } public class Example1 { - public static void Main() - { - Person person1a = new Person("John"); - Person person1b = person1a; - Person person2 = new Person(person1a.ToString()); + public static void Main() + { + Person person1a = new("John"); + Person person1b = person1a; + Person person2 = new(person1a.ToString()); - Console.WriteLine("Calling Equals:"); - Console.WriteLine($"person1a and person1b: {person1a.Equals(person1b)}"); - Console.WriteLine($"person1a and person2: {person1a.Equals(person2)}"); + Console.WriteLine("Calling Equals:"); + Console.WriteLine($"person1a and person1b: {person1a.Equals(person1b)}"); + Console.WriteLine($"person1a and person2: {person1a.Equals(person2)}"); - Console.WriteLine("\nCasting to an Object and calling Equals:"); - Console.WriteLine($"person1a and person1b: {((object) person1a).Equals((object) person1b)}"); - Console.WriteLine($"person1a and person2: {((object) person1a).Equals((object) person2)}"); - } + Console.WriteLine("\nCasting to an Object and calling Equals:"); + Console.WriteLine($"person1a and person1b: {((object)person1a).Equals((object)person1b)}"); + Console.WriteLine($"person1a and person2: {((object)person1a).Equals((object)person2)}"); + } } // The example displays the following output: // person1a and person1b: True diff --git a/snippets/csharp/System/Object/Equals/equals_static2.cs b/snippets/csharp/System/Object/Equals/equals_static2.cs index d355f135482..8fdc2b1bb92 100644 --- a/snippets/csharp/System/Object/Equals/equals_static2.cs +++ b/snippets/csharp/System/Object/Equals/equals_static2.cs @@ -3,60 +3,53 @@ public class RefExample { - public static void Main() - { - Dog m1 = new Dog("Alaskan Malamute"); - Dog m2 = new Dog("Alaskan Malamute"); - Dog g1 = new Dog("Great Pyrenees"); - Dog g2 = g1; - Dog d1 = new Dog("Dalmation"); - Dog n1 = null; - Dog n2 = null; + public static void Main() + { + Dog m1 = new("Alaskan Malamute"); + Dog m2 = new("Alaskan Malamute"); + Dog g1 = new("Great Pyrenees"); + Dog g2 = g1; + Dog d1 = new("Dalmatian"); + Dog n1 = null; + Dog n2 = null; - Console.WriteLine("null = null: {0}", Object.Equals(n1, n2)); - Console.WriteLine("null Reference Equals null: {0}\n", Object.ReferenceEquals(n1, n2)); + Console.WriteLine($"null = null: {object.Equals(n1, n2)}"); + Console.WriteLine($"null Reference Equals null: {object.ReferenceEquals(n1, n2)}\n"); - Console.WriteLine("{0} = {1}: {2}", g1, g2, Object.Equals(g1, g2)); - Console.WriteLine("{0} Reference Equals {1}: {2}\n", g1, g2, Object.ReferenceEquals(g1, g2)); + Console.WriteLine($"{g1} = {g2}: {object.Equals(g1, g2)}"); + Console.WriteLine($"{g1} Reference Equals {g2}: {object.ReferenceEquals(g1, g2)}\n"); - Console.WriteLine("{0} = {1}: {2}", m1, m2, Object.Equals(m1, m2)); - Console.WriteLine("{0} Reference Equals {1}: {2}\n", m1, m2, Object.ReferenceEquals(m1, m2)); + Console.WriteLine($"{m1} = {m2}: {object.Equals(m1, m2)}"); + Console.WriteLine($"{m1} Reference Equals {m2}: {object.ReferenceEquals(m1, m2)}\n"); - Console.WriteLine("{0} = {1}: {2}", m1, d1, Object.Equals(m1, d1)); - Console.WriteLine("{0} Reference Equals {1}: {2}", m1, d1, Object.ReferenceEquals(m1, d1)); - } + Console.WriteLine($"{m1} = {d1}: {object.Equals(m1, d1)}"); + Console.WriteLine($"{m1} Reference Equals {d1}: {object.ReferenceEquals(m1, d1)}"); + } } public class Dog { - // Public field. - public string Breed; + // Public field. + public string Breed; - // Class constructor. - public Dog(string dogBreed) - { - this.Breed = dogBreed; - } + // Class constructor. + public Dog(string dogBreed) => this.Breed = dogBreed; - public override bool Equals(Object obj) - { - if (obj == null || !(obj is Dog)) - return false; - else - return this.Breed == ((Dog) obj).Breed; - } + public override bool Equals(object obj) + { + if (obj == null || !(obj is Dog)) + return false; + else + return this.Breed == ((Dog)obj).Breed; + } - public override int GetHashCode() - { - return this.Breed.GetHashCode(); - } + public override int GetHashCode() => this.Breed.GetHashCode(); - public override string ToString() - { - return this.Breed; - } + public override string ToString() => this.Breed; } + // The example displays the following output: + // null = null: True // null Reference Equals null: True // @@ -66,6 +59,7 @@ public override string ToString() // Alaskan Malamute = Alaskan Malamute: True // Alaskan Malamute Reference Equals Alaskan Malamute: False // -// Alaskan Malamute = Dalmation: False -// Alaskan Malamute Reference Equals Dalmation: False +// Alaskan Malamute = Dalmatian: False +// Alaskan Malamute Reference Equals Dalmatian: False + // diff --git a/snippets/csharp/System/Object/Equals/equals_val1.cs b/snippets/csharp/System/Object/Equals/equals_val1.cs index 533e01bf098..d8bb277ceb0 100644 --- a/snippets/csharp/System/Object/Equals/equals_val1.cs +++ b/snippets/csharp/System/Object/Equals/equals_val1.cs @@ -1,20 +1,20 @@ -using System; +using System; public class Example2 { - public static void Main() - { - // - byte value1 = 12; - int value2 = 12; + public static void Main() + { + // + byte value1 = 12; + int value2 = 12; - object object1 = value1; - object object2 = value2; + object object1 = value1; + object object2 = value2; - Console.WriteLine($"{object1} ({object1.GetType().Name}) = {object2} ({object2.GetType().Name}): {object1.Equals(object2)}"); + Console.WriteLine($"{object1} ({object1.GetType().Name}) = {object2} ({object2.GetType().Name}): {object1.Equals(object2)}"); - // The example displays the following output: - // 12 (Byte) = 12 (Int32): False - // - } + // The example displays the following output: + // 12 (Byte) = 12 (Int32): False + // + } } diff --git a/snippets/csharp/System/Object/Equals/equals_val2.cs b/snippets/csharp/System/Object/Equals/equals_val2.cs index 2c128e53757..fa6ab1ce4cd 100644 --- a/snippets/csharp/System/Object/Equals/equals_val2.cs +++ b/snippets/csharp/System/Object/Equals/equals_val2.cs @@ -4,32 +4,26 @@ // Define a value type that does not override Equals. public struct Person3 { - private string personName; + private string personName; - public Person3(string name) - { - this.personName = name; - } + public Person3(string name) => this.personName = name; - public override string ToString() - { - return this.personName; - } + public override string ToString() => this.personName; } public struct Example3 { - public static void Main() - { - Person3 person1 = new Person3("John"); - Person3 person2 = new Person3("John"); + public static void Main() + { + Person3 person1 = new("John"); + Person3 person2 = new("John"); - Console.WriteLine("Calling Equals:"); - Console.WriteLine(person1.Equals(person2)); + Console.WriteLine("Calling Equals:"); + Console.WriteLine(person1.Equals(person2)); - Console.WriteLine("\nCasting to an Object and calling Equals:"); - Console.WriteLine(((object) person1).Equals((object) person2)); - } + Console.WriteLine("\nCasting to an Object and calling Equals:"); + Console.WriteLine(((object)person1).Equals((object)person2)); + } } // The example displays the following output: // Calling Equals: diff --git a/snippets/csharp/System/Object/Equals/equalsoverride.cs b/snippets/csharp/System/Object/Equals/equalsoverride.cs index b8da28c242f..7330a16c3e3 100644 --- a/snippets/csharp/System/Object/Equals/equalsoverride.cs +++ b/snippets/csharp/System/Object/Equals/equalsoverride.cs @@ -3,39 +3,36 @@ // public class Person6 { - private string idNumber; - private string personName; + private string idNumber; + private string personName; - public Person6(string name, string id) - { - this.personName = name; - this.idNumber = id; - } + public Person6(string name, string id) + { + this.personName = name; + this.idNumber = id; + } - public override bool Equals(Object obj) - { - Person6 personObj = obj as Person6; - if (personObj == null) - return false; - else - return idNumber.Equals(personObj.idNumber); - } + public override bool Equals(object obj) + { + Person6 personObj = obj as Person6; + if (personObj == null) + return false; + else + return idNumber.Equals(personObj.idNumber); + } - public override int GetHashCode() - { - return this.idNumber.GetHashCode(); - } + public override int GetHashCode() => this.idNumber.GetHashCode(); } public class Example6 { - public static void Main() - { - Person6 p1 = new Person6("John", "63412895"); - Person6 p2 = new Person6("Jack", "63412895"); - Console.WriteLine(p1.Equals(p2)); - Console.WriteLine(Object.Equals(p1, p2)); - } + public static void Main() + { + Person6 p1 = new("John", "63412895"); + Person6 p2 = new("Jack", "63412895"); + Console.WriteLine(p1.Equals(p2)); + Console.WriteLine(object.Equals(p1, p2)); + } } // The example displays the following output: // True diff --git a/snippets/csharp/System/Object/Equals/equalssb1.cs b/snippets/csharp/System/Object/Equals/equalssb1.cs index b51fd0e2a2a..368ba138c41 100644 --- a/snippets/csharp/System/Object/Equals/equalssb1.cs +++ b/snippets/csharp/System/Object/Equals/equalssb1.cs @@ -1,21 +1,21 @@ -// +// using System; using System.Text; public class Example5 { - public static void Main() - { - StringBuilder sb1 = new StringBuilder("building a string..."); - StringBuilder sb2 = new StringBuilder("building a string..."); + public static void Main() + { + StringBuilder sb1 = new("building a string..."); + StringBuilder sb2 = new("building a string..."); - Console.WriteLine($"sb1.Equals(sb2): {sb1.Equals(sb2)}"); - Console.WriteLine($"((Object) sb1).Equals(sb2): {((Object) sb1).Equals(sb2)}"); - Console.WriteLine($"Object.Equals(sb1, sb2): {Object.Equals(sb1, sb2)}"); + Console.WriteLine($"sb1.Equals(sb2): {sb1.Equals(sb2)}"); + Console.WriteLine($"((Object) sb1).Equals(sb2): {((object)sb1).Equals(sb2)}"); + Console.WriteLine($"Object.Equals(sb1, sb2): {object.Equals(sb1, sb2)}"); - Object sb3 = new StringBuilder("building a string..."); - Console.WriteLine($"\nsb3.Equals(sb2): {sb3.Equals(sb2)}"); - } + object sb3 = new StringBuilder("building a string..."); + Console.WriteLine($"\nsb3.Equals(sb2): {sb3.Equals(sb2)}"); + } } // The example displays the following output: // sb1.Equals(sb2): True diff --git a/snippets/csharp/System/Object/Finalize/finalize1.cs b/snippets/csharp/System/Object/Finalize/finalize1.cs index 2179ebbccb4..7f8bffb1641 100644 --- a/snippets/csharp/System/Object/Finalize/finalize1.cs +++ b/snippets/csharp/System/Object/Finalize/finalize1.cs @@ -4,36 +4,31 @@ public class ExampleClass { - Stopwatch sw; + Stopwatch sw; - public ExampleClass() - { - sw = Stopwatch.StartNew(); - Console.WriteLine("Instantiated object"); - } + public ExampleClass() + { + sw = Stopwatch.StartNew(); + Console.WriteLine("Instantiated object"); + } - public void ShowDuration() - { - Console.WriteLine("This instance of {0} has been in existence for {1}", - this, sw.Elapsed); - } + public void ShowDuration() => Console.WriteLine($"This instance of {this} has been in existence for {sw.Elapsed}"); - ~ExampleClass() - { - Console.WriteLine("Finalizing object"); - sw.Stop(); - Console.WriteLine("This instance of {0} has been in existence for {1}", - this, sw.Elapsed); - } + ~ExampleClass() + { + Console.WriteLine("Finalizing object"); + sw.Stop(); + Console.WriteLine($"This instance of {this} has been in existence for {sw.Elapsed}"); + } } public class Demo { - public static void Main() - { - ExampleClass ex = new ExampleClass(); - ex.ShowDuration(); - } + public static void Main() + { + ExampleClass ex = new(); + ex.ShowDuration(); + } } // The example displays output like the following: // Instantiated object diff --git a/snippets/csharp/System/Object/Finalize/finalize_safe.cs b/snippets/csharp/System/Object/Finalize/finalize_safe.cs index 3206babdc10..e21fdb54061 100644 --- a/snippets/csharp/System/Object/Finalize/finalize_safe.cs +++ b/snippets/csharp/System/Object/Finalize/finalize_safe.cs @@ -51,7 +51,7 @@ public FileAssociationInfo(string fileExtension) if (retVal != ERROR_SUCCESS) throw new Win32Exception(retVal); // Instantiate the first SafeRegistryHandle. - hExtHandle = new SafeRegistryHandle(hExtension, true); + hExtHandle = new(hExtension, true); string appId = new(' ', MAX_PATH); uint appIdLength = (uint)appId.Length; @@ -83,7 +83,7 @@ public FileAssociationInfo(string fileExtension) throw new Win32Exception(retVal); // Instantiate the second SafeRegistryHandle. - hAppIdHandle = new SafeRegistryHandle(hAppId, true); + hAppIdHandle = new(hAppId, true); // Get the executable name for this file type. string exePath = new(' ', MAX_PATH); @@ -117,14 +117,14 @@ public FileAssociationInfo(string fileExtension) public string Open { - get { return openCmd; } + get => openCmd; set { if (hAppIdHandle.IsInvalid | hAppIdHandle.IsClosed) throw new InvalidOperationException("Cannot write to registry key."); if (!File.Exists(value)) { - string message = string.Format("'{0}' does not exist", value); + string message = $"'{value}' does not exist"; throw new FileNotFoundException(message); } string cmd = value + " %1"; diff --git a/snippets/csharp/System/Object/GetHashCode/direct1.cs b/snippets/csharp/System/Object/GetHashCode/direct1.cs index 666b1dff966..81d36c5d115 100644 --- a/snippets/csharp/System/Object/GetHashCode/direct1.cs +++ b/snippets/csharp/System/Object/GetHashCode/direct1.cs @@ -3,48 +3,37 @@ public struct Number { - private int n; + private int n; - public Number(int value) - { - n = value; - } + public Number(int value) => n = value; - public int Value - { - get { return n; } - } + public int Value => n; - public override bool Equals(Object obj) - { - if (obj == null || ! (obj is Number)) - return false; - else - return n == ((Number) obj).n; - } + public override bool Equals(object obj) + { + if (obj == null || !(obj is Number)) + return false; + else + return n == ((Number)obj).n; + } - public override int GetHashCode() - { - return n; - } + public override int GetHashCode() => n; - public override string ToString() - { - return n.ToString(); - } + public override string ToString() => n.ToString(); } public class Example1 { - public static void Main() - { - Random rnd = new Random(); - for (int ctr = 0; ctr <= 9; ctr++) { - int randomN = rnd.Next(Int32.MinValue, Int32.MaxValue); - Number n = new Number(randomN); - Console.WriteLine("n = {0,12}, hash code = {1,12}", n, n.GetHashCode()); - } - } + public static void Main() + { + Random rnd = new(); + for (int ctr = 0; ctr <= 9; ctr++) + { + int randomN = rnd.Next(int.MinValue, int.MaxValue); + Number n = new(randomN); + Console.WriteLine($"n = {n,12}, hash code = {n.GetHashCode(),12}"); + } + } } // The example displays output like the following: // n = -634398368, hash code = -634398368 diff --git a/snippets/csharp/System/Object/GetHashCode/shift1.cs b/snippets/csharp/System/Object/GetHashCode/shift1.cs index c9f7c4431f9..26ab57852b9 100644 --- a/snippets/csharp/System/Object/GetHashCode/shift1.cs +++ b/snippets/csharp/System/Object/GetHashCode/shift1.cs @@ -8,22 +8,19 @@ public struct Point public Point(int x, int y) { - this.x = x; - this.y = y; + this.x = x; + this.y = y; } - public override bool Equals(Object obj) + public override bool Equals(object obj) { - if (!(obj is Point)) return false; + if (!(obj is Point)) return false; - Point p = (Point) obj; - return x == p.x & y == p.y; + Point p = (Point)obj; + return x == p.x & y == p.y; } - public override int GetHashCode() - { - return ShiftAndWrap(x.GetHashCode(), 2) ^ y.GetHashCode(); - } + public override int GetHashCode() => ShiftAndWrap(x.GetHashCode(), 2) ^ y.GetHashCode(); private int ShiftAndWrap(int value, int positions) { @@ -40,14 +37,14 @@ private int ShiftAndWrap(int value, int positions) public class Example2 { - public static void Main() - { - Point pt = new Point(5, 8); + public static void Main() + { + Point pt = new(5, 8); Console.WriteLine(pt.GetHashCode()); - pt = new Point(8, 5); + pt = new(8, 5); Console.WriteLine(pt.GetHashCode()); - } + } } // The example displays the following output: // 28 @@ -56,7 +53,7 @@ public static void Main() public class Utility { - // + // public int ShiftAndWrap(int value, int positions) { positions = positions & 0x1F; @@ -68,5 +65,5 @@ public int ShiftAndWrap(int value, int positions) // Shift and wrap the discarded bits. return BitConverter.ToInt32(BitConverter.GetBytes((number << positions) | wrapped), 0); } - // + // } diff --git a/snippets/csharp/System/Object/GetHashCode/xor1.cs b/snippets/csharp/System/Object/GetHashCode/xor1.cs index a37b2efa1b4..d37ec11bd41 100644 --- a/snippets/csharp/System/Object/GetHashCode/xor1.cs +++ b/snippets/csharp/System/Object/GetHashCode/xor1.cs @@ -9,34 +9,31 @@ public struct Point2 public Point2(int x, int y) { - this.x = x; - this.y = y; + this.x = x; + this.y = y; } - public override bool Equals(Object obj) + public override bool Equals(object obj) { - if (! (obj is Point2)) return false; + if (!(obj is Point2)) return false; - Point2 p = (Point2) obj; - return x == p.x & y == p.y; + Point2 p = (Point2)obj; + return x == p.x & y == p.y; } - public override int GetHashCode() - { - return x ^ y; - } + public override int GetHashCode() => x ^ y; } public class Example3 { - public static void Main() - { - Point2 pt = new Point2(5, 8); - Console.WriteLine(pt.GetHashCode()); + public static void Main() + { + Point2 pt = new(5, 8); + Console.WriteLine(pt.GetHashCode()); - pt = new Point2(8, 5); - Console.WriteLine(pt.GetHashCode()); - } + pt = new(8, 5); + Console.WriteLine(pt.GetHashCode()); + } } // The example displays the following output: // 13 diff --git a/snippets/csharp/System/Object/GetHashCode/xor2.cs b/snippets/csharp/System/Object/GetHashCode/xor2.cs index d8ad45dd2f9..bac63c34bf7 100644 --- a/snippets/csharp/System/Object/GetHashCode/xor2.cs +++ b/snippets/csharp/System/Object/GetHashCode/xor2.cs @@ -8,39 +8,36 @@ public struct Point3 public Point3(int x, int y) { - this.x = x; - this.y = y; + this.x = x; + this.y = y; } - public override bool Equals(Object obj) + public override bool Equals(object obj) { if (obj is Point3) { - Point3 p = (Point3) obj; + Point3 p = (Point3)obj; return x == p.x & y == p.y; } else { return false; - } + } } - public override int GetHashCode() - { - return HashCode.Combine(x, y); - } + public override int GetHashCode() => HashCode.Combine(x, y); } public class Example { - public static void Main() - { - Point3 pt = new Point3(5, 8); + public static void Main() + { + Point3 pt = new(5, 8); Console.WriteLine(pt.GetHashCode()); - pt = new Point3(8, 5); + pt = new(8, 5); Console.WriteLine(pt.GetHashCode()); - } + } } // The example displays output similar to the following. // Note: HashCode.Combine results are not stable across .NET versions. diff --git a/snippets/csharp/System/Object/GetType/GetTypeEx2.cs b/snippets/csharp/System/Object/GetType/GetTypeEx2.cs index 1c3edbca961..7c6d5a6b520 100644 --- a/snippets/csharp/System/Object/GetType/GetTypeEx2.cs +++ b/snippets/csharp/System/Object/GetType/GetTypeEx2.cs @@ -1,36 +1,36 @@ using System; -public class Example +public class ObjectGetTypeExample2 { - public static void Main() - { - // - object[] values = { (int) 12, (long) 10653, (byte) 12, (sbyte) -5, + public static void Run() + { + // + object[] values = { (int) 12, (long) 10653, (byte) 12, (sbyte) -5, 16.3, "string" }; - foreach (var value in values) { - Type t = value.GetType(); - if (t.Equals(typeof(byte))) - Console.WriteLine("{0} is an unsigned byte.", value); - else if (t.Equals(typeof(sbyte))) - Console.WriteLine("{0} is a signed byte.", value); - else if (t.Equals(typeof(int))) - Console.WriteLine("{0} is a 32-bit integer.", value); - else if (t.Equals(typeof(long))) - Console.WriteLine("{0} is a 64-bit integer.", value); - else if (t.Equals(typeof(double))) - Console.WriteLine("{0} is a double-precision floating point.", - value); - else - Console.WriteLine("'{0}' is another data type.", value); - } + foreach (object value in values) + { + Type t = value.GetType(); + if (t.Equals(typeof(byte))) + Console.WriteLine($"{value} is an unsigned byte."); + else if (t.Equals(typeof(sbyte))) + Console.WriteLine($"{value} is a signed byte."); + else if (t.Equals(typeof(int))) + Console.WriteLine($"{value} is a 32-bit integer."); + else if (t.Equals(typeof(long))) + Console.WriteLine($"{value} is a 64-bit integer."); + else if (t.Equals(typeof(double))) + Console.WriteLine($"{value} is a double-precision floating point."); + else + Console.WriteLine($"'{value}' is another data type."); + } - // The example displays the following output: - // 12 is a 32-bit integer. - // 10653 is a 64-bit integer. - // 12 is an unsigned byte. - // -5 is a signed byte. - // 16.3 is a double-precision floating point. - // 'string' is another data type. - // - } + // The example displays the following output: + // 12 is a 32-bit integer. + // 10653 is a 64-bit integer. + // 12 is an unsigned byte. + // -5 is a signed byte. + // 16.3 is a double-precision floating point. + // 'string' is another data type. + // + } } diff --git a/snippets/csharp/System/Object/GetType/Program.cs b/snippets/csharp/System/Object/GetType/Program.cs new file mode 100644 index 00000000000..5fd825006c1 --- /dev/null +++ b/snippets/csharp/System/Object/GetType/Program.cs @@ -0,0 +1,3 @@ +Test.Run(); +ObjectGetTypeExample1.Run(); +ObjectGetTypeExample2.Run(); diff --git a/snippets/csharp/System/Object/GetType/Project.csproj b/snippets/csharp/System/Object/GetType/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/Object/GetType/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/Object/GetType/gettype.cs b/snippets/csharp/System/Object/GetType/gettype.cs index 6979a2f7601..7215196251f 100644 --- a/snippets/csharp/System/Object/GetType/gettype.cs +++ b/snippets/csharp/System/Object/GetType/gettype.cs @@ -1,26 +1,28 @@ // using System; -public class MyBaseClass { +public class MyBaseClass +{ } -public class MyDerivedClass: MyBaseClass { +public class MyDerivedClass : MyBaseClass +{ } public class Test { - public static void Main() - { - MyBaseClass myBase = new MyBaseClass(); - MyDerivedClass myDerived = new MyDerivedClass(); - object o = myDerived; - MyBaseClass b = myDerived; + public static void Run() + { + MyBaseClass myBase = new(); + MyDerivedClass myDerived = new(); + object o = myDerived; + MyBaseClass b = myDerived; - Console.WriteLine("mybase: Type is {0}", myBase.GetType()); - Console.WriteLine("myDerived: Type is {0}", myDerived.GetType()); - Console.WriteLine("object o = myDerived: Type is {0}", o.GetType()); - Console.WriteLine("MyBaseClass b = myDerived: Type is {0}", b.GetType()); - } + Console.WriteLine($"mybase: Type is {myBase.GetType()}"); + Console.WriteLine($"myDerived: Type is {myDerived.GetType()}"); + Console.WriteLine($"object o = myDerived: Type is {o.GetType()}"); + Console.WriteLine($"MyBaseClass b = myDerived: Type is {b.GetType()}"); + } } // The example displays the following output: // mybase: Type is MyBaseClass diff --git a/snippets/csharp/System/Object/GetType/gettype1.cs b/snippets/csharp/System/Object/GetType/gettype1.cs index f2774e02f1d..5f5f0a7ffc6 100644 --- a/snippets/csharp/System/Object/GetType/gettype1.cs +++ b/snippets/csharp/System/Object/GetType/gettype1.cs @@ -1,22 +1,20 @@ using System; -public class Example +public class ObjectGetTypeExample1 { - public static void Main() - { - // - int n1 = 12; - int n2 = 82; - long n3 = 12; + public static void Run() + { + // + int n1 = 12; + int n2 = 82; + long n3 = 12; - Console.WriteLine("n1 and n2 are the same type: {0}", - Object.ReferenceEquals(n1.GetType(), n2.GetType())); - Console.WriteLine("n1 and n3 are the same type: {0}", - Object.ReferenceEquals(n1.GetType(), n3.GetType())); + Console.WriteLine($"n1 and n2 are the same type: {object.ReferenceEquals(n1.GetType(), n2.GetType())}"); + Console.WriteLine($"n1 and n3 are the same type: {object.ReferenceEquals(n1.GetType(), n3.GetType())}"); - // The example displays the following output: - // n1 and n2 are the same type: True - // n1 and n3 are the same type: False - // - } + // The example displays the following output: + // n1 and n2 are the same type: True + // n1 and n3 are the same type: False + // + } } diff --git a/snippets/csharp/System/Object/MemberwiseClone/memberwiseclone1.cs b/snippets/csharp/System/Object/MemberwiseClone/memberwiseclone1.cs index d1e01ad251a..7382e05a1a9 100644 --- a/snippets/csharp/System/Object/MemberwiseClone/memberwiseclone1.cs +++ b/snippets/csharp/System/Object/MemberwiseClone/memberwiseclone1.cs @@ -5,10 +5,7 @@ public class IdInfo { public int IdNumber; - public IdInfo(int IdNumber) - { - this.IdNumber = IdNumber; - } + public IdInfo(int IdNumber) => this.IdNumber = IdNumber; } public class Person @@ -17,15 +14,12 @@ public class Person public string Name; public IdInfo IdInfo; - public Person ShallowCopy() - { - return (Person)MemberwiseClone(); - } + public Person ShallowCopy() => (Person)MemberwiseClone(); public Person DeepCopy() { Person other = (Person)MemberwiseClone(); - other.IdInfo = new IdInfo(IdInfo.IdNumber); + other.IdInfo = new(IdInfo.IdNumber); return other; } } @@ -39,7 +33,7 @@ public static void Main() { Age = 42, Name = "Sam", - IdInfo = new IdInfo(6565) + IdInfo = new(6565) }; // Perform a shallow copy of p1 and assign it to p2. @@ -83,7 +77,7 @@ public static void DisplayValues(Person p) } /* The example displays the following output: - * + * * Original values of p1 and p2: p1 instance values: Name: Sam, Age: 42 diff --git a/snippets/csharp/System/Object/Overview/ObjectX.cs b/snippets/csharp/System/Object/Overview/ObjectX.cs index 9fdea2c6e6b..21a694f6ef0 100644 --- a/snippets/csharp/System/Object/Overview/ObjectX.cs +++ b/snippets/csharp/System/Object/Overview/ObjectX.cs @@ -1,4 +1,4 @@ -//Types:System.Object +//Types:System.Object // using System; @@ -20,33 +20,24 @@ public override bool Equals(object obj) if (obj.GetType() != this.GetType()) return false; // Return true if x and y fields match. - var other = (Point) obj; + var other = (Point)obj; return (this.x == other.x) && (this.y == other.y); } // // // Return the XOR of the x and y fields. - public override int GetHashCode() - { - return x ^ y; - } + public override int GetHashCode() => x ^ y; // // // Return the point's value as a string. - public override String ToString() - { - return $"({x}, {y})"; - } + public override string ToString() => $"({x}, {y})"; // // // Return a copy of this point object by making a simple field copy. - public Point Copy() - { - return (Point) this.MemberwiseClone(); - } + public Point Copy() => (Point)this.MemberwiseClone(); // } @@ -55,7 +46,7 @@ public sealed class App static void Main() { // Construct a Point object. - var p1 = new Point(1,2); + var p1 = new Point(1, 2); // Make another Point object that is a copy of the first. var p2 = p1.Copy(); @@ -63,18 +54,18 @@ static void Main() // Make another variable that references the first Point object. var p3 = p1; - // + // // The line below displays false because p1 and p2 refer to two different objects. - Console.WriteLine(Object.ReferenceEquals(p1, p2)); + Console.WriteLine(object.ReferenceEquals(p1, p2)); // // // The line below displays true because p1 and p2 refer to two different objects that have the same value. - Console.WriteLine(Object.Equals(p1, p2)); + Console.WriteLine(object.Equals(p1, p2)); // // The line below displays true because p1 and p3 refer to one object. - Console.WriteLine(Object.ReferenceEquals(p1, p3)); + Console.WriteLine(object.ReferenceEquals(p1, p3)); // // The line below displays: p1's value is: (1, 2) diff --git a/snippets/csharp/System/Object/ReferenceEquals/Program.cs b/snippets/csharp/System/Object/ReferenceEquals/Program.cs new file mode 100644 index 00000000000..c5491b97f1d --- /dev/null +++ b/snippets/csharp/System/Object/ReferenceEquals/Program.cs @@ -0,0 +1,3 @@ +MyClass.Run(); +ObjectReferenceEqualsExample1.Run(); +ObjectReferenceEqualsExample2.Run(); diff --git a/snippets/csharp/System/Object/ReferenceEquals/Project.csproj b/snippets/csharp/System/Object/ReferenceEquals/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/Object/ReferenceEquals/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/Object/ReferenceEquals/referenceequals.cs b/snippets/csharp/System/Object/ReferenceEquals/referenceequals.cs index ce5acd6f484..4e15698ca94 100644 --- a/snippets/csharp/System/Object/ReferenceEquals/referenceequals.cs +++ b/snippets/csharp/System/Object/ReferenceEquals/referenceequals.cs @@ -1,22 +1,23 @@ using System; -class MyClass { +class MyClass +{ + public static void Run() + { + // + object o = null; + object p = null; + object q = new(); - static void Main() { - // - object o = null; - object p = null; - object q = new Object(); + Console.WriteLine(object.ReferenceEquals(o, p)); + p = q; + Console.WriteLine(object.ReferenceEquals(p, q)); + Console.WriteLine(object.ReferenceEquals(o, p)); - Console.WriteLine(Object.ReferenceEquals(o, p)); - p = q; - Console.WriteLine(Object.ReferenceEquals(p, q)); - Console.WriteLine(Object.ReferenceEquals(o, p)); - - // This code produces the following output: - // True - // True - // False - // - } + // This code produces the following output: + // True + // True + // False + // + } } diff --git a/snippets/csharp/System/Object/ReferenceEquals/referenceequals4.cs b/snippets/csharp/System/Object/ReferenceEquals/referenceequals4.cs index 9c3204be773..c6ede57640a 100644 --- a/snippets/csharp/System/Object/ReferenceEquals/referenceequals4.cs +++ b/snippets/csharp/System/Object/ReferenceEquals/referenceequals4.cs @@ -1,17 +1,17 @@ using System; -public class Example +public class ObjectReferenceEqualsExample1 { - public static void Main() - { - // - int int1 = 3; - Console.WriteLine(Object.ReferenceEquals(int1, int1)); - Console.WriteLine(int1.GetType().IsValueType); + public static void Run() + { + // + int int1 = 3; + Console.WriteLine(object.ReferenceEquals(int1, int1)); + Console.WriteLine(int1.GetType().IsValueType); - // The example displays the following output: - // False - // True - // - } + // The example displays the following output: + // False + // True + // + } } diff --git a/snippets/csharp/System/Object/ReferenceEquals/referenceequalsa.cs b/snippets/csharp/System/Object/ReferenceEquals/referenceequalsa.cs index 82eb588bce7..1073ab78bd1 100644 --- a/snippets/csharp/System/Object/ReferenceEquals/referenceequalsa.cs +++ b/snippets/csharp/System/Object/ReferenceEquals/referenceequalsa.cs @@ -1,28 +1,26 @@ using System; -public class Example +public class ObjectReferenceEqualsExample2 { - public static void Main() - { - // - String s1 = "String1"; - String s2 = "String1"; - Console.WriteLine("s1 = s2: {0}", Object.ReferenceEquals(s1, s2)); - Console.WriteLine("{0} interned: {1}", s1, - String.IsNullOrEmpty(String.IsInterned(s1)) ? "No" : "Yes"); + public static void Run() + { + // + string s1 = "String1"; + string s2 = "String1"; + Console.WriteLine($"s1 = s2: {object.ReferenceEquals(s1, s2)}"); + Console.WriteLine($"{s1} interned: {(string.IsNullOrEmpty(string.IsInterned(s1)) ? "No" : "Yes")}"); - String suffix = "A"; - String s3 = "String" + suffix; - String s4 = "String" + suffix; - Console.WriteLine("s3 = s4: {0}", Object.ReferenceEquals(s3, s4)); - Console.WriteLine("{0} interned: {1}", s3, - String.IsNullOrEmpty(String.IsInterned(s3)) ? "No" : "Yes"); + string suffix = "A"; + string s3 = "String" + suffix; + string s4 = "String" + suffix; + Console.WriteLine($"s3 = s4: {object.ReferenceEquals(s3, s4)}"); + Console.WriteLine($"{s3} interned: {(string.IsNullOrEmpty(string.IsInterned(s3)) ? "No" : "Yes")}"); - // The example displays the following output: - // s1 = s2: True - // String1 interned: Yes - // s3 = s4: False - // StringA interned: No - // - } + // The example displays the following output: + // s1 = s2: True + // String1 interned: Yes + // s3 = s4: False + // StringA interned: No + // + } } diff --git a/snippets/csharp/System/Object/ToString/array1.cs b/snippets/csharp/System/Object/ToString/array1.cs index cf7b237be0c..6ed34b9f10a 100644 --- a/snippets/csharp/System/Object/ToString/array1.cs +++ b/snippets/csharp/System/Object/ToString/array1.cs @@ -3,18 +3,18 @@ public class Example { - public static void Main() - { - // - int[] values = { 1, 2, 4, 8, 16, 32, 64, 128 }; - Console.WriteLine(values.ToString()); + public static void Main() + { + // + int[] values = { 1, 2, 4, 8, 16, 32, 64, 128 }; + Console.WriteLine(values.ToString()); - List list = new List(values); - Console.WriteLine(list.ToString()); + List list = new(values); + Console.WriteLine(list.ToString()); - // The example displays the following output: - // System.Int32[] - // System.Collections.Generic.List`1[System.Int32] - // - } + // The example displays the following output: + // System.Int32[] + // System.Collections.Generic.List`1[System.Int32] + // + } } diff --git a/snippets/csharp/System/Object/ToString/customize1.cs b/snippets/csharp/System/Object/ToString/customize1.cs index 6a8593a7b6c..d7fc7c42bb3 100644 --- a/snippets/csharp/System/Object/ToString/customize1.cs +++ b/snippets/csharp/System/Object/ToString/customize1.cs @@ -4,34 +4,33 @@ public class CList : List { - public CList(IEnumerable collection) : base(collection) - { } + public CList(IEnumerable collection) : base(collection) + { } - public CList() : base() - {} + public CList() : base() + { } - public override string ToString() - { - string retVal = string.Empty; - foreach (T item in this) { - if (string.IsNullOrEmpty(retVal)) - retVal += item.ToString(); - else - retVal += string.Format(", {0}", item); - } - return retVal; - } + public override string ToString() + { + string retVal = string.Empty; + foreach (T item in this) + { + if (string.IsNullOrEmpty(retVal)) + retVal += item.ToString(); + else + retVal += $", {item}"; + } + return retVal; + } } public class Example2 { - public static void Main() - { - var list2 = new CList(); - list2.Add(1000); - list2.Add(2000); - Console.WriteLine(list2.ToString()); - } + public static void Main() + { + var list2 = new CList() { 1000, 2000 }; + Console.WriteLine(list2.ToString()); + } } // The example displays the following output: // 1000, 2000 diff --git a/snippets/csharp/System/Object/ToString/customize2.cs b/snippets/csharp/System/Object/ToString/customize2.cs index bc7495d7690..3161e420315 100644 --- a/snippets/csharp/System/Object/ToString/customize2.cs +++ b/snippets/csharp/System/Object/ToString/customize2.cs @@ -4,42 +4,43 @@ public static class StringExtensions { - public static string ToString2(this List l) - { - string retVal = string.Empty; - foreach (T item in l) - retVal += string.Format("{0}{1}", string.IsNullOrEmpty(retVal) ? - "" : ", ", - item); - return string.IsNullOrEmpty(retVal) ? "{}" : "{ " + retVal + " }"; - } + public static string ToString2(this List l) + { + string retVal = string.Empty; + foreach (T item in l) + retVal += $"{(string.IsNullOrEmpty(retVal) ? + "" : ", ")}{item}"; + return string.IsNullOrEmpty(retVal) ? "{}" : "{ " + retVal + " }"; + } - public static string ToString(this List l, string fmt) - { - string retVal = string.Empty; - foreach (T item in l) { - IFormattable ifmt = item as IFormattable; - if (ifmt != null) - retVal += string.Format("{0}{1}", - string.IsNullOrEmpty(retVal) ? - "" : ", ", ifmt.ToString(fmt, null)); - else - retVal += ToString2(l); - } - return string.IsNullOrEmpty(retVal) ? "{}" : "{ " + retVal + " }"; - } + public static string ToString(this List l, string fmt) + { + string retVal = string.Empty; + foreach (T item in l) + { + IFormattable ifmt = item as IFormattable; + if (ifmt != null) + retVal += $"{(string.IsNullOrEmpty(retVal) ? + "" : ", ")}{ifmt.ToString(fmt, null)}"; + else + retVal += ToString2(l); + } + return string.IsNullOrEmpty(retVal) ? "{}" : "{ " + retVal + " }"; + } } public class Example3 { - public static void Main() - { - List list = new List(); - list.Add(1000); - list.Add(2000); - Console.WriteLine(list.ToString2()); - Console.WriteLine(list.ToString("N0")); - } + public static void Main() + { + List list = new() + { + 1000, + 2000 + }; + Console.WriteLine(list.ToString2()); + Console.WriteLine(list.ToString("N0")); + } } // The example displays the following output: // { 1000, 2000 } diff --git a/snippets/csharp/System/Object/ToString/tostring1.cs b/snippets/csharp/System/Object/ToString/tostring1.cs index 4651e461af2..ffe03decb9e 100644 --- a/snippets/csharp/System/Object/ToString/tostring1.cs +++ b/snippets/csharp/System/Object/ToString/tostring1.cs @@ -2,14 +2,14 @@ public class Example4 { - public static void Main() - { - // - Object obj = new Object(); - Console.WriteLine(obj.ToString()); + public static void Main() + { + // + object obj = new(); + Console.WriteLine(obj.ToString()); - // The example displays the following output: - // System.Object - // - } + // The example displays the following output: + // System.Object + // + } } diff --git a/snippets/csharp/System/Object/ToString/tostring2.cs b/snippets/csharp/System/Object/ToString/tostring2.cs index 651cd69732c..d4daca9616b 100644 --- a/snippets/csharp/System/Object/ToString/tostring2.cs +++ b/snippets/csharp/System/Object/ToString/tostring2.cs @@ -4,18 +4,18 @@ namespace Examples { - public class Object1 - { - } + public class Object1 + { + } } public class Example5 { - public static void Main() - { - object obj1 = new Object1(); - Console.WriteLine(obj1.ToString()); - } + public static void Main() + { + object obj1 = new Object1(); + Console.WriteLine(obj1.ToString()); + } } // The example displays the following output: // Examples.Object1 diff --git a/snippets/csharp/System/Object/ToString/tostring3.cs b/snippets/csharp/System/Object/ToString/tostring3.cs index 8752cac0b47..b9101a8114f 100644 --- a/snippets/csharp/System/Object/ToString/tostring3.cs +++ b/snippets/csharp/System/Object/ToString/tostring3.cs @@ -3,26 +3,20 @@ public class Object2 { - private object value; + private object value; - public Object2(object value) - { - this.value = value; - } + public Object2(object value) => this.value = value; - public override string ToString() - { - return base.ToString() + ": " + value.ToString(); - } + public override string ToString() => base.ToString() + ": " + value.ToString(); } public class Example6 { - public static void Main() - { - Object2 obj2 = new Object2('a'); - Console.WriteLine(obj2.ToString()); - } + public static void Main() + { + Object2 obj2 = new('a'); + Console.WriteLine(obj2.ToString()); + } } // The example displays the following output: // Object2: a diff --git a/snippets/csharp/System/Object/ToString/tostringoverload1.cs b/snippets/csharp/System/Object/ToString/tostringoverload1.cs index 83cf6df70ad..81a7c57be79 100644 --- a/snippets/csharp/System/Object/ToString/tostringoverload1.cs +++ b/snippets/csharp/System/Object/ToString/tostringoverload1.cs @@ -3,71 +3,60 @@ public class Automobile { - private int _doors; - private string _cylinders; - private int _year; - private string _model; + private int _doors; + private string _cylinders; + private int _year; + private string _model; - public Automobile(string model, int year , int doors, - string cylinders) - { - _model = model; - _year = year; - _doors = doors; - _cylinders = cylinders; - } + public Automobile(string model, int year, int doors, + string cylinders) + { + _model = model; + _year = year; + _doors = doors; + _cylinders = cylinders; + } - public int Doors - { get { return _doors; } } + public int Doors => _doors; - public string Model - { get { return _model; } } + public string Model => _model; - public int Year - { get { return _year; } } + public int Year => _year; - public string Cylinders - { get { return _cylinders; } } + public string Cylinders => _cylinders; - public override string ToString() - { - return ToString("G"); - } + public override string ToString() => ToString("G"); - public string ToString(string fmt) - { - if (string.IsNullOrEmpty(fmt)) - fmt = "G"; + public string ToString(string fmt) + { + if (string.IsNullOrEmpty(fmt)) + fmt = "G"; - switch (fmt.ToUpperInvariant()) - { - case "G": - return string.Format("{0} {1}", _year, _model); - case "D": - return string.Format("{0} {1}, {2} dr.", - _year, _model, _doors); - case "C": - return string.Format("{0} {1}, {2}", - _year, _model, _cylinders); - case "A": - return string.Format("{0} {1}, {2} dr. {3}", - _year, _model, _doors, _cylinders); - default: - string msg = string.Format("'{0}' is an invalid format string", - fmt); - throw new ArgumentException(msg); - } - } + switch (fmt.ToUpperInvariant()) + { + case "G": + return $"{_year} {_model}"; + case "D": + return $"{_year} {_model}, {_doors} dr."; + case "C": + return $"{_year} {_model}, {_cylinders}"; + case "A": + return $"{_year} {_model}, {_doors} dr. {_cylinders}"; + default: + string msg = $"'{fmt}' is an invalid format string"; + throw new ArgumentException(msg); + } + } } public class Example7 { - public static void Main() - { - var auto = new Automobile("Lynx", 2016, 4, "V8"); - Console.WriteLine(auto.ToString()); - Console.WriteLine(auto.ToString("A")); - } + public static void Main() + { + var auto = new Automobile("Lynx", 2016, 4, "V8"); + Console.WriteLine(auto.ToString()); + Console.WriteLine(auto.ToString("A")); + } } // The example displays the following output: // 2016 Lynx diff --git a/snippets/csharp/System/Object/ToString/tostringoverload2.cs b/snippets/csharp/System/Object/ToString/tostringoverload2.cs index cce98befd3e..75a86b2fbfe 100644 --- a/snippets/csharp/System/Object/ToString/tostringoverload2.cs +++ b/snippets/csharp/System/Object/ToString/tostringoverload2.cs @@ -1,19 +1,20 @@ -// +// using System; using System.Globalization; public class Example8 { - public static void Main() - { - string[] cultureNames = { "en-US", "en-GB", "fr-FR", + public static void Main() + { + string[] cultureNames = { "en-US", "en-GB", "fr-FR", "hr-HR", "ja-JP" }; - Decimal value = 1603.49m; - foreach (var cultureName in cultureNames) { - CultureInfo culture = new CultureInfo(cultureName); - Console.WriteLine($"{culture.Name}: {value.ToString("C2", culture)}"); - } - } + decimal value = 1603.49m; + foreach (string cultureName in cultureNames) + { + CultureInfo culture = new(cultureName); + Console.WriteLine($"{culture.Name}: {value.ToString("C2", culture)}"); + } + } } // The example displays the following output: // en-US: $1,603.49 diff --git a/snippets/csharp/System/ObjectDisposedException/Overview/dispose1.cs b/snippets/csharp/System/ObjectDisposedException/Overview/dispose1.cs index 684182d5d88..f48c42eaeed 100644 --- a/snippets/csharp/System/ObjectDisposedException/Overview/dispose1.cs +++ b/snippets/csharp/System/ObjectDisposedException/Overview/dispose1.cs @@ -4,21 +4,18 @@ public class Example { - public static void Main() - { - Timer t = new Timer(TimerNotification, null, - 100, Timeout.Infinite); - Thread.Sleep(2000); - t.Dispose(); + public static void Main() + { + Timer t = new(TimerNotification, null, + 100, Timeout.Infinite); + Thread.Sleep(2000); + t.Dispose(); - t.Change(200, 1000); - Thread.Sleep(3000); - } + t.Change(200, 1000); + Thread.Sleep(3000); + } - private static void TimerNotification(Object obj) - { - Console.WriteLine("Timer event fired at {0:F}", DateTime.Now); - } + private static void TimerNotification(object obj) => Console.WriteLine($"Timer event fired at {DateTime.Now:F}"); } // The example displays output like the following: // Timer event fired at Monday, July 14, 2014 11:54:08 AM diff --git a/snippets/csharp/System/ObjectDisposedException/Overview/objdispexc.cs b/snippets/csharp/System/ObjectDisposedException/Overview/objdispexc.cs index 162dc2167b1..fcd6b575cae 100644 --- a/snippets/csharp/System/ObjectDisposedException/Overview/objdispexc.cs +++ b/snippets/csharp/System/ObjectDisposedException/Overview/objdispexc.cs @@ -4,18 +4,18 @@ public class ObjectDisposedExceptionTest { - public static void Main() - { - MemoryStream ms = new MemoryStream(16); - ms.Close(); - try - { - ms.ReadByte(); - } - catch (ObjectDisposedException e) - { - Console.WriteLine("Caught: {0}", e.Message); - } - } + public static void Main() + { + MemoryStream ms = new(16); + ms.Close(); + try + { + ms.ReadByte(); + } + catch (ObjectDisposedException e) + { + Console.WriteLine($"Caught: {e.Message}"); + } + } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/ObsoleteAttribute/IsError/obsoleteattribute_message.cs b/snippets/csharp/System/ObsoleteAttribute/IsError/obsoleteattribute_message.cs index 9c1c3d1348c..0cd8229c448 100644 --- a/snippets/csharp/System/ObsoleteAttribute/IsError/obsoleteattribute_message.cs +++ b/snippets/csharp/System/ObsoleteAttribute/IsError/obsoleteattribute_message.cs @@ -4,51 +4,45 @@ public class Example { - // Mark OldProperty As Obsolete. - [ObsoleteAttribute("This property is obsolete. Use NewProperty instead.", false)] - public string OldProperty - { get { return "The old property value."; } } + // Mark OldProperty As Obsolete. + [ObsoleteAttribute("This property is obsolete. Use NewProperty instead.", false)] + public string OldProperty => "The old property value."; - public string NewProperty - { get { return "The new property value."; } } + public string NewProperty => "The new property value."; - // Mark OldMethod As Obsolete. - [ObsoleteAttribute("This method is obsolete. Call NewMethod instead.", true)] - public string OldMethod() - { - return "You have called OldMethod."; - } + // Mark OldMethod As Obsolete. + [ObsoleteAttribute("This method is obsolete. Call NewMethod instead.", true)] + public string OldMethod() => "You have called OldMethod."; - public string NewMethod() - { - return "You have called NewMethod."; - } + public string NewMethod() => "You have called NewMethod."; - public static void Main() - { - // Get all public members of this type. - MemberInfo[] members = typeof(Example).GetMembers(); - // Count total obsolete members. - int n = 0; + public static void Main() + { + // Get all public members of this type. + MemberInfo[] members = typeof(Example).GetMembers(); + // Count total obsolete members. + int n = 0; - // Try to get the ObsoleteAttribute for each public member. - Console.WriteLine("Obsolete members in the Example class:\n"); - foreach (var member in members) { - ObsoleteAttribute[] attribs = (ObsoleteAttribute[]) - member.GetCustomAttributes(typeof(ObsoleteAttribute), - false); - if (attribs.Length > 0) { - ObsoleteAttribute attrib = attribs[0]; - Console.WriteLine("Member Name: {0}.{1}", member.DeclaringType.FullName, member.Name); - Console.WriteLine(" Message: {0}", attrib.Message); - Console.WriteLine(" Warning/Error: {0}", attrib.IsError ? "Error" : "Warning"); - n++; - } - } + // Try to get the ObsoleteAttribute for each public member. + Console.WriteLine("Obsolete members in the Example class:\n"); + foreach (var member in members) + { + ObsoleteAttribute[] attribs = (ObsoleteAttribute[]) + member.GetCustomAttributes(typeof(ObsoleteAttribute), + false); + if (attribs.Length > 0) + { + ObsoleteAttribute attrib = attribs[0]; + Console.WriteLine($"Member Name: {member.DeclaringType.FullName}.{member.Name}"); + Console.WriteLine($" Message: {attrib.Message}"); + Console.WriteLine($" Warning/Error: {(attrib.IsError ? "Error" : "Warning")}"); + n++; + } + } - if (n == 0) - Console.WriteLine("The Example type has no obsolete attributes."); - } + if (n == 0) + Console.WriteLine("The Example type has no obsolete attributes."); + } } // The example displays the following output: // Obsolete members in the Example class: diff --git a/snippets/csharp/System/ObsoleteAttribute/Overview/Project.csproj b/snippets/csharp/System/ObsoleteAttribute/Overview/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/ObsoleteAttribute/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/ObsoleteAttribute/Overview/obsoleteattributeex1.cs b/snippets/csharp/System/ObsoleteAttribute/Overview/obsoleteattributeex1.cs index b363324a60a..dea87202a8d 100644 --- a/snippets/csharp/System/ObsoleteAttribute/Overview/obsoleteattributeex1.cs +++ b/snippets/csharp/System/ObsoleteAttribute/Overview/obsoleteattributeex1.cs @@ -1,39 +1,34 @@ -// -using System; -using System.Reflection; +using System; public class Example { - // Mark OldProperty As Obsolete. - [ObsoleteAttribute("This property is obsolete. Use NewProperty instead.", false)] - public static string OldProperty - { get { return "The old property value."; } } - - public static string NewProperty - { get { return "The new property value."; } } - - // Mark CallOldMethod As Obsolete. - [ObsoleteAttribute("This method is obsolete. Call CallNewMethod instead.", true)] - public static string CallOldMethod() - { - return "You have called CallOldMethod."; - } - - public static string CallNewMethod() - { - return "You have called CallNewMethod."; - } - - public static void Main() - { - Console.WriteLine(OldProperty); - Console.WriteLine(); - Console.WriteLine(CallOldMethod()); - } + // + + // Mark OldProperty As Obsolete. + [ObsoleteAttribute("This property is obsolete. Use NewProperty instead.", false)] + public static string OldProperty => "The old property value."; + + public static string NewProperty => "The new property value."; + + // Mark CallOldMethod As Obsolete. + [ObsoleteAttribute("This method is obsolete. Call CallNewMethod instead.", true)] + public static string CallOldMethod() => "You have called CallOldMethod."; + + public static string CallNewMethod() => "You have called CallNewMethod."; + + public static void Main() + { + Console.WriteLine(OldProperty); + Console.WriteLine(); + // This call intentionally results in a compiler error. + Console.WriteLine(CallOldMethod()); + } + + // The attempt to compile this example produces output like the following output: + // Example.cs(31,25): error CS0619: 'Example.CallOldMethod()' is obsolete: + // 'This method is obsolete. Call CallNewMethod instead.' + // Example.cs(29,25): warning CS0618: 'Example.OldProperty' is obsolete: + // 'This property is obsolete. Use NewProperty instead.' + + // } -// The attempt to compile this example produces output like the following output: -// Example.cs(31,25): error CS0619: 'Example.CallOldMethod()' is obsolete: -// 'This method is obsolete. Call CallNewMethod instead.' -// Example.cs(29,25): warning CS0618: 'Example.OldProperty' is obsolete: -// 'This property is obsolete. Use NewProperty instead.' -// diff --git a/snippets/csharp/System/ObsoleteAttribute/Overview/snippets.5000.json b/snippets/csharp/System/ObsoleteAttribute/Overview/snippets.5000.json new file mode 100644 index 00000000000..11be0770fa1 --- /dev/null +++ b/snippets/csharp/System/ObsoleteAttribute/Overview/snippets.5000.json @@ -0,0 +1,10 @@ +{ + "host": "dotnet", + "expectederrors": [ + { + "file": "snippets\\csharp\\System\\ObsoleteAttribute\\Overview\\obsoleteattributeex1.cs", + "line": 24, + "error": "CS0619" + } + ] +} diff --git a/snippets/csharp/System/OperatingSystem/Clone/clone.cs b/snippets/csharp/System/OperatingSystem/Clone/clone.cs index 705fcb4c7f6..7d31c8ad8a2 100644 --- a/snippets/csharp/System/OperatingSystem/Clone/clone.cs +++ b/snippets/csharp/System/OperatingSystem/Clone/clone.cs @@ -5,42 +5,34 @@ class CloneCompareDemo { // Copy, clone, and duplicate an OperatingSystem object. - static void CopyOperatingSystemObjects( ) + static void CopyOperatingSystemObjects() { // The Version object does not need to correspond to an // actual OS version. - Version verMMBVer = new Version( 5, 6, 7, 8 ); + Version verMMBVer = new(5, 6, 7, 8); - OperatingSystem opCreate1 = new - OperatingSystem( PlatformID.Win32NT, verMMBVer ); + OperatingSystem opCreate1 = new(PlatformID.Win32NT, verMMBVer); // Create another OperatingSystem object with the same // parameters as opCreate1. - OperatingSystem opCreate2 = new - OperatingSystem( PlatformID.Win32NT, verMMBVer ); + OperatingSystem opCreate2 = new(PlatformID.Win32NT, verMMBVer); // Clone opCreate1 and copy the opCreate1 reference. OperatingSystem opClone = - (OperatingSystem)opCreate1.Clone( ); + (OperatingSystem)opCreate1.Clone(); OperatingSystem opCopy = opCreate1; // Compare the various objects for equality. - Console.WriteLine( "{0,-50}{1}", - "Is the second object the same as the original?", - opCreate1.Equals( opCreate2 ) ); - Console.WriteLine( "{0,-50}{1}", - "Is the object clone the same as the original?", - opCreate1.Equals( opClone ) ); - Console.WriteLine( "{0,-50}{1}", - "Is the copied object the same as the original?", - opCreate1.Equals( opCopy ) ); + Console.WriteLine($"{"Is the second object the same as the original?",-50}{opCreate1.Equals(opCreate2)}"); + Console.WriteLine($"{"Is the object clone the same as the original?",-50}{opCreate1.Equals(opClone)}"); + Console.WriteLine($"{"Is the copied object the same as the original?",-50}{opCreate1.Equals(opCopy)}"); } - static void Main( ) + static void Main() { Console.WriteLine( "This example of OperatingSystem.Clone( ) " + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Create an OperatingSystem object, and then " + "create another object with the \n" + @@ -49,9 +41,9 @@ static void Main( ) "each object with the original " + "using the Equals( ) method. Equals( ) \n" + "returns true only when both " + - "references refer to the same object.\n" ); + "references refer to the same object.\n"); - CopyOperatingSystemObjects( ); + CopyOperatingSystemObjects(); } } diff --git a/snippets/csharp/System/OperatingSystem/Overview/osinfo1.cs b/snippets/csharp/System/OperatingSystem/Overview/osinfo1.cs index dc03f9023a9..c25e34a4dd8 100644 --- a/snippets/csharp/System/OperatingSystem/Overview/osinfo1.cs +++ b/snippets/csharp/System/OperatingSystem/Overview/osinfo1.cs @@ -3,17 +3,17 @@ public class Example { - public static void Main() - { - var os = Environment.OSVersion; - Console.WriteLine("Current OS Information:\n"); - Console.WriteLine("Platform: {0:G}", os.Platform); - Console.WriteLine("Version String: {0}", os.VersionString); - Console.WriteLine("Version Information:"); - Console.WriteLine(" Major: {0}", os.Version.Major); - Console.WriteLine(" Minor: {0}", os.Version.Minor); - Console.WriteLine("Service Pack: '{0}'", os.ServicePack); - } + public static void Main() + { + var os = Environment.OSVersion; + Console.WriteLine("Current OS Information:\n"); + Console.WriteLine($"Platform: {os.Platform:G}"); + Console.WriteLine($"Version String: {os.VersionString}"); + Console.WriteLine("Version Information:"); + Console.WriteLine($" Major: {os.Version.Major}"); + Console.WriteLine($" Minor: {os.Version.Minor}"); + Console.WriteLine($"Service Pack: '{os.ServicePack}'"); + } } // If run on a Windows 8.1 system, the example displays output like the following: // Current OS Information: @@ -33,4 +33,4 @@ public static void Main() // Major: 6 // Minor: 1 // Service Pack: 'Service Pack 1' -// \ No newline at end of file +// diff --git a/snippets/csharp/System/OperatingSystem/Platform/plat_ver.cs b/snippets/csharp/System/OperatingSystem/Platform/plat_ver.cs index 05b27d594c2..0d606fc6876 100644 --- a/snippets/csharp/System/OperatingSystem/Platform/plat_ver.cs +++ b/snippets/csharp/System/OperatingSystem/Platform/plat_ver.cs @@ -7,52 +7,51 @@ class PlatformVersionDemo { // Create an OperatingSystem object and display the Platform // and Version properties. - static void BuildOSObj( PlatformID pID, Version ver ) + static void BuildOSObj(PlatformID pID, Version ver) { - OperatingSystem opSys = new OperatingSystem( pID, ver ); - PlatformID platform = opSys.Platform; - Version version = opSys.Version; + OperatingSystem opSys = new(pID, ver); + PlatformID platform = opSys.Platform; + Version version = opSys.Version; - Console.WriteLine( " Platform: {0,-15} Version: {1}", - platform, version ); + Console.WriteLine($" Platform: {platform,-15} Version: {version}"); } - static void BuildOperatingSystemObjects( ) + static void BuildOperatingSystemObjects() { // The Version object does not need to correspond to an // actual OS version. - Version verNull = new Version( ); - Version verString = new Version( "3.5.8.13" ); - Version verMajMin = new Version( 6, 10 ); - Version verMMBld = new Version( 5, 25, 5025 ); - Version verMMBVer = new Version( 5, 6, 7, 8 ); + Version verNull = new(); + Version verString = new("3.5.8.13"); + Version verMajMin = new(6, 10); + Version verMMBld = new(5, 25, 5025); + Version verMMBVer = new(5, 6, 7, 8); // All PlatformID members are shown here. - BuildOSObj( PlatformID.Win32NT, verNull ); - BuildOSObj( PlatformID.Win32S, verString ); - BuildOSObj( PlatformID.Win32Windows, verMajMin ); - BuildOSObj( PlatformID.WinCE, verMMBld ); - BuildOSObj( PlatformID.Win32NT, verMMBVer ); + BuildOSObj(PlatformID.Win32NT, verNull); + BuildOSObj(PlatformID.Win32S, verString); + BuildOSObj(PlatformID.Win32Windows, verMajMin); + BuildOSObj(PlatformID.WinCE, verMMBld); + BuildOSObj(PlatformID.Win32NT, verMMBVer); } - static void Main( ) + static void Main() { Console.WriteLine( "This example of OperatingSystem.Platform " + "and OperatingSystem.Version \n" + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Create several OperatingSystem objects " + - "and display their properties:\n" ); + "and display their properties:\n"); - BuildOperatingSystemObjects( ); + BuildOperatingSystemObjects(); Console.WriteLine( - "\nThe operating system of the host computer is:\n" ); + "\nThe operating system of the host computer is:\n"); BuildOSObj( Environment.OSVersion.Platform, - Environment.OSVersion.Version ); + Environment.OSVersion.Version); } } diff --git a/snippets/csharp/System/OperatingSystem/ServicePack/sp.cs b/snippets/csharp/System/OperatingSystem/ServicePack/sp.cs index d3bbb823032..f8c8b572acc 100644 --- a/snippets/csharp/System/OperatingSystem/ServicePack/sp.cs +++ b/snippets/csharp/System/OperatingSystem/ServicePack/sp.cs @@ -6,9 +6,9 @@ class Sample { public static void Main() { - OperatingSystem os = Environment.OSVersion; - String sp = os.ServicePack; - Console.WriteLine("Service pack version = \"{0}\"", sp); + OperatingSystem os = Environment.OSVersion; + string sp = os.ServicePack; + Console.WriteLine($"Service pack version = \"{sp}\""); } } /* @@ -17,4 +17,4 @@ public static void Main() Service pack version = "Service Pack 1" */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/OperatingSystem/ToString/ctor_tostr.cs b/snippets/csharp/System/OperatingSystem/ToString/ctor_tostr.cs index eb0d575a92e..19f36ac13dc 100644 --- a/snippets/csharp/System/OperatingSystem/ToString/ctor_tostr.cs +++ b/snippets/csharp/System/OperatingSystem/ToString/ctor_tostr.cs @@ -6,46 +6,44 @@ class OpSysConstructDemo { // Create and display an OperatingSystem object. - static void BuildOSObj( PlatformID pID, Version ver ) + static void BuildOSObj(PlatformID pID, Version ver) { - OperatingSystem os = new OperatingSystem( pID, ver ); + OperatingSystem os = new(pID, ver); - Console.WriteLine( " {0}", os.ToString( ) ); + Console.WriteLine($" {os.ToString()}"); } - static void BuildOperatingSystemObjects( ) + static void BuildOperatingSystemObjects() { // The Version object does not need to correspond to an // actual OS version. - Version verNull = new Version( ); - Version verMajMin = new Version( 3, 11 ); - Version verMMBld = new Version( 5, 25, 625 ); - Version verMMBVer = new Version( 5, 6, 7, 8 ); - Version verString = new Version( "3.5.8.13" ); + Version verNull = new(); + Version verMajMin = new(3, 11); + Version verMMBld = new(5, 25, 625); + Version verMMBVer = new(5, 6, 7, 8); + Version verString = new("3.5.8.13"); // All PlatformID members are shown here. - BuildOSObj( PlatformID.Win32NT, verNull ); - BuildOSObj( PlatformID.Win32S, verMajMin ); - BuildOSObj( PlatformID.Win32Windows, verMMBld ); - BuildOSObj( PlatformID.WinCE, verMMBVer ); - BuildOSObj( PlatformID.Win32NT, verString ); + BuildOSObj(PlatformID.Win32NT, verNull); + BuildOSObj(PlatformID.Win32S, verMajMin); + BuildOSObj(PlatformID.Win32Windows, verMMBld); + BuildOSObj(PlatformID.WinCE, verMMBVer); + BuildOSObj(PlatformID.Win32NT, verString); } - public static void Main( ) + public static void Main() { Console.WriteLine( "This example of the OperatingSystem constructor " + "and \nOperatingSystem.ToString( ) " + - "generates the following output.\n" ); + "generates the following output.\n"); Console.WriteLine( "Create and display several different " + - "OperatingSystem objects:\n" ); + "OperatingSystem objects:\n"); - BuildOperatingSystemObjects( ); + BuildOperatingSystemObjects(); - Console.WriteLine( - "\nThe OS version of the host computer is:\n\n {0}", - Environment.OSVersion.ToString( ) ); + Console.WriteLine($"\nThe OS version of the host computer is:\n\n {Environment.OSVersion.ToString()}"); } } diff --git a/snippets/csharp/System/OperatingSystem/VersionString/osvs.cs b/snippets/csharp/System/OperatingSystem/VersionString/osvs.cs index 330baa296cf..909f0330401 100644 --- a/snippets/csharp/System/OperatingSystem/VersionString/osvs.cs +++ b/snippets/csharp/System/OperatingSystem/VersionString/osvs.cs @@ -6,10 +6,10 @@ class Sample { public static void Main() { - OperatingSystem os = Environment.OSVersion; -// Display the value of OperatingSystem.VersionString. By default, this is -// the same value as OperatingSystem.ToString. - Console.WriteLine("This operating system is {0}", os.VersionString); + OperatingSystem os = Environment.OSVersion; + // Display the value of OperatingSystem.VersionString. By default, this is + // the same value as OperatingSystem.ToString. + Console.WriteLine($"This operating system is {os.VersionString}"); } } /* @@ -17,4 +17,4 @@ public static void Main() This operating system is Microsoft Windows NT 5.1.2600.0 Service Pack 1 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/Program.cs b/snippets/csharp/System/OutOfMemoryException/Overview/Program.cs new file mode 100644 index 00000000000..e40728734f5 --- /dev/null +++ b/snippets/csharp/System/OutOfMemoryException/Overview/Program.cs @@ -0,0 +1,4 @@ +OutOfMemoryExceptionExample1.Run(); +OutOfMemoryExceptionExample2.Run(); +OutOfMemoryExceptionExample3.Run(); +OutOfMemoryExceptionExample4.Run(); diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/Project.csproj b/snippets/csharp/System/OutOfMemoryException/Overview/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/OutOfMemoryException/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/data1.cs b/snippets/csharp/System/OutOfMemoryException/Overview/data1.cs index c1426bc6baf..1aa2d6eb7d5 100644 --- a/snippets/csharp/System/OutOfMemoryException/Overview/data1.cs +++ b/snippets/csharp/System/OutOfMemoryException/Overview/data1.cs @@ -2,37 +2,36 @@ using System; using System.Collections.Generic; -public class Example +public class OutOfMemoryExceptionExample1 { - public static void Main() - { - Double[] values = GetData(); - // Compute mean. - Console.WriteLine("Sample mean: {0}, N = {1}", - GetMean(values), values.Length); - } + public static void Run() + { + double[] values = GetData(); + // Compute mean. + Console.WriteLine($"Sample mean: {GetMean(values)}, N = {values.Length}"); + } - private static Double[] GetData() - { - Random rnd = new Random(); - List values = new List(); - for (int ctr = 1; ctr <= 200000000; ctr++) { - values.Add(rnd.NextDouble()); - if (ctr % 10000000 == 0) - Console.WriteLine("Retrieved {0:N0} items of data.", - ctr); - } - return values.ToArray(); - } + private static double[] GetData() + { + Random rnd = new(); + List values = new(); + for (int ctr = 1; ctr <= 200000000; ctr++) + { + values.Add(rnd.NextDouble()); + if (ctr % 10000000 == 0) + Console.WriteLine($"Retrieved {ctr:N0} items of data."); + } + return values.ToArray(); + } - private static Double GetMean(Double[] values) - { - Double sum = 0; - foreach (var value in values) - sum += value; + private static double GetMean(double[] values) + { + double sum = 0; + foreach (double value in values) + sum += value; - return sum / values.Length; - } + return sum / values.Length; + } } // The example displays output like the following: // Retrieved 10,000,000 items of data. diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/data2.cs b/snippets/csharp/System/OutOfMemoryException/Overview/data2.cs index 1bc52b4c686..af03dede687 100644 --- a/snippets/csharp/System/OutOfMemoryException/Overview/data2.cs +++ b/snippets/csharp/System/OutOfMemoryException/Overview/data2.cs @@ -1,43 +1,44 @@ // using System; -using System.IO; -public class Example + +public class OutOfMemoryExceptionExample2 { - public static void Main() - { - Tuple result = GetResult(); - Console.WriteLine("Sample mean: {0}, N = {1:N0}", - result.Item1, result.Item2); - } + public static void Run() + { + Tuple result = GetResult(); + Console.WriteLine($"Sample mean: {result.Item1}, N = {result.Item2:N0}"); + } - private static Tuple GetResult() - { - int chunkSize = 50000000; - int nToGet = 200000000; - Random rnd = new Random(); - // FileStream fs = new FileStream(@".\data.bin", FileMode.Create); - // BinaryWriter bin = new BinaryWriter(fs); - // bin.Write((int)0); - int n = 0; - Double sum = 0; - for (int outer = 0; - outer <= ((int) Math.Ceiling(nToGet * 1.0 / chunkSize) - 1); - outer++) { - for (int inner = 0; - inner <= Math.Min(nToGet - n - 1, chunkSize - 1); - inner++) { - Double value = rnd.NextDouble(); - sum += value; - n++; - // bin.Write(value); - } - } - // bin.Seek(0, SeekOrigin.Begin); - // bin.Write(n); - // bin.Close(); - return new Tuple(sum/n, n); - } + private static Tuple GetResult() + { + int chunkSize = 50000000; + int nToGet = 200000000; + Random rnd = new(); + // FileStream fs = new FileStream(@".\data.bin", FileMode.Create); + // BinaryWriter bin = new BinaryWriter(fs); + // bin.Write((int)0); + int n = 0; + double sum = 0; + for (int outer = 0; + outer <= ((int)Math.Ceiling(nToGet * 1.0 / chunkSize) - 1); + outer++) + { + for (int inner = 0; + inner <= Math.Min(nToGet - n - 1, chunkSize - 1); + inner++) + { + double value = rnd.NextDouble(); + sum += value; + n++; + // bin.Write(value); + } + } + // bin.Seek(0, SeekOrigin.Begin); + // bin.Write(n); + // bin.Close(); + return new Tuple(sum / n, n); + } } // The example displays output like the following: // Sample mean: 0.500022771458399, N = 200,000,000 diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/failfast1.cs b/snippets/csharp/System/OutOfMemoryException/Overview/failfast1.cs index 4f491b0a9c4..b294c975cca 100644 --- a/snippets/csharp/System/OutOfMemoryException/Overview/failfast1.cs +++ b/snippets/csharp/System/OutOfMemoryException/Overview/failfast1.cs @@ -1,31 +1,34 @@ // using System; -public class Example +public class OutOfMemoryExceptionExample3 { - public static void Main() - { - try { - // Outer block to handle any unexpected exceptions. - try { - string s = "This"; - s = s.Insert(2, "is "); + public static void Run() + { + try + { + // Outer block to handle any unexpected exceptions. + try + { + string s = "This"; + s = s.Insert(2, "is "); - // Throw an OutOfMemoryException exception. - throw new OutOfMemoryException(); - } - catch (ArgumentException) { - Console.WriteLine("ArgumentException in String.Insert"); - } + // Throw an OutOfMemoryException exception. + throw new OutOfMemoryException(); + } + catch (ArgumentException) + { + Console.WriteLine("ArgumentException in String.Insert"); + } - // Execute program logic. - } - catch (OutOfMemoryException e) { - Console.WriteLine("Terminating application unexpectedly..."); - Environment.FailFast(String.Format("Out of Memory: {0}", - e.Message)); - } - } + // Execute program logic. + } + catch (OutOfMemoryException e) + { + Console.WriteLine("Terminating application unexpectedly..."); + Environment.FailFast($"Out of Memory: {e.Message}"); + } + } } // The example displays the following output: // Terminating application unexpectedly... diff --git a/snippets/csharp/System/OutOfMemoryException/Overview/sb_example1.cs b/snippets/csharp/System/OutOfMemoryException/Overview/sb_example1.cs index a879f70bc01..03bff3781f7 100644 --- a/snippets/csharp/System/OutOfMemoryException/Overview/sb_example1.cs +++ b/snippets/csharp/System/OutOfMemoryException/Overview/sb_example1.cs @@ -2,19 +2,21 @@ using System; using System.Text; -public class Example +public class OutOfMemoryExceptionExample4 { - public static void Main() - { - StringBuilder sb = new StringBuilder(15, 15); - sb.Append("Substring #1 "); - try { - sb.Insert(0, "Substring #2 ", 1); - } - catch (OutOfMemoryException e) { - Console.WriteLine("Out of Memory: {0}", e.Message); - } - } + public static void Run() + { + StringBuilder sb = new(15, 15); + sb.Append("Substring #1 "); + try + { + sb.Insert(0, "Substring #2 ", 1); + } + catch (OutOfMemoryException e) + { + Console.WriteLine($"Out of Memory: {e.Message}"); + } + } } // The example displays the following output: // Out of Memory: Insufficient memory to continue the execution of the program. diff --git a/snippets/csharp/System/OverflowException/Overview/arithmetic1.cs b/snippets/csharp/System/OverflowException/Overview/arithmetic1.cs index 40759953456..09ae86bef64 100644 --- a/snippets/csharp/System/OverflowException/Overview/arithmetic1.cs +++ b/snippets/csharp/System/OverflowException/Overview/arithmetic1.cs @@ -2,63 +2,68 @@ public class Example { - public static void Main() - { - // - int value = 780000000; - checked { - try { - // Square the original value. - int square = value * value; - Console.WriteLine("{0} ^ 2 = {1}", value, square); - } - catch (OverflowException) { - double square = Math.Pow(value, 2); - Console.WriteLine("Exception: {0} > {1:E}.", - square, Int32.MaxValue); - } } - // The example displays the following output: - // Exception: 6.084E+17 > 2.147484E+009. - // + public static void Main() + { + // + int value = 780000000; + checked + { + try + { + // Square the original value. + int square = value * value; + Console.WriteLine($"{value} ^ 2 = {square}"); + } + catch (OverflowException) + { + double square = Math.Pow(value, 2); + Console.WriteLine($"Exception: {square} > {int.MaxValue:E}."); + } + } + // The example displays the following output: + // Exception: 6.084E+17 > 2.147484E+009. + // - Cast(); - Unchecked(); - } + Cast(); + Unchecked(); + } - private static void Cast() - { - // - byte value = 241; - checked { - try { - sbyte newValue = (sbyte) value; - Console.WriteLine("Converted the {0} value {1} to the {2} value {3}.", - value.GetType().Name, value, - newValue.GetType().Name, newValue); - } - catch (OverflowException) { - Console.WriteLine("Exception: {0} > {1}.", value, SByte.MaxValue); - } } - // The example displays the following output: - // Exception: 241 > 127. - // - } + private static void Cast() + { + // + byte value = 241; + checked + { + try + { + sbyte newValue = (sbyte)value; + Console.WriteLine($"Converted the {value.GetType().Name} value {value} to the {newValue.GetType().Name} value {newValue}."); + } + catch (OverflowException) + { + Console.WriteLine($"Exception: {value} > {sbyte.MaxValue}."); + } + } + // The example displays the following output: + // Exception: 241 > 127. + // + } - private static void Unchecked() - { - // - byte value = 241; - try { - sbyte newValue = (sbyte) value; - Console.WriteLine("Converted the {0} value {1} to the {2} value {3}.", - value.GetType().Name, value, - newValue.GetType().Name, newValue); - } - catch (OverflowException) { - Console.WriteLine("Exception: {0} > {1}.", value, SByte.MaxValue); - } - // The example displays the following output: - // Converted the Byte value 241 to the SByte value -15. - // - } + private static void Unchecked() + { + // + byte value = 241; + try + { + sbyte newValue = (sbyte)value; + Console.WriteLine($"Converted the {value.GetType().Name} value {value} to the {newValue.GetType().Name} value {newValue}."); + } + catch (OverflowException) + { + Console.WriteLine($"Exception: {value} > {sbyte.MaxValue}."); + } + // The example displays the following output: + // Converted the Byte value 241 to the SByte value -15. + // + } } diff --git a/snippets/csharp/System/ParamArrayAttribute/Overview/Example.cs b/snippets/csharp/System/ParamArrayAttribute/Overview/Example.cs index 3e245b91d86..f93cd9ac9f4 100644 --- a/snippets/csharp/System/ParamArrayAttribute/Overview/Example.cs +++ b/snippets/csharp/System/ParamArrayAttribute/Overview/Example.cs @@ -3,81 +3,75 @@ public class Temperature { - private decimal temp; + private decimal temp; - public Temperature(decimal temperature) - { - this.temp = temperature; - } + public Temperature(decimal temperature) => this.temp = temperature; - public override string ToString() - { - return ToString("C"); - } + public override string ToString() => ToString("C"); - public string ToString(string format) - { - if (String.IsNullOrEmpty(format)) - format = "G"; + public string ToString(string format) + { + if (string.IsNullOrEmpty(format)) + format = "G"; - switch (format.ToUpper()) - { - case "G": - case "C": - return temp.ToString("N") + " °C"; - case "F": - return (9 * temp / 5 + 32).ToString("N") + " °F"; - case "K": - return (temp + 273.15m).ToString("N") + " °K"; - default: - throw new FormatException(String.Format("The '{0}' format specifier is not supported", - format)); - } - } + switch (format.ToUpperInvariant()) + { + case "G": + case "C": + return temp.ToString("N") + " °C"; + case "F": + return (9 * temp / 5 + 32).ToString("N") + " °F"; + case "K": + return (temp + 273.15m).ToString("N") + " °K"; + default: + throw new FormatException($"The '{format}' format specifier is not supported"); + } + } - public void Display(params string []formats) - { - if (formats.Length == 0) - { - Console.WriteLine(this.ToString("G")); - } - else - { - foreach (string format in formats) - { - try { - Console.WriteLine(this.ToString(format)); + public void Display(params string[] formats) + { + if (formats.Length == 0) + { + Console.WriteLine(this.ToString("G")); + } + else + { + foreach (string format in formats) + { + try + { + Console.WriteLine(this.ToString(format)); + } + // If there is an exception, do nothing. + catch { } } - // If there is an exception, do nothing. - catch { } - } - } - } + } + } } // // public class Class1 { - public static void Main() - { - Temperature temp1 = new Temperature(100); - string[] formats = { "C", "G", "F", "K" }; + public static void Main() + { + Temperature temp1 = new(100); + string[] formats = [ "C", "G", "F", "K" ]; - // Call Display method with a string array. - Console.WriteLine("Calling Display with a string array:"); - temp1.Display(formats); - Console.WriteLine(); + // Call Display method with a string array. + Console.WriteLine("Calling Display with a string array:"); + temp1.Display(formats); + Console.WriteLine(); - // Call Display method with individual string arguments. - Console.WriteLine("Calling Display with individual arguments:"); - temp1.Display("C", "F", "K", "G"); - Console.WriteLine(); + // Call Display method with individual string arguments. + Console.WriteLine("Calling Display with individual arguments:"); + temp1.Display("C", "F", "K", "G"); + Console.WriteLine(); - // Call parameterless Display method. - Console.WriteLine("Calling Display with an implicit parameter array:"); - temp1.Display(); - } + // Call parameterless Display method. + Console.WriteLine("Calling Display with an implicit parameter array:"); + temp1.Display(); + } } // The example displays the following output: // Calling Display with a string array: diff --git a/snippets/csharp/System/PlatformID/Overview/pid.cs b/snippets/csharp/System/PlatformID/Overview/pid.cs index 0f3f208e9d6..f93b59ce4f9 100644 --- a/snippets/csharp/System/PlatformID/Overview/pid.cs +++ b/snippets/csharp/System/PlatformID/Overview/pid.cs @@ -6,28 +6,28 @@ class Sample { public static void Main() { - string msg1 = "This is a Windows operating system."; - string msg2 = "This is a Unix operating system."; - string msg3 = "ERROR: This platform identifier is invalid."; + string msg1 = "This is a Windows operating system."; + string msg2 = "This is a Unix operating system."; + string msg3 = "ERROR: This platform identifier is invalid."; -// Assume this example is run on a Windows operating system. + // Assume this example is run on a Windows operating system. - OperatingSystem os = Environment.OSVersion; - PlatformID pid = os.Platform; - switch (pid) + OperatingSystem os = Environment.OSVersion; + PlatformID pid = os.Platform; + switch (pid) { - case PlatformID.Win32NT: - case PlatformID.Win32S: - case PlatformID.Win32Windows: - case PlatformID.WinCE: - Console.WriteLine(msg1); - break; - case PlatformID.Unix: - Console.WriteLine(msg2); - break; - default: - Console.WriteLine(msg3); - break; + case PlatformID.Win32NT: + case PlatformID.Win32S: + case PlatformID.Win32Windows: + case PlatformID.WinCE: + Console.WriteLine(msg1); + break; + case PlatformID.Unix: + Console.WriteLine(msg2); + break; + default: + Console.WriteLine(msg3); + break; } } } @@ -36,4 +36,4 @@ public static void Main() This is a Windows operating system. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/PredicateT/Overview/Project.csproj b/snippets/csharp/System/PredicateT/Overview/Project.csproj new file mode 100644 index 00000000000..dfdef3fd2a7 --- /dev/null +++ b/snippets/csharp/System/PredicateT/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + + Library + net10.0 + + + diff --git a/snippets/csharp/System/PredicateT/Overview/predicate1.cs b/snippets/csharp/System/PredicateT/Overview/predicate1.cs index a70880bda97..99512cdf2a4 100644 --- a/snippets/csharp/System/PredicateT/Overview/predicate1.cs +++ b/snippets/csharp/System/PredicateT/Overview/predicate1.cs @@ -1,44 +1,42 @@ -// +namespace PredicateExample3; + +// using System; using System.Collections.Generic; public class HockeyTeam { - private string _name; - private int _founded; + private string _name; + private int _founded; - public HockeyTeam(string name, int year) - { - _name = name; - _founded = year; - } + public HockeyTeam(string name, int year) + { + _name = name; + _founded = year; + } - public string Name { - get { return _name; } - } + public string Name => _name; - public int Founded { - get { return _founded; } - } + public int Founded => _founded; } public class Example { - public static void Main() - { - Random rnd = new Random(); - List teams = new List(); - teams.AddRange( new HockeyTeam[] { new HockeyTeam("Detroit Red Wings", 1926), + public static void Main() + { + Random rnd = new(); + List teams = new(); + teams.AddRange(new HockeyTeam[] { new HockeyTeam("Detroit Red Wings", 1926), new HockeyTeam("Chicago Blackhawks", 1926), new HockeyTeam("San Jose Sharks", 1991), new HockeyTeam("Montreal Canadiens", 1909), - new HockeyTeam("St. Louis Blues", 1967) } ); - int[] years = { 1920, 1930, 1980, 2000 }; - int foundedBeforeYear = years[rnd.Next(0, years.Length)]; - Console.WriteLine("Teams founded before {0}:", foundedBeforeYear); - foreach (var team in teams.FindAll( x => x.Founded <= foundedBeforeYear)) - Console.WriteLine("{0}: {1}", team.Name, team.Founded); - } + new HockeyTeam("St. Louis Blues", 1967) }); + int[] years = { 1920, 1930, 1980, 2000 }; + int foundedBeforeYear = years[rnd.Next(0, years.Length)]; + Console.WriteLine($"Teams founded before {foundedBeforeYear}:"); + foreach (var team in teams.FindAll(x => x.Founded <= foundedBeforeYear)) + Console.WriteLine($"{team.Name}: {team.Founded}"); + } } // The example displays output similar to the following: // Teams founded before 1930: diff --git a/snippets/csharp/System/PredicateT/Overview/predicateex1.cs b/snippets/csharp/System/PredicateT/Overview/predicateex1.cs index dfe5e2b61f9..fb66c274e66 100644 --- a/snippets/csharp/System/PredicateT/Overview/predicateex1.cs +++ b/snippets/csharp/System/PredicateT/Overview/predicateex1.cs @@ -1,23 +1,25 @@ -// +namespace PredicateExample2; + +// using System; using System.Drawing; public class Example { - public static void Main() - { - // Create an array of Point structures. - Point[] points = { new Point(100, 200), + public static void Main() + { + // Create an array of Point structures. + Point[] points = { new Point(100, 200), new Point(150, 250), new Point(250, 375), new Point(275, 395), new Point(295, 450) }; - // Find the first Point structure for which X times Y - // is greater than 100000. - Point first = Array.Find(points, x => x.X * x.Y > 100000 ); + // Find the first Point structure for which X times Y + // is greater than 100000. + Point first = Array.Find(points, x => x.X * x.Y > 100000); - // Display the first structure found. - Console.WriteLine("Found: X = {0}, Y = {1}", first.X, first.Y); - } + // Display the first structure found. + Console.WriteLine($"Found: X = {first.X}, Y = {first.Y}"); + } } // The example displays the following output: // Found: X = 275, Y = 395 diff --git a/snippets/csharp/System/PredicateT/Overview/predicateex2.cs b/snippets/csharp/System/PredicateT/Overview/predicateex2.cs index bcba19c7089..9b89982d5e2 100644 --- a/snippets/csharp/System/PredicateT/Overview/predicateex2.cs +++ b/snippets/csharp/System/PredicateT/Overview/predicateex2.cs @@ -1,31 +1,30 @@ -// +namespace PredicateExample4; + +// using System; using System.Drawing; public class Example { - public static void Main() - { - // Create an array of Point structures. - Point[] points = { new Point(100, 200), + public static void Main() + { + // Create an array of Point structures. + Point[] points = { new Point(100, 200), new Point(150, 250), new Point(250, 375), new Point(275, 395), new Point(295, 450) }; - // Define the Predicate delegate. - Predicate predicate = FindPoints; + // Define the Predicate delegate. + Predicate predicate = FindPoints; - // Find the first Point structure for which X times Y - // is greater than 100000. - Point first = Array.Find(points, predicate); + // Find the first Point structure for which X times Y + // is greater than 100000. + Point first = Array.Find(points, predicate); - // Display the first structure found. - Console.WriteLine("Found: X = {0}, Y = {1}", first.X, first.Y); - } + // Display the first structure found. + Console.WriteLine($"Found: X = {first.X}, Y = {first.Y}"); + } - private static bool FindPoints(Point obj) - { - return obj.X * obj.Y > 100000; - } + private static bool FindPoints(Point obj) => obj.X * obj.Y > 100000; } // The example displays the following output: // Found: X = 275, Y = 395 diff --git a/snippets/csharp/System/Random/.ctor/ctor.cs b/snippets/csharp/System/Random/.ctor/ctor.cs index 7c9875c8f70..5239b2c5fe9 100644 --- a/snippets/csharp/System/Random/.ctor/ctor.cs +++ b/snippets/csharp/System/Random/.ctor/ctor.cs @@ -10,13 +10,13 @@ public class RandomObjectDemo static void RunIntNDoubleRandoms(Random randObj) { // Generate the first six random integers. - for(int j = 0; j < 6; j++) - Console.Write(" {0,10} ", randObj.Next()); + for (int j = 0; j < 6; j++) + Console.Write($" {randObj.Next(),10} "); Console.WriteLine(); // Generate the first six random doubles. - for(int j = 0; j < 6; j++) - Console.Write(" {0:F8} ", randObj.NextDouble()); + for (int j = 0; j < 6; j++) + Console.Write($" {randObj.NextDouble():F8} "); Console.WriteLine(); } @@ -26,7 +26,7 @@ static void FixedSeedRandoms(int seed) Console.WriteLine( "\nRandom numbers from a Random object with " + "seed = {0}:", seed); - Random fixRand = new Random(seed); + Random fixRand = new(seed); RunIntNDoubleRandoms(fixRand); } @@ -40,13 +40,13 @@ static void AutoSeedRandoms() Console.WriteLine( "\nRandom numbers from a Random object " + "with an auto-generated seed:"); - Random autoRand = new Random(); + Random autoRand = new(); RunIntNDoubleRandoms(autoRand); } static void Main() - { + { Console.WriteLine( "This example of the Random class constructors and " + "Random.NextDouble() \n" + @@ -108,19 +108,19 @@ 0.04937517 0.44618494 0.83879212 0.43139707 0.36163507 0.11024451 // same timer value that will produce unique random number sequences. public class FixTimerResolution { - public static void CreateEnginesWithSameTimer() - { -// - int randomInstancesToCreate = 4; - Random[] randomEngines = new Random[randomInstancesToCreate]; - for (int ctr = 0; ctr < randomInstancesToCreate; ctr++) - { - randomEngines[ctr] = new Random(unchecked((int) (DateTime.Now.Ticks >> ctr))); - } -// - for (int ctr = 0; ctr < randomInstancesToCreate; ctr++) - { - Console.WriteLine(randomEngines[ctr].Next()); - } - } + public static void CreateEnginesWithSameTimer() + { + // + int randomInstancesToCreate = 4; + Random[] randomEngines = new Random[randomInstancesToCreate]; + for (int ctr = 0; ctr < randomInstancesToCreate; ctr++) + { + randomEngines[ctr] = new(unchecked((int)(DateTime.Now.Ticks >> ctr))); + } + // + for (int ctr = 0; ctr < randomInstancesToCreate; ctr++) + { + Console.WriteLine(randomEngines[ctr].Next()); + } + } } diff --git a/snippets/csharp/System/Random/.ctor/ctor1.cs b/snippets/csharp/System/Random/.ctor/ctor1.cs index e9e61383e04..ede86d28b58 100644 --- a/snippets/csharp/System/Random/.ctor/ctor1.cs +++ b/snippets/csharp/System/Random/.ctor/ctor1.cs @@ -4,26 +4,26 @@ public class RandomNumbers { - public static void Main() - { - Random rand1 = new Random(); - Random rand2 = new Random(); - Thread.Sleep(2000); - Random rand3 = new Random(); - ShowRandomNumbers(rand1); - ShowRandomNumbers(rand2); - ShowRandomNumbers(rand3); - } + public static void Main() + { + Random rand1 = new(); + Random rand2 = new(); + Thread.Sleep(2000); + Random rand3 = new(); + ShowRandomNumbers(rand1); + ShowRandomNumbers(rand2); + ShowRandomNumbers(rand3); + } - private static void ShowRandomNumbers(Random rand) - { - Console.WriteLine(); - byte[] values = new byte[5]; - rand.NextBytes(values); - foreach (byte value in values) - Console.Write("{0, 5}", value); - Console.WriteLine(); - } + private static void ShowRandomNumbers(Random rand) + { + Console.WriteLine(); + byte[] values = new byte[5]; + rand.NextBytes(values); + foreach (byte value in values) + Console.Write($"{value,5}"); + Console.WriteLine(); + } } // The example displays an output similar to the following: // 28 35 133 224 58 @@ -31,4 +31,4 @@ private static void ShowRandomNumbers(Random rand) // 28 35 133 224 58 // // 32 222 43 251 49 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Random/.ctor/ctor4.cs b/snippets/csharp/System/Random/.ctor/ctor4.cs index 01b219da8e5..9358c8f9141 100644 --- a/snippets/csharp/System/Random/.ctor/ctor4.cs +++ b/snippets/csharp/System/Random/.ctor/ctor4.cs @@ -4,27 +4,27 @@ public class Example { - public static void Main() - { - Random rand1 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF); - Random rand2 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF); - Thread.Sleep(20); - Random rand3 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF); - ShowRandomNumbers(rand1); - ShowRandomNumbers(rand2); - ShowRandomNumbers(rand3); - } + public static void Main() + { + Random rand1 = new((int)DateTime.Now.Ticks & 0x0000FFFF); + Random rand2 = new((int)DateTime.Now.Ticks & 0x0000FFFF); + Thread.Sleep(20); + Random rand3 = new((int)DateTime.Now.Ticks & 0x0000FFFF); + ShowRandomNumbers(rand1); + ShowRandomNumbers(rand2); + ShowRandomNumbers(rand3); + } - private static void ShowRandomNumbers(Random rand) - { - Console.WriteLine(); - byte[] values = new byte[4]; - rand.NextBytes(values); - foreach (var value in values) - Console.Write("{0, 5}", value); + private static void ShowRandomNumbers(Random rand) + { + Console.WriteLine(); + byte[] values = new byte[4]; + rand.NextBytes(values); + foreach (byte value in values) + Console.Write($"{value,5}"); - Console.WriteLine(); - } + Console.WriteLine(); + } } // The example displays output similar to the following: // 145 214 177 134 173 diff --git a/snippets/csharp/System/Random/Next/sample.cs b/snippets/csharp/System/Random/Next/sample.cs index 75ce9349484..ef7ff03ff47 100644 --- a/snippets/csharp/System/Random/Next/sample.cs +++ b/snippets/csharp/System/Random/Next/sample.cs @@ -7,31 +7,25 @@ public class RandomProportional : Random { // The Sample method generates a distribution proportional to the value // of the random numbers, in the range [0.0, 1.0]. - protected override double Sample() - { - return Math.Sqrt(base.Sample()); - } + protected override double Sample() => Math.Sqrt(base.Sample()); - public override int Next() - { - return (int) (Sample() * int.MaxValue); - } + public override int Next() => (int)(Sample() * int.MaxValue); } public class RandomSampleDemo { static void Main() - { + { const int rows = 4, cols = 6; const int runCount = 1000000; const int distGroupCount = 10; const double intGroupSize = ((double)int.MaxValue + 1.0) / (double)distGroupCount; - RandomProportional randObj = new RandomProportional(); + RandomProportional randObj = new(); - int[ ] intCounts = new int[ distGroupCount ]; - int[ ] realCounts = new int[ distGroupCount ]; + int[] intCounts = new int[distGroupCount]; + int[] realCounts = new int[distGroupCount]; Console.WriteLine( "\nThe derived RandomProportional class overrides " + @@ -49,7 +43,7 @@ static void Main() for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) - Console.Write("{0,12:F8}", randObj.NextDouble()); + Console.Write($"{randObj.NextDouble(),12:F8}"); Console.WriteLine(); } @@ -61,7 +55,7 @@ static void Main() for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) - Console.Write("{0,12}", randObj.Next()); + Console.Write($"{randObj.Next(),12}"); Console.WriteLine(); } @@ -71,33 +65,22 @@ static void Main() "into {1} equal value ranges. This \n" + "is the count of values in each range:\n", runCount, distGroupCount); - Console.WriteLine( - "{0,21}{1,10}{2,20}{3,10}", "Integer Range", - "Count", "Double Range", "Count"); - Console.WriteLine( - "{0,21}{1,10}{2,20}{3,10}", "-------------", - "-----", "------------", "-----"); + Console.WriteLine($"{"Integer Range",21}{"Count",10}{"Double Range",20}{"Count",10}"); + Console.WriteLine($"{"-------------",21}{"-----",10}{"------------",20}{"-----",10}"); // Generate random integers and doubles, and then count // them by group. for (int i = 0; i < runCount; i++) { - intCounts[ (int)((double)randObj.Next() / - intGroupSize) ]++; - realCounts[ (int)(randObj.NextDouble() * - (double)distGroupCount) ]++; + intCounts[(int)((double)randObj.Next() / + intGroupSize)]++; + realCounts[(int)(randObj.NextDouble() * + (double)distGroupCount)]++; } // Display the count of each group. for (int i = 0; i < distGroupCount; i++) - Console.WriteLine( - "{0,10}-{1,10}{2,10:N0}{3,12:N5}-{4,7:N5}{5,10:N0}", - (int)((double)i * intGroupSize), - (int)((double)(i + 1) * intGroupSize - 1.0), - intCounts[ i ], - ((double)i) / (double)distGroupCount, - ((double)(i + 1)) / (double)distGroupCount, - realCounts[ i ]); + Console.WriteLine($"{(int)((double)i * intGroupSize),10}-{(int)((double)(i + 1) * intGroupSize - 1.0),10}{intCounts[i],10:N0}{((double)i) / (double)distGroupCount,12:N5}-{((double)(i + 1)) / (double)distGroupCount,7:N5}{realCounts[i],10:N0}"); } } diff --git a/snippets/csharp/System/Random/NextBytes/source.cs b/snippets/csharp/System/Random/NextBytes/source.cs index 5f05b24328f..d340bd97112 100644 --- a/snippets/csharp/System/Random/NextBytes/source.cs +++ b/snippets/csharp/System/Random/NextBytes/source.cs @@ -5,12 +5,12 @@ public class Example public static void Main() { // - Random rnd = new Random(); - Byte[] b = new Byte[10]; + Random rnd = new(); + byte[] b = new byte[10]; rnd.NextBytes(b); Console.WriteLine("The Random bytes are: "); for (int i = 0; i <= b.GetUpperBound(0); i++) - Console.WriteLine("{0}: {1}", i, b[i]); + Console.WriteLine($"{i}: {b[i]}"); // The example displays output similar to the following: // The Random bytes are: diff --git a/snippets/csharp/System/Random/NextDouble/nextdouble1.cs b/snippets/csharp/System/Random/NextDouble/nextdouble1.cs index c4b0b13e099..b6204b8c8bd 100644 --- a/snippets/csharp/System/Random/NextDouble/nextdouble1.cs +++ b/snippets/csharp/System/Random/NextDouble/nextdouble1.cs @@ -2,33 +2,34 @@ public class Example { - public static void Main() - { - // - int[] frequency = new int[10]; - double number; - Random rnd = new Random(); + public static void Main() + { + // + int[] frequency = new int[10]; + double number; + Random rnd = new(); - for (int ctr = 0; ctr <= 99; ctr++) { - number = rnd.NextDouble(); - frequency[(int) Math.Floor(number*10)] ++; - } - Console.WriteLine("Distribution of Random Numbers:"); - for (int ctr = frequency.GetLowerBound(0); ctr <= frequency.GetUpperBound(0); ctr++) - Console.WriteLine("0.{0}0-0.{0}9 {1}", ctr, frequency[ctr]); + for (int ctr = 0; ctr <= 99; ctr++) + { + number = rnd.NextDouble(); + frequency[(int)Math.Floor(number * 10)]++; + } + Console.WriteLine("Distribution of Random Numbers:"); + for (int ctr = frequency.GetLowerBound(0); ctr <= frequency.GetUpperBound(0); ctr++) + Console.WriteLine("0.{0}0-0.{0}9 {1}", ctr, frequency[ctr]); - // The following example displays output similar to the following: - // Distribution of Random Numbers: - // 0.00-0.09 16 - // 0.10-0.19 8 - // 0.20-0.29 8 - // 0.30-0.39 11 - // 0.40-0.49 9 - // 0.50-0.59 6 - // 0.60-0.69 13 - // 0.70-0.79 6 - // 0.80-0.89 9 - // 0.90-0.99 14 - // - } + // The following example displays output similar to the following: + // Distribution of Random Numbers: + // 0.00-0.09 16 + // 0.10-0.19 8 + // 0.20-0.29 8 + // 0.30-0.39 11 + // 0.40-0.49 9 + // 0.50-0.59 6 + // 0.60-0.69 13 + // 0.70-0.79 6 + // 0.80-0.89 9 + // 0.90-0.99 14 + // + } } diff --git a/snippets/csharp/System/Random/Overview/Next2.cs b/snippets/csharp/System/Random/Overview/Next2.cs index 123ae011b2c..6571e692ebd 100644 --- a/snippets/csharp/System/Random/Overview/Next2.cs +++ b/snippets/csharp/System/Random/Overview/Next2.cs @@ -2,50 +2,50 @@ public class Example9 { - public static void Main() - { - // - Random rnd = new(); + public static void Main() + { + // + Random rnd = new(); - Console.WriteLine("\n20 random integers from -100 to 100:"); - for (int ctr = 1; ctr <= 20; ctr++) - { - Console.Write("{0,6}", rnd.Next(-100, 101)); - if (ctr % 5 == 0) Console.WriteLine(); - } + Console.WriteLine("\n20 random integers from -100 to 100:"); + for (int ctr = 1; ctr <= 20; ctr++) + { + Console.Write($"{rnd.Next(-100, 101),6}"); + if (ctr % 5 == 0) Console.WriteLine(); + } - Console.WriteLine("\n20 random integers from 1000 to 10000:"); - for (int ctr = 1; ctr <= 20; ctr++) - { - Console.Write("{0,8}", rnd.Next(1000, 10001)); - if (ctr % 5 == 0) Console.WriteLine(); - } + Console.WriteLine("\n20 random integers from 1000 to 10000:"); + for (int ctr = 1; ctr <= 20; ctr++) + { + Console.Write($"{rnd.Next(1000, 10001),8}"); + if (ctr % 5 == 0) Console.WriteLine(); + } - Console.WriteLine("\n20 random integers from 1 to 10:"); - for (int ctr = 1; ctr <= 20; ctr++) - { - Console.Write("{0,6}", rnd.Next(1, 11)); - if (ctr % 5 == 0) Console.WriteLine(); - } + Console.WriteLine("\n20 random integers from 1 to 10:"); + for (int ctr = 1; ctr <= 20; ctr++) + { + Console.Write($"{rnd.Next(1, 11),6}"); + if (ctr % 5 == 0) Console.WriteLine(); + } - // The example displays output similar to the following: - // 20 random integers from -100 to 100: - // 65 -95 -10 90 -35 - // -83 -16 -15 -19 41 - // -67 -93 40 12 62 - // -80 -95 67 -81 -21 - // - // 20 random integers from 1000 to 10000: - // 4857 9897 4405 6606 1277 - // 9238 9113 5151 8710 1187 - // 2728 9746 1719 3837 3736 - // 8191 6819 4923 2416 3028 - // - // 20 random integers from 1 to 10: - // 9 8 5 9 9 - // 9 1 2 3 8 - // 1 4 8 10 5 - // 9 7 9 10 5 - // - } + // The example displays output similar to the following: + // 20 random integers from -100 to 100: + // 65 -95 -10 90 -35 + // -83 -16 -15 -19 41 + // -67 -93 40 12 62 + // -80 -95 67 -81 -21 + // + // 20 random integers from 1000 to 10000: + // 4857 9897 4405 6606 1277 + // 9238 9113 5151 8710 1187 + // 2728 9746 1719 3837 3736 + // 8191 6819 4923 2416 3028 + // + // 20 random integers from 1 to 10: + // 9 8 5 9 9 + // 9 1 2 3 8 + // 1 4 8 10 5 + // 9 7 9 10 5 + // + } } diff --git a/snippets/csharp/System/Random/Overview/Random2.cs b/snippets/csharp/System/Random/Overview/Random2.cs index c95f92491d6..66a60fdea13 100644 --- a/snippets/csharp/System/Random/Overview/Random2.cs +++ b/snippets/csharp/System/Random/Overview/Random2.cs @@ -13,37 +13,37 @@ public static void Main() rand.NextBytes(bytes); Console.WriteLine("Five random byte values:"); foreach (byte byteValue in bytes) - Console.Write("{0, 5}", byteValue); + Console.Write($"{byteValue,5}"); Console.WriteLine(); // Generate and display 5 random integers. Console.WriteLine("Five random integer values:"); for (int ctr = 0; ctr <= 4; ctr++) - Console.Write("{0,15:N0}", rand.Next()); + Console.Write($"{rand.Next(),15:N0}"); Console.WriteLine(); // Generate and display 5 random integers between 0 and 100. Console.WriteLine("Five random integers between 0 and 100:"); for (int ctr = 0; ctr <= 4; ctr++) - Console.Write("{0,8:N0}", rand.Next(101)); + Console.Write($"{rand.Next(101),8:N0}"); Console.WriteLine(); // Generate and display 5 random integers from 50 to 100. Console.WriteLine("Five random integers between 50 and 100:"); for (int ctr = 0; ctr <= 4; ctr++) - Console.Write("{0,8:N0}", rand.Next(50, 101)); + Console.Write($"{rand.Next(50, 101),8:N0}"); Console.WriteLine(); // Generate and display 5 random floating point values from 0 to 1. Console.WriteLine("Five Doubles."); for (int ctr = 0; ctr <= 4; ctr++) - Console.Write("{0,8:N3}", rand.NextDouble()); + Console.Write($"{rand.NextDouble(),8:N3}"); Console.WriteLine(); // Generate and display 5 random floating point values from 0 to 5. Console.WriteLine("Five Doubles between 0 and 5."); for (int ctr = 0; ctr <= 4; ctr++) - Console.Write("{0,8:N3}", rand.NextDouble() * 5); + Console.Write($"{rand.NextDouble() * 5,8:N3}"); // The example displays output like the following: // Five random byte values: diff --git a/snippets/csharp/System/Random/Overview/booleans1.cs b/snippets/csharp/System/Random/Overview/booleans1.cs index 8c2a2a9ed54..078734bfcad 100644 --- a/snippets/csharp/System/Random/Overview/booleans1.cs +++ b/snippets/csharp/System/Random/Overview/booleans1.cs @@ -18,12 +18,8 @@ public static void Main() else totalFalse++; } - Console.WriteLine("Number of true values: {0,7:N0} ({1:P3})", - totalTrue, - ((double)totalTrue) / (totalTrue + totalFalse)); - Console.WriteLine("Number of false values: {0,7:N0} ({1:P3})", - totalFalse, - ((double)totalFalse) / (totalTrue + totalFalse)); + Console.WriteLine($"Number of true values: {totalTrue,7:N0} ({((double)totalTrue) / (totalTrue + totalFalse):P3})"); + Console.WriteLine($"Number of false values: {totalFalse,7:N0} ({((double)totalFalse) / (totalTrue + totalFalse):P3})"); } } @@ -31,15 +27,9 @@ public class BooleanGenerator { Random rnd; - public BooleanGenerator() - { - rnd = new Random(); - } + public BooleanGenerator() => rnd = new(); - public bool NextBoolean() - { - return rnd.Next(0, 2) == 1; - } + public bool NextBoolean() => rnd.Next(0, 2) == 1; } // The example displays output like the following: // Number of true values: 500,004 (50.000 %) diff --git a/snippets/csharp/System/Random/Overview/booleans2.cs b/snippets/csharp/System/Random/Overview/booleans2.cs index 70483c07c19..f892675e01c 100644 --- a/snippets/csharp/System/Random/Overview/booleans2.cs +++ b/snippets/csharp/System/Random/Overview/booleans2.cs @@ -18,17 +18,10 @@ public static void Main() else totalFalse++; } - Console.WriteLine("Number of true values: {0,7:N0} ({1:P3})", - totalTrue, - ((double)totalTrue) / (totalTrue + totalFalse)); - Console.WriteLine("Number of false values: {0,7:N0} ({1:P3})", - totalFalse, - ((double)totalFalse) / (totalTrue + totalFalse)); + Console.WriteLine($"Number of true values: {totalTrue,7:N0} ({((double)totalTrue) / (totalTrue + totalFalse):P3})"); + Console.WriteLine($"Number of false values: {totalFalse,7:N0} ({((double)totalFalse) / (totalTrue + totalFalse):P3})"); - bool NextBoolean() - { - return rnd.Next(0, 2) == 1; - } + bool NextBoolean() => rnd.Next(0, 2) == 1; // The example displays output like the following: // Number of true values: 499,777 (49.978 %) diff --git a/snippets/csharp/System/Random/Overview/doublerange1.cs b/snippets/csharp/System/Random/Overview/doublerange1.cs index a5098632c36..bf80c8915c4 100644 --- a/snippets/csharp/System/Random/Overview/doublerange1.cs +++ b/snippets/csharp/System/Random/Overview/doublerange1.cs @@ -19,11 +19,9 @@ public static void Main() count[(int)(number / ONE_TENTH)]++; } // Display breakdown by range. - Console.WriteLine("{0,28} {1,32} {2,7}\n", "Range", "Count", "Pct."); + Console.WriteLine($"{"Range",28} {"Count",32} {"Pct.",7}\n"); for (int ctr = 0; ctr <= 9; ctr++) - Console.WriteLine("{0,25:N0}-{1,25:N0} {2,8:N0} {3,7:P2}", ctr * ONE_TENTH, - ctr < 9 ? ctr * ONE_TENTH + ONE_TENTH - 1 : long.MaxValue, - count[ctr], count[ctr] / 20000000.0); + Console.WriteLine($"{ctr * ONE_TENTH,25:N0}-{(ctr < 9 ? ctr * ONE_TENTH + ONE_TENTH - 1 : long.MaxValue),25:N0} {count[ctr],8:N0} {count[ctr] / 20000000.0,7:P2}"); // The example displays output like the following: // Range Count Pct. diff --git a/snippets/csharp/System/Random/Overview/doublerange3.cs b/snippets/csharp/System/Random/Overview/doublerange3.cs index 92c4a7ebe33..53460f7617e 100644 --- a/snippets/csharp/System/Random/Overview/doublerange3.cs +++ b/snippets/csharp/System/Random/Overview/doublerange3.cs @@ -18,9 +18,7 @@ public static void Main() for (int ctr = 0; ctr <= 9; ctr++) { double lowerRange = 10 + ctr * .1; - Console.WriteLine("{0:N1} to {1:N1}: {2,8:N0} ({3,7:P2})", - lowerRange, lowerRange + .1, range[ctr], - range[ctr] / 1000000.0); + Console.WriteLine($"{lowerRange:N1} to {lowerRange + .1:N1}: {range[ctr],8:N0} ({range[ctr] / 1000000.0,7:P2})"); } // The example displays output like the following: diff --git a/snippets/csharp/System/Random/Overview/long1.cs b/snippets/csharp/System/Random/Overview/long1.cs index 10f76c4b328..5ae2f401f6f 100644 --- a/snippets/csharp/System/Random/Overview/long1.cs +++ b/snippets/csharp/System/Random/Overview/long1.cs @@ -19,11 +19,9 @@ public static void Main() count[(int)(number / ONE_TENTH)]++; } // Display breakdown by range. - Console.WriteLine("{0,28} {1,32} {2,7}\n", "Range", "Count", "Pct."); + Console.WriteLine($"{"Range",28} {"Count",32} {"Pct.",7}\n"); for (int ctr = 0; ctr <= 9; ctr++) - Console.WriteLine("{0,25:N0}-{1,25:N0} {2,8:N0} {3,7:P2}", ctr * ONE_TENTH, - ctr < 9 ? ctr * ONE_TENTH + ONE_TENTH - 1 : long.MaxValue, - count[ctr], count[ctr] / 20000000.0); + Console.WriteLine($"{ctr * ONE_TENTH,25:N0}-{(ctr < 9 ? ctr * ONE_TENTH + ONE_TENTH - 1 : long.MaxValue),25:N0} {count[ctr],8:N0} {count[ctr] / 20000000.0,7:P2}"); // The example displays output like the following: // Range Count Pct. diff --git a/snippets/csharp/System/Random/Overview/next.cs b/snippets/csharp/System/Random/Overview/next.cs index 39ac1861c06..fbf4eb1efe3 100644 --- a/snippets/csharp/System/Random/Overview/next.cs +++ b/snippets/csharp/System/Random/Overview/next.cs @@ -4,7 +4,7 @@ public class RandomNextDemo { static void Main() - { + { // Console.WriteLine( """ @@ -20,7 +20,7 @@ bounds. Note the effect\nthat the various combinations of bounds have on the sequences. """ ); - + NoBoundsRandoms(234); UpperBoundRandoms(234, int.MaxValue); diff --git a/snippets/csharp/System/Random/Overview/threadsafeex1.cs b/snippets/csharp/System/Random/Overview/threadsafeex1.cs index ea88b8c3e9d..9e86f956c27 100644 --- a/snippets/csharp/System/Random/Overview/threadsafeex1.cs +++ b/snippets/csharp/System/Random/Overview/threadsafeex1.cs @@ -16,11 +16,11 @@ public class Example18 public Example18() { - s_rand = new Random(); - s_randLock = new object(); - s_numericLock = new object(); - s_countdown = new CountdownEvent(1); - s_source = new CancellationTokenSource(); + s_rand = new(); + s_randLock = new(); + s_numericLock = new(); + s_countdown = new(1); + s_source = new(); } public static void Main() diff --git a/snippets/csharp/System/Random/Overview/threadsafeex2.cs b/snippets/csharp/System/Random/Overview/threadsafeex2.cs index 9f7ef357321..85bd6a4b84a 100644 --- a/snippets/csharp/System/Random/Overview/threadsafeex2.cs +++ b/snippets/csharp/System/Random/Overview/threadsafeex2.cs @@ -14,10 +14,10 @@ public class Example19 public Example19() { - s_rand = new Random(); - s_randLock = new object(); - s_numericLock = new object(); - s_source = new CancellationTokenSource(); + s_rand = new(); + s_randLock = new(); + s_numericLock = new(); + s_source = new(); } public static async Task Main() @@ -65,10 +65,10 @@ private async Task Execute() } // Show result. - Console.WriteLine("Task {0} finished execution.", taskNo); - Console.WriteLine("Random numbers generated: {0:N0}", taskCtr); - Console.WriteLine("Sum of random numbers: {0:N2}", taskTotal); - Console.WriteLine("Random number mean: {0:N4}\n", taskTotal / taskCtr); + Console.WriteLine($"Task {taskNo} finished execution."); + Console.WriteLine($"Random numbers generated: {taskCtr:N0}"); + Console.WriteLine($"Sum of random numbers: {taskTotal:N2}"); + Console.WriteLine($"Random number mean: {taskTotal / taskCtr:N4}\n"); // Update overall totals. lock (s_numericLock) @@ -91,9 +91,9 @@ private async Task Execute() foreach (Exception inner in e.InnerExceptions) { if (inner is TaskCanceledException canc) - Console.WriteLine("Task #{0} cancelled.", canc.Task.Id); + Console.WriteLine($"Task #{canc.Task.Id} cancelled."); else - Console.WriteLine("Exception: {0}", inner.GetType().Name); + Console.WriteLine($"Exception: {inner.GetType().Name}"); } } finally diff --git a/snippets/csharp/System/Random/Overview/unique.cs b/snippets/csharp/System/Random/Overview/unique.cs index dcc2da0789f..7403d1d422b 100644 --- a/snippets/csharp/System/Random/Overview/unique.cs +++ b/snippets/csharp/System/Random/Overview/unique.cs @@ -13,11 +13,11 @@ public static void Main() Console.WriteLine("\nThe first random number generator:"); for (int ctr = 1; ctr <= 10; ctr++) - Console.WriteLine(" {0}", rnd1.Next()); + Console.WriteLine($" {rnd1.Next()}"); Console.WriteLine("\nThe second random number generator:"); for (int ctr = 1; ctr <= 10; ctr++) - Console.WriteLine(" {0}", rnd2.Next()); + Console.WriteLine($" {rnd2.Next()}"); } } // The example displays output like the following: diff --git a/snippets/csharp/System/Random/Overview/uniquearray1.cs b/snippets/csharp/System/Random/Overview/uniquearray1.cs index 3d570b52193..8e05e57dec6 100644 --- a/snippets/csharp/System/Random/Overview/uniquearray1.cs +++ b/snippets/csharp/System/Random/Overview/uniquearray1.cs @@ -7,10 +7,7 @@ public class Card public Suit Suit; public FaceValue FaceValue; - public override string ToString() - { - return string.Format("{0:F} of {1:F}", FaceValue, Suit); - } + public override string ToString() => $"{FaceValue:F} of {Suit:F}"; } public enum Suit { Hearts, Diamonds, Spades, Clubs }; @@ -36,7 +33,7 @@ public class Dealer public Dealer() { - _rnd = new Random(); + _rnd = new(); // Initialize the deck. int deckCtr = 0; foreach (object suit in Enum.GetValues(typeof(Suit))) @@ -97,7 +94,7 @@ private static void ShowCards(Card[] cards) { foreach (Card card in cards) if (card != null) - Console.WriteLine("{0} of {1}", card.FaceValue, card.Suit); + Console.WriteLine($"{card.FaceValue} of {card.Suit}"); } } // The example displays output like the following: diff --git a/snippets/csharp/System/ReadOnlySpanT/GetPinnableReference/getpinnablereference1.cs b/snippets/csharp/System/ReadOnlySpanT/GetPinnableReference/getpinnablereference1.cs index 0a696d41bb1..f1f685688b8 100644 --- a/snippets/csharp/System/ReadOnlySpanT/GetPinnableReference/getpinnablereference1.cs +++ b/snippets/csharp/System/ReadOnlySpanT/GetPinnableReference/getpinnablereference1.cs @@ -1,4 +1,4 @@ -using System; +using System; // Note: you must compile this sample using the unsafe flag. // From the command line, type the following: csc sample.cs /unsafe @@ -34,10 +34,7 @@ public static unsafe void Main() } } - private static int[] CreateInt32Array() - { - return new int[] { 100, 200, 300, 400, 500 }; - } + private static int[] CreateInt32Array() =>[ 100, 200, 300, 400, 500 ]; } // The example displays the following output: diff --git a/snippets/csharp/System/RuntimeTypeHandle/Overview/type_gettypehandle.cs b/snippets/csharp/System/RuntimeTypeHandle/Overview/type_gettypehandle.cs index 3a4def83465..ce060d61ac7 100644 --- a/snippets/csharp/System/RuntimeTypeHandle/Overview/type_gettypehandle.cs +++ b/snippets/csharp/System/RuntimeTypeHandle/Overview/type_gettypehandle.cs @@ -1,41 +1,35 @@ // using System; -using System.Reflection; + public class MyClass1 { - private int x=0; - public int MyMethod() - { - return x; - } + private int x = 0; + public int MyMethod() => x; } public class MyClass2 { public static void Main() { - MyClass1 myClass1 = new MyClass1(); + MyClass1 myClass1 = new(); // Get the RuntimeTypeHandle from an object. RuntimeTypeHandle myRTHFromObject = Type.GetTypeHandle(myClass1); // Get the RuntimeTypeHandle from a type. RuntimeTypeHandle myRTHFromType = typeof(MyClass1).TypeHandle; - Console.WriteLine("\nmyRTHFromObject.Value: {0}", myRTHFromObject.Value); - Console.WriteLine("myRTHFromObject.GetType(): {0}", myRTHFromObject.GetType()); + Console.WriteLine($"\nmyRTHFromObject.Value: {myRTHFromObject.Value}"); + Console.WriteLine($"myRTHFromObject.GetType(): {myRTHFromObject.GetType()}"); Console.WriteLine("Get the type back from the handle..."); - Console.WriteLine("Type.GetTypeFromHandle(myRTHFromObject): {0}", - Type.GetTypeFromHandle(myRTHFromObject)); + Console.WriteLine($"Type.GetTypeFromHandle(myRTHFromObject): {Type.GetTypeFromHandle(myRTHFromObject)}"); - Console.WriteLine("\nmyRTHFromObject.Equals(myRTHFromType): {0}", - myRTHFromObject.Equals(myRTHFromType)); + Console.WriteLine($"\nmyRTHFromObject.Equals(myRTHFromType): {myRTHFromObject.Equals(myRTHFromType)}"); - Console.WriteLine("\nmyRTHFromType.Value: {0}", myRTHFromType.Value); - Console.WriteLine("myRTHFromType.GetType(): {0}", myRTHFromType.GetType()); + Console.WriteLine($"\nmyRTHFromType.Value: {myRTHFromType.Value}"); + Console.WriteLine($"myRTHFromType.GetType(): {myRTHFromType.GetType()}"); Console.WriteLine("Get the type back from the handle..."); - Console.WriteLine("Type.GetTypeFromHandle(myRTHFromType): {0}", - Type.GetTypeFromHandle(myRTHFromType)); + Console.WriteLine($"Type.GetTypeFromHandle(myRTHFromType): {Type.GetTypeFromHandle(myRTHFromType)}"); } } diff --git a/snippets/csharp/System/SByte/MaxValue/MaxValue1.cs b/snippets/csharp/System/SByte/MaxValue/MaxValue1.cs index ddf3b1c4b76..4070fb14c4a 100644 --- a/snippets/csharp/System/SByte/MaxValue/MaxValue1.cs +++ b/snippets/csharp/System/SByte/MaxValue/MaxValue1.cs @@ -2,39 +2,36 @@ public class SByteRangeExample { - public static void Main() - { - // - long longValue = -130; - sbyte byteValue; - - if (longValue <= sbyte.MaxValue && - longValue >= sbyte.MinValue) - { - byteValue = (sbyte) longValue; - Console.WriteLine("Converted long integer value to {0}.", byteValue); - } - else - { - sbyte rangeLimit; - string relationship; - - if (longValue > sbyte.MaxValue) - { - rangeLimit = sbyte.MaxValue; - relationship = "greater"; - } - else - { - rangeLimit = sbyte.MinValue; - relationship = "less"; - } + public static void Main() + { + // + long longValue = -130; + sbyte byteValue; - Console.WriteLine("Conversion failure: {0:n0} is {1} than {2}.", - longValue, - relationship, - rangeLimit); - } - // - } + if (longValue <= sbyte.MaxValue && + longValue >= sbyte.MinValue) + { + byteValue = (sbyte)longValue; + Console.WriteLine($"Converted long integer value to {byteValue}."); + } + else + { + sbyte rangeLimit; + string relationship; + + if (longValue > sbyte.MaxValue) + { + rangeLimit = sbyte.MaxValue; + relationship = "greater"; + } + else + { + rangeLimit = sbyte.MinValue; + relationship = "less"; + } + + Console.WriteLine($"Conversion failure: {longValue:n0} is {relationship} than {rangeLimit}."); + } + // + } } diff --git a/snippets/csharp/System/SByte/Parse/Program.cs b/snippets/csharp/System/SByte/Parse/Program.cs new file mode 100644 index 00000000000..ddcbf34259a --- /dev/null +++ b/snippets/csharp/System/SByte/Parse/Program.cs @@ -0,0 +1,4 @@ +SByteParseDefaultExample.Run(); +SByteParseStylesExample.Run(); +SByteConversion.Run(); +SByteParseProviderExample.Run(); diff --git a/snippets/csharp/System/SByte/Parse/Project.csproj b/snippets/csharp/System/SByte/Parse/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/SByte/Parse/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/SByte/Parse/parse_1.cs b/snippets/csharp/System/SByte/Parse/parse_1.cs index 270d3a5c0cb..2b0b413595d 100644 --- a/snippets/csharp/System/SByte/Parse/parse_1.cs +++ b/snippets/csharp/System/SByte/Parse/parse_1.cs @@ -4,77 +4,74 @@ public class SByteConversion { - NumberFormatInfo provider = NumberFormatInfo.CurrentInfo; + NumberFormatInfo provider = NumberFormatInfo.CurrentInfo; - public static void Main() - { - string stringValue; - NumberStyles style; + public static void Run() + { + string stringValue; + NumberStyles style; - stringValue = " 123 "; - style = NumberStyles.None; - CallParseOperation(stringValue, style); - - stringValue = "000,000,123"; - style = NumberStyles.Integer | NumberStyles.AllowThousands; - CallParseOperation(stringValue, style); - - stringValue = "-100"; - style = NumberStyles.AllowLeadingSign; - CallParseOperation(stringValue, style); - - stringValue = "100-"; - style = NumberStyles.AllowLeadingSign; - CallParseOperation(stringValue, style); - - stringValue = "100-"; - style = NumberStyles.AllowTrailingSign; - CallParseOperation(stringValue, style); - - stringValue = "$100"; - style = NumberStyles.AllowCurrencySymbol; - CallParseOperation(stringValue, style); - - style = NumberStyles.Integer; - CallParseOperation(stringValue, style); - - style = NumberStyles.AllowDecimalPoint; - CallParseOperation("100.0", style); - - stringValue = "1e02"; - style = NumberStyles.AllowExponent; - CallParseOperation(stringValue, style); - - stringValue = "(100)"; - style = NumberStyles.AllowParentheses; - CallParseOperation(stringValue, style); - } - - private static void CallParseOperation(string stringValue, - NumberStyles style) - { - sbyte number; - - if (stringValue == null) - Console.WriteLine("Cannot parse a null string..."); - - try - { - number = sbyte.Parse(stringValue, style); - Console.WriteLine("SByte.Parse('{0}', {1})) = {2}", - stringValue, style, number); - } - catch (FormatException) - { - Console.WriteLine("'{0}' and {1} throw a FormatException", - stringValue, style); - } - catch (OverflowException) - { - Console.WriteLine("'{0}' is outside the range of a signed byte", - stringValue); - } - } + stringValue = " 123 "; + style = NumberStyles.None; + CallParseOperation(stringValue, style); + + stringValue = "000,000,123"; + style = NumberStyles.Integer | NumberStyles.AllowThousands; + CallParseOperation(stringValue, style); + + stringValue = "-100"; + style = NumberStyles.AllowLeadingSign; + CallParseOperation(stringValue, style); + + stringValue = "100-"; + style = NumberStyles.AllowLeadingSign; + CallParseOperation(stringValue, style); + + stringValue = "100-"; + style = NumberStyles.AllowTrailingSign; + CallParseOperation(stringValue, style); + + stringValue = "$100"; + style = NumberStyles.AllowCurrencySymbol; + CallParseOperation(stringValue, style); + + style = NumberStyles.Integer; + CallParseOperation(stringValue, style); + + style = NumberStyles.AllowDecimalPoint; + CallParseOperation("100.0", style); + + stringValue = "1e02"; + style = NumberStyles.AllowExponent; + CallParseOperation(stringValue, style); + + stringValue = "(100)"; + style = NumberStyles.AllowParentheses; + CallParseOperation(stringValue, style); + } + + private static void CallParseOperation(string stringValue, + NumberStyles style) + { + sbyte number; + + if (stringValue == null) + Console.WriteLine("Cannot parse a null string..."); + + try + { + number = sbyte.Parse(stringValue, style); + Console.WriteLine($"SByte.Parse('{stringValue}', {style}) = {number}"); + } + catch (FormatException) + { + Console.WriteLine($"'{stringValue}' and {style} throw a FormatException"); + } + catch (OverflowException) + { + Console.WriteLine($"'{stringValue}' is outside the range of a signed byte"); + } + } } // The example displays the following information to the console: // ' 123 ' and None throw a FormatException diff --git a/snippets/csharp/System/SByte/Parse/parseex1.cs b/snippets/csharp/System/SByte/Parse/parseex1.cs index 7ea26bee91c..b06f1e0d1de 100644 --- a/snippets/csharp/System/SByte/Parse/parseex1.cs +++ b/snippets/csharp/System/SByte/Parse/parseex1.cs @@ -1,40 +1,40 @@ using System; -public class Example +public class SByteParseDefaultExample { - public static void Main() - { - // - // Define an array of numeric strings. - string[] values = { "-16", " -3", "+ 12", " +12 ", " 12 ", - "+120", "(103)", "192", "-160" }; - - // Parse each string and display the result. - foreach (string value in values) - { - try { - Console.WriteLine("Converted '{0}' to the SByte value {1}.", - value, SByte.Parse(value)); - } - catch (FormatException) { - Console.WriteLine("'{0}' cannot be parsed successfully by SByte type.", - value); - } - catch (OverflowException) { - Console.WriteLine("'{0}' is out of range of the SByte type.", - value); - } - } - // The example displays the following output: - // Converted '-16' to the SByte value -16. - // Converted ' -3' to the SByte value -3. - // '+ 12' cannot be parsed successfully by SByte type. - // Converted ' +12 ' to the SByte value 12. - // Converted ' 12 ' to the SByte value 12. - // Converted '+120' to the SByte value 120. - // '(103)' cannot be parsed successfully by SByte type. - // '192' is out of range of the SByte type. - // '-160' is out of range of the SByte type. - // - } + public static void Run() + { + // + // Define an array of numeric strings. + string[] values = ["-16", " -3", "+ 12", " +12 ", " 12 ", + "+120", "(103)", "192", "-160"]; + + // Parse each string and display the result. + foreach (string value in values) + { + try + { + Console.WriteLine($"Converted '{value}' to the SByte value {sbyte.Parse(value)}."); + } + catch (FormatException) + { + Console.WriteLine($"'{value}' cannot be parsed successfully by SByte type."); + } + catch (OverflowException) + { + Console.WriteLine($"'{value}' is out of range of the SByte type."); + } + } + // The example displays the following output: + // Converted '-16' to the SByte value -16. + // Converted ' -3' to the SByte value -3. + // '+ 12' cannot be parsed successfully by SByte type. + // Converted ' +12 ' to the SByte value 12. + // Converted ' 12 ' to the SByte value 12. + // Converted '+120' to the SByte value 120. + // '(103)' cannot be parsed successfully by SByte type. + // '192' is out of range of the SByte type. + // '-160' is out of range of the SByte type. + // + } } diff --git a/snippets/csharp/System/SByte/Parse/parseex2.cs b/snippets/csharp/System/SByte/Parse/parseex2.cs index 180b56a6661..133f250ba97 100644 --- a/snippets/csharp/System/SByte/Parse/parseex2.cs +++ b/snippets/csharp/System/SByte/Parse/parseex2.cs @@ -2,55 +2,60 @@ using System; using System.Globalization; -public class Example +public class SByteParseStylesExample { - public static void Main() - { - NumberStyles style; - sbyte number; + public static void Run() + { + NumberStyles style; + sbyte number; - // Parse value with no styles allowed. - string[] values1 = { " 121 ", "121", "-121" }; - style = NumberStyles.None; - Console.WriteLine("Styles: {0}", style.ToString()); - foreach (string value in values1) - { - try { - number = SByte.Parse(value, style); - Console.WriteLine(" Converted '{0}' to {1}.", value, number); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - } - Console.WriteLine(); - - // Parse value with trailing sign. - style = NumberStyles.Integer | NumberStyles.AllowTrailingSign; - string[] values2 = { " 103+", " 103 +", "+103", "(103)", " +103 " }; - Console.WriteLine("Styles: {0}", style.ToString()); - foreach (string value in values2) - { - try { - number = SByte.Parse(value, style); - Console.WriteLine(" Converted '{0}' to {1}.", value, number); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of range of the SByte type.", value); - } - } - Console.WriteLine(); - } + // Parse value with no styles allowed. + string[] values1 = [" 121 ", "121", "-121"]; + style = NumberStyles.None; + Console.WriteLine($"Styles: {style}"); + foreach (string value in values1) + { + try + { + number = sbyte.Parse(value, style); + Console.WriteLine($" Converted '{value}' to {number}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + } + Console.WriteLine(); + + // Parse value with trailing sign. + style = NumberStyles.Integer | NumberStyles.AllowTrailingSign; + string[] values2 = [" 103+", " 103 +", "+103", "(103)", " +103 "]; + Console.WriteLine($"Styles: {style}"); + foreach (string value in values2) + { + try + { + number = sbyte.Parse(value, style); + Console.WriteLine($" Converted '{value}' to {number}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of range of the SByte type."); + } + } + Console.WriteLine(); + } } // The example displays the following output: // Styles: None // Unable to parse ' 121 '. // Converted '121' to 121. // Unable to parse '-121'. -// +// // Styles: Integer, AllowTrailingSign // Converted ' 103+' to 103. // Converted ' 103 +' to 103. diff --git a/snippets/csharp/System/SByte/Parse/parseex3.cs b/snippets/csharp/System/SByte/Parse/parseex3.cs index bcf7c78017b..1111e07c903 100644 --- a/snippets/csharp/System/SByte/Parse/parseex3.cs +++ b/snippets/csharp/System/SByte/Parse/parseex3.cs @@ -2,34 +2,38 @@ using System; using System.Globalization; -public class Example +public class SByteParseProviderExample { - public static void Main() - { - NumberFormatInfo nf = new NumberFormatInfo(); - nf.NegativeSign = "~"; - - string[] values = { "-103", "+12", "~16", " 1", "~255" }; - IFormatProvider[] providers = { nf, CultureInfo.InvariantCulture }; - - foreach (IFormatProvider provider in providers) - { - Console.WriteLine("Conversions using {0}:", ((object) provider).GetType().Name); - foreach (string value in values) - { - try { - Console.WriteLine(" Converted '{0}' to {1}.", - value, SByte.Parse(value, provider)); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of range of the SByte type.", value); + public static void Run() + { + NumberFormatInfo nf = new() + { + NegativeSign = "~" + }; + + string[] values = ["-103", "+12", "~16", " 1", "~255"]; + IFormatProvider[] providers = [nf, CultureInfo.InvariantCulture]; + + foreach (IFormatProvider provider in providers) + { + Console.WriteLine($"Conversions using {((object)provider).GetType().Name}:"); + foreach (string value in values) + { + try + { + Console.WriteLine($" Converted '{value}' to {sbyte.Parse(value, provider)}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of range of the SByte type."); + } } - } - } - } + } + } } // The example displays the following output: // Conversions using NumberFormatInfo: diff --git a/snippets/csharp/System/SByte/ToString/Program.cs b/snippets/csharp/System/SByte/ToString/Program.cs new file mode 100644 index 00000000000..76bece4a57b --- /dev/null +++ b/snippets/csharp/System/SByte/ToString/Program.cs @@ -0,0 +1,4 @@ +SByteToStringDefaultExample.Run(); +SByteToStringProviderExample.Run(); +SByteToStringFormatExample.Run(); +SByteToStringCultureExample.Run(); diff --git a/snippets/csharp/System/SByte/ToString/Project.csproj b/snippets/csharp/System/SByte/ToString/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/SByte/ToString/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/SByte/ToString/tostring2.cs b/snippets/csharp/System/SByte/ToString/tostring2.cs index f42f7cb1e20..06d455317b5 100644 --- a/snippets/csharp/System/SByte/ToString/tostring2.cs +++ b/snippets/csharp/System/SByte/ToString/tostring2.cs @@ -1,20 +1,20 @@ // using System; -public class Example +public class SByteToStringDefaultExample { - public static void Main() - { - sbyte value = -123; - // Display value using default ToString method. - Console.WriteLine(value.ToString()); // Displays -123 - // Display value using some standard format specifiers. - Console.WriteLine(value.ToString("G")); // Displays -123 - Console.WriteLine(value.ToString("C")); // Displays ($-123.00) - Console.WriteLine(value.ToString("D")); // Displays -123 - Console.WriteLine(value.ToString("F")); // Displays -123.00 - Console.WriteLine(value.ToString("N")); // Displays -123.00 - Console.WriteLine(value.ToString("X")); // Displays 85 - } + public static void Run() + { + sbyte value = -123; + // Display value using default ToString method. + Console.WriteLine(value.ToString()); // Displays -123 + // Display value using some standard format specifiers. + Console.WriteLine(value.ToString("G")); // Displays -123 + Console.WriteLine(value.ToString("C")); // Displays ($-123.00) + Console.WriteLine(value.ToString("D")); // Displays -123 + Console.WriteLine(value.ToString("F")); // Displays -123.00 + Console.WriteLine(value.ToString("N")); // Displays -123.00 + Console.WriteLine(value.ToString("X")); // Displays 85 + } } // diff --git a/snippets/csharp/System/SByte/ToString/tostring3.cs b/snippets/csharp/System/SByte/ToString/tostring3.cs index cb22ccd11f6..7a815890f84 100644 --- a/snippets/csharp/System/SByte/ToString/tostring3.cs +++ b/snippets/csharp/System/SByte/ToString/tostring3.cs @@ -2,36 +2,38 @@ using System; using System.Globalization; -public class Example +public class SByteToStringProviderExample { - public static void Main() - { - // Define a custom NumberFormatInfo object with "~" as its negative sign. - NumberFormatInfo nfi = new NumberFormatInfo(); - nfi.NegativeSign = "~"; - - // Initialize an array of SByte values. - sbyte[] bytes = { -122, 17, 124 }; + public static void Run() + { + // Define a custom NumberFormatInfo object with "~" as its negative sign. + NumberFormatInfo nfi = new() + { + NegativeSign = "~" + }; - // Display the formatted result using the custom provider. - Console.WriteLine("Using the custom NumberFormatInfo object:"); - foreach (sbyte value in bytes) - Console.WriteLine(value.ToString(nfi)); + // Initialize an array of SByte values. + sbyte[] bytes = [-122, 17, 124]; - Console.WriteLine(); - - // Display the formatted result using the invariant culture. - Console.WriteLine("Using the invariant culture:"); - foreach (sbyte value in bytes) - Console.WriteLine(value.ToString(NumberFormatInfo.InvariantInfo)); - } + // Display the formatted result using the custom provider. + Console.WriteLine("Using the custom NumberFormatInfo object:"); + foreach (sbyte value in bytes) + Console.WriteLine(value.ToString(nfi)); + + Console.WriteLine(); + + // Display the formatted result using the invariant culture. + Console.WriteLine("Using the invariant culture:"); + foreach (sbyte value in bytes) + Console.WriteLine(value.ToString(NumberFormatInfo.InvariantInfo)); + } } // The example displays the following output: // Using the custom NumberFormatInfo object: // ~122 // 17 // 124 -// +// // Using the invariant culture: // -122 // 17 diff --git a/snippets/csharp/System/SByte/ToString/tostring4.cs b/snippets/csharp/System/SByte/ToString/tostring4.cs index a6306b99045..92791063275 100644 --- a/snippets/csharp/System/SByte/ToString/tostring4.cs +++ b/snippets/csharp/System/SByte/ToString/tostring4.cs @@ -1,23 +1,23 @@ // using System; -using System.Globalization; -public class Example + +public class SByteToStringFormatExample { - public static void Main() - { - sbyte[] values = { -124, 0, 118 }; - string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", - "N", "P", "X", "00.0", "#.0", - "000;(0);**Zero**" }; - - foreach (sbyte value in values) - { - foreach (string specifier in specifiers) - Console.WriteLine("{0}: {1}", specifier, value.ToString(specifier)); - Console.WriteLine(); - } - } + public static void Run() + { + sbyte[] values = [-124, 0, 118]; + string[] specifiers = ["G", "C", "D3", "E2", "e3", "F", + "N", "P", "X", "00.0", "#.0", + "000;(0);**Zero**"]; + + foreach (sbyte value in values) + { + foreach (string specifier in specifiers) + Console.WriteLine($"{specifier}: {value.ToString(specifier)}"); + Console.WriteLine(); + } + } } // The example displays the following output: // G: -124 @@ -32,7 +32,7 @@ public static void Main() // 00.0: -124.0 // #.0: -124.0 // 000;(0);**Zero**: (124) -// +// // G: 0 // C: $0.00 // D3: 000 @@ -45,7 +45,7 @@ public static void Main() // 00.0: 00.0 // #.0: .0 // 000;(0);**Zero**: **Zero** -// +// // G: 118 // C: $118.00 // D3: 118 diff --git a/snippets/csharp/System/SByte/ToString/tostring5.cs b/snippets/csharp/System/SByte/ToString/tostring5.cs index 5f009ae9f53..cc55318e1ff 100644 --- a/snippets/csharp/System/SByte/ToString/tostring5.cs +++ b/snippets/csharp/System/SByte/ToString/tostring5.cs @@ -2,58 +2,55 @@ using System; using System.Globalization; -public class Example +public class SByteToStringCultureExample { - public static void Main() - { - // Define cultures whose formatting conventions are to be used. - CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), - CultureInfo.CreateSpecificCulture("fr-FR"), - CultureInfo.CreateSpecificCulture("es-ES") }; - sbyte positiveNumber = 119; - sbyte negativeNumber = -45; - string[] specifiers = {"G", "C", "D4", "E2", "F", "N", "P", "X2"}; - - foreach (string specifier in specifiers) - { - foreach (CultureInfo culture in cultures) - Console.WriteLine("{0,2} format using {1} culture: {2, 16} {3, 16}", - specifier, culture.Name, - positiveNumber.ToString(specifier, culture), - negativeNumber.ToString(specifier, culture)); - Console.WriteLine(); - } - } + public static void Run() + { + // Define cultures whose formatting conventions are to be used. + CultureInfo[] cultures = [CultureInfo.CreateSpecificCulture("en-US"), + CultureInfo.CreateSpecificCulture("fr-FR"), + CultureInfo.CreateSpecificCulture("es-ES")]; + sbyte positiveNumber = 119; + sbyte negativeNumber = -45; + string[] specifiers = ["G", "C", "D4", "E2", "F", "N", "P", "X2"]; + + foreach (string specifier in specifiers) + { + foreach (CultureInfo culture in cultures) + Console.WriteLine($"{specifier,2} format using {culture.Name} culture: {positiveNumber.ToString(specifier, culture),16} {negativeNumber.ToString(specifier, culture),16}"); + Console.WriteLine(); + } + } } // The example displays the following output: // G format using en-US culture: 119 -45 // G format using fr-FR culture: 119 -45 // G format using es-ES culture: 119 -45 -// +// // C format using en-US culture: $119.00 ($45.00) // C format using fr-FR culture: 119,00 € -45,00 € // C format using es-ES culture: 119,00 € -45,00 € -// +// // D4 format using en-US culture: 0119 -0045 // D4 format using fr-FR culture: 0119 -0045 // D4 format using es-ES culture: 0119 -0045 -// +// // E2 format using en-US culture: 1.19E+002 -4.50E+001 // E2 format using fr-FR culture: 1,19E+002 -4,50E+001 // E2 format using es-ES culture: 1,19E+002 -4,50E+001 -// +// // F format using en-US culture: 119.00 -45.00 // F format using fr-FR culture: 119,00 -45,00 // F format using es-ES culture: 119,00 -45,00 -// +// // N format using en-US culture: 119.00 -45.00 // N format using fr-FR culture: 119,00 -45,00 // N format using es-ES culture: 119,00 -45,00 -// +// // P format using en-US culture: 11,900.00 % -4,500.00 % // P format using fr-FR culture: 11 900,00 % -4 500,00 % // P format using es-ES culture: 11.900,00 % -4.500,00 % -// +// // X2 format using en-US culture: 77 D3 // X2 format using fr-FR culture: 77 D3 // X2 format using es-ES culture: 77 D3 diff --git a/snippets/csharp/System/SByte/TryParse/TryParse1.cs b/snippets/csharp/System/SByte/TryParse/TryParse1.cs index 5b849932e1c..12bc0215ccd 100644 --- a/snippets/csharp/System/SByte/TryParse/TryParse1.cs +++ b/snippets/csharp/System/SByte/TryParse/TryParse1.cs @@ -2,31 +2,31 @@ public class ParseSByte { - public static void Main() - { - // - string[] numericStrings = {"-3.6", "12.8", "+16.7", " 3 ", "(17)", - "-17", "+12", "18-", "987", "1,024", " 127 "}; - sbyte number; - foreach (string numericString in numericStrings) - { - if (sbyte.TryParse(numericString, out number)) - Console.WriteLine("Converted '{0}' to {1}.", numericString, number); - else - Console.WriteLine("Cannot convert '{0}' to an SByte.", numericString); - } - // The example displays the following output to the console: - // Cannot convert '-3.6' to an SByte. - // Cannot convert '12.8' to an SByte. - // Cannot convert '+16.7' to an SByte. - // Converted ' 3 ' to 3. - // Cannot convert '(17)' to an SByte. - // Converted '-17' to -17. - // Converted '+12' to 12. - // Cannot convert '18-' to an SByte. - // Cannot convert '987' to an SByte. - // Cannot convert '1,024' to an SByte. - // Converted ' 127 ' to 127. - // - } + public static void Main() + { + // + string[] numericStrings = ["-3.6", "12.8", "+16.7", " 3 ", "(17)", + "-17", "+12", "18-", "987", "1,024", " 127 "]; + sbyte number; + foreach (string numericString in numericStrings) + { + if (sbyte.TryParse(numericString, out number)) + Console.WriteLine($"Converted '{numericString}' to {number}."); + else + Console.WriteLine($"Cannot convert '{numericString}' to an SByte."); + } + // The example displays the following output to the console: + // Cannot convert '-3.6' to an SByte. + // Cannot convert '12.8' to an SByte. + // Cannot convert '+16.7' to an SByte. + // Converted ' 3 ' to 3. + // Cannot convert '(17)' to an SByte. + // Converted '-17' to -17. + // Converted '+12' to 12. + // Cannot convert '18-' to an SByte. + // Cannot convert '987' to an SByte. + // Cannot convert '1,024' to an SByte. + // Converted ' 127 ' to 127. + // + } } diff --git a/snippets/csharp/System/SByte/TryParse/tryparse2.cs b/snippets/csharp/System/SByte/TryParse/tryparse2.cs index 7c7e7867421..a7c235d4a1a 100644 --- a/snippets/csharp/System/SByte/TryParse/tryparse2.cs +++ b/snippets/csharp/System/SByte/TryParse/tryparse2.cs @@ -4,54 +4,54 @@ public class Example { - public static void Main() - { - string numericString; - NumberStyles styles; - - numericString = "106"; - styles = NumberStyles.Integer; - CallTryParse(numericString, styles); - - numericString = "-106"; - styles = NumberStyles.None; - CallTryParse(numericString, styles); - - numericString = "103.00"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); - - numericString = "103.72"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); + public static void Main() + { + string numericString; + NumberStyles styles; - numericString = "10E-01"; - styles = NumberStyles.Integer | NumberStyles.AllowExponent; - CallTryParse(numericString, styles); - - numericString = "12E-01"; - CallTryParse(numericString, styles); - - numericString = "12E01"; - CallTryParse(numericString, styles); - - numericString = "C8"; - CallTryParse(numericString, NumberStyles.HexNumber); - - numericString = "0x8C"; - CallTryParse(numericString, NumberStyles.HexNumber); - } - - private static void CallTryParse(string stringToConvert, NumberStyles styles) - { - sbyte number; - bool result = SByte.TryParse(stringToConvert, styles, - CultureInfo.InvariantCulture, out number); - if (result) - Console.WriteLine($"Converted '{stringToConvert}' to {number}."); - else - Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); - } + numericString = "106"; + styles = NumberStyles.Integer; + CallTryParse(numericString, styles); + + numericString = "-106"; + styles = NumberStyles.None; + CallTryParse(numericString, styles); + + numericString = "103.00"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "103.72"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "10E-01"; + styles = NumberStyles.Integer | NumberStyles.AllowExponent; + CallTryParse(numericString, styles); + + numericString = "12E-01"; + CallTryParse(numericString, styles); + + numericString = "12E01"; + CallTryParse(numericString, styles); + + numericString = "C8"; + CallTryParse(numericString, NumberStyles.HexNumber); + + numericString = "0x8C"; + CallTryParse(numericString, NumberStyles.HexNumber); + } + + private static void CallTryParse(string stringToConvert, NumberStyles styles) + { + sbyte number; + bool result = sbyte.TryParse(stringToConvert, styles, + CultureInfo.InvariantCulture, out number); + if (result) + Console.WriteLine($"Converted '{stringToConvert}' to {number}."); + else + Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); + } } // The example displays the following output: // Converted '106' to 106. diff --git a/snippets/csharp/System/Single/CompareTo/compareto2.cs b/snippets/csharp/System/Single/CompareTo/compareto2.cs index cdd6191ed77..1b6e27b4484 100644 --- a/snippets/csharp/System/Single/CompareTo/compareto2.cs +++ b/snippets/csharp/System/Single/CompareTo/compareto2.cs @@ -1,20 +1,20 @@ -// +// using System; public class Example2 { - public static void Main() - { - float value1 = 16.5457f; - float operand = 3.8899982f; - float value2 = value1 * operand / operand; - Console.WriteLine($"Comparing {value1} and {value2}: {value1.CompareTo(value2)}"); - Console.WriteLine(); - Console.WriteLine($"Comparing {value1:R} and {value2:R}: {value1.CompareTo(value2)}"); - } + public static void Main() + { + float value1 = 16.5457f; + float operand = 3.8899982f; + float value2 = value1 * operand / operand; + Console.WriteLine($"Comparing {value1} and {value2}: {value1.CompareTo(value2)}"); + Console.WriteLine(); + Console.WriteLine($"Comparing {value1:R} and {value2:R}: {value1.CompareTo(value2)}"); + } } // The example displays the following output: // Comparing 16.5457 and 16.5457: -1 -// +// // Comparing 16.5457 and 16.545702: -1 // diff --git a/snippets/csharp/System/Single/CompareTo/compareto3.cs b/snippets/csharp/System/Single/CompareTo/compareto3.cs index 4d5b9b389fc..62892e15298 100644 --- a/snippets/csharp/System/Single/CompareTo/compareto3.cs +++ b/snippets/csharp/System/Single/CompareTo/compareto3.cs @@ -1,20 +1,20 @@ -// +// using System; public class Example { - public static void Main() - { - float value1 = 16.5457f; - float operand = 3.8899982f; - object value2 = value1 * operand / operand; - Console.WriteLine($"Comparing {value1} and {value2}: {value1.CompareTo(value2)}"); - Console.WriteLine(); - Console.WriteLine($"Comparing {value1:R} and {value2:R}: {value1.CompareTo(value2)}"); - } + public static void Main() + { + float value1 = 16.5457f; + float operand = 3.8899982f; + object value2 = value1 * operand / operand; + Console.WriteLine($"Comparing {value1} and {value2}: {value1.CompareTo(value2)}"); + Console.WriteLine(); + Console.WriteLine($"Comparing {value1:R} and {value2:R}: {value1.CompareTo(value2)}"); + } } // The example displays the following output: // Comparing 16.5457 and 16.5457: -1 -// +// // Comparing 16.5457 and 16.545702: -1 // diff --git a/snippets/csharp/System/Single/CompareTo/singlesample.cs b/snippets/csharp/System/Single/CompareTo/singlesample.cs index 590776253ac..16cd7f9a717 100644 --- a/snippets/csharp/System/Single/CompareTo/singlesample.cs +++ b/snippets/csharp/System/Single/CompareTo/singlesample.cs @@ -2,18 +2,19 @@ namespace SingleSnippet { - class SingleSample { + class SingleSample + { public SingleSample() { - // - Single s = 4.55F; + // + float s = 4.55F; // - // - Console.WriteLine("A Single is of type {0}.", s.GetType().ToString()); + // + Console.WriteLine($"A Single is of type {s.GetType()}."); // - // + // bool done = false; string inp; do @@ -22,8 +23,8 @@ public SingleSample() inp = Console.ReadLine(); try { - s = Single.Parse(inp); - Console.WriteLine("You entered {0}.", s.ToString()); + s = float.Parse(inp); + Console.WriteLine($"You entered {s}."); done = true; } catch (FormatException) @@ -32,34 +33,34 @@ public SingleSample() } catch (Exception e) { - Console.WriteLine("An exception occurred while parsing your response: {0}", e.ToString()); + Console.WriteLine($"An exception occurred while parsing your response: {e}"); } } while (!done); // - // - if (s > Single.MaxValue) + // + if (s > float.MaxValue) { Console.WriteLine("Your number is larger than a Single."); } // - // - if (s < Single.MinValue) + // + if (s < float.MinValue) { Console.WriteLine("Your number is smaller than a Single."); } // - // - Console.WriteLine("Epsilon, or the permittivity of a vacuum, has value {0}", Single.Epsilon.ToString()); + // + Console.WriteLine($"Epsilon, or the permittivity of a vacuum, has value {float.Epsilon}"); // - // - Single zero = 0; + // + float zero = 0; // This condition will return false. - if ((0 / zero) == Single.NaN) + if ((0 / zero) == float.NaN) { Console.WriteLine("0 / 0 can be tested with Single.NaN."); } @@ -69,53 +70,53 @@ public SingleSample() } // - // + // // This will return true. - if (Single.IsNaN(0 / zero)) + if (float.IsNaN(0 / zero)) { Console.WriteLine("Single.IsNan() can determine whether a value is not-a-number."); } // - // + // // This will equal Infinity. - Console.WriteLine("10.0 minus NegativeInfinity equals {0}.", (10.0 - Single.NegativeInfinity).ToString()); + Console.WriteLine($"10.0 minus NegativeInfinity equals {10.0 - float.NegativeInfinity}."); // - // + // // This will equal Infinity. - Console.WriteLine("PositiveInfinity plus 10.0 equals {0}.", (Single.PositiveInfinity + 10.0).ToString()); + Console.WriteLine($"PositiveInfinity plus 10.0 equals {float.PositiveInfinity + 10.0}."); // - // + // // This will return "true". - Console.WriteLine("IsInfinity(3.0F / 0) == {0}.", Single.IsInfinity(3.0F / 0) ? "true" : "false"); + Console.WriteLine($"IsInfinity(3.0F / 0) == {(float.IsInfinity(3.0F / 0) ? "true" : "false")}."); // - // + // // This will return true. - Console.WriteLine("IsPositiveInfinity(4.0F / 0) == {0}.", Single.IsPositiveInfinity(4.0F / 0) ? "true" : "false"); + Console.WriteLine($"IsPositiveInfinity(4.0F / 0) == {(float.IsPositiveInfinity(4.0F / 0) ? "true" : "false")}."); // - // + // // This will return true. - Console.WriteLine("IsNegativeInfinity(-5.0F / 0) == {0}.", Single.IsNegativeInfinity(-5.0F / 0) ? "true" : "false"); + Console.WriteLine($"IsNegativeInfinity(-5.0F / 0) == {(float.IsNegativeInfinity(-5.0F / 0) ? "true" : "false")}."); // // - Single a; + float a; a = 500; - Object obj1; + object obj1; // - // + // // The variables point to the same objects. - Object obj2; + object obj2; obj1 = a; obj2 = obj1; - if (Single.ReferenceEquals(obj1, obj2)) + if (float.ReferenceEquals(obj1, obj2)) { Console.WriteLine("The variables point to the same Single object."); } @@ -125,28 +126,29 @@ public SingleSample() } // - // - obj1 = (Single)450; + // + obj1 = (float)450; if (a.CompareTo(obj1) < 0) { - Console.WriteLine("{0} is less than {1}.", a.ToString(), obj1.ToString()); + Console.WriteLine($"{a} is less than {obj1}."); } if (a.CompareTo(obj1) > 0) { - Console.WriteLine("{0} is greater than {1}.", a.ToString(), obj1.ToString()); + Console.WriteLine($"{a} is greater than {obj1}."); } if (a.CompareTo(obj1) == 0) { - Console.WriteLine("{0} equals {1}.", a.ToString(), obj1.ToString()); + Console.WriteLine($"{a} equals {obj1}."); } // - // - obj1 = (Single)500; - if (a.Equals(obj1)) { + // + obj1 = (float)500; + if (a.Equals(obj1)) + { Console.WriteLine("The value type and reference type values are equal."); } // @@ -156,8 +158,5 @@ public SingleSample() class EntryPoint { - static void Main(string[] args) - { - new SingleSnippet.SingleSample(); - } -} \ No newline at end of file + static void Main(string[] args) => new SingleSnippet.SingleSample(); +} diff --git a/snippets/csharp/System/Single/Epsilon/SingleEquals_25051.cs b/snippets/csharp/System/Single/Epsilon/SingleEquals_25051.cs index da27b7ae54c..af810b2453c 100644 --- a/snippets/csharp/System/Single/Epsilon/SingleEquals_25051.cs +++ b/snippets/csharp/System/Single/Epsilon/SingleEquals_25051.cs @@ -2,73 +2,73 @@ public class Class1 { - public static void Main() - { - CompareUsingEquals(); - Console.WriteLine(); - CompareApproximateValues(); - Console.WriteLine(); - CompareObjectsUsingEquals(); - Console.WriteLine(); - CompareApproximateObjectValues(); - Console.WriteLine(); - } + public static void Main() + { + CompareUsingEquals(); + Console.WriteLine(); + CompareApproximateValues(); + Console.WriteLine(); + CompareObjectsUsingEquals(); + Console.WriteLine(); + CompareApproximateObjectValues(); + Console.WriteLine(); + } - private static void CompareUsingEquals() - { - // - // Initialize two floats with apparently identical values - float float1 = .33333f; - float float2 = 1/3; - // Compare them for equality - Console.WriteLine(float1.Equals(float2)); // displays false - // - } - - private static void CompareApproximateValues() - { - // - // Initialize two floats with apparently identical values - float float1 = .33333f; - float float2 = (float) 1/3; - // Define the tolerance for variation in their values - float difference = Math.Abs(float1 * .0001f); + private static void CompareUsingEquals() + { + // + // Initialize two floats with apparently identical values + float float1 = .33333f; + float float2 = 1 / 3; + // Compare them for equality + Console.WriteLine(float1.Equals(float2)); // displays false + // + } - // Compare the values - // The output to the console indicates that the two values are equal - if (Math.Abs(float1 - float2) <= difference) - Console.WriteLine("float1 and float2 are equal."); - else - Console.WriteLine("float1 and float2 are unequal."); - // - } + private static void CompareApproximateValues() + { + // + // Initialize two floats with apparently identical values + float float1 = .33333f; + float float2 = (float)1 / 3; + // Define the tolerance for variation in their values + float difference = Math.Abs(float1 * .0001f); - private static void CompareObjectsUsingEquals() - { - // - // Initialize two floats with apparently identical values - float float1 = .33333f; - object float2 = 1/3; - // Compare them for equality - Console.WriteLine(float1.Equals(float2)); // displays false - // - } - - private static void CompareApproximateObjectValues() - { - // - // Initialize two floats with apparently identical values - float float1 = .33333f; - object float2 = (float) 1/3; - // Define the tolerance for variation in their values - float difference = Math.Abs(float1 * .0001f); + // Compare the values + // The output to the console indicates that the two values are equal + if (Math.Abs(float1 - float2) <= difference) + Console.WriteLine("float1 and float2 are equal."); + else + Console.WriteLine("float1 and float2 are unequal."); + // + } - // Compare the values - // The output to the console indicates that the two values are equal - if (Math.Abs(float1 - (float) float2) <= difference) - Console.WriteLine("float1 and float2 are equal."); - else - Console.WriteLine("float1 and float2 are unequal."); - // - } + private static void CompareObjectsUsingEquals() + { + // + // Initialize two floats with apparently identical values + float float1 = .33333f; + object float2 = 1 / 3; + // Compare them for equality + Console.WriteLine(float1.Equals(float2)); // displays false + // + } + + private static void CompareApproximateObjectValues() + { + // + // Initialize two floats with apparently identical values + float float1 = .33333f; + object float2 = (float)1 / 3; + // Define the tolerance for variation in their values + float difference = Math.Abs(float1 * .0001f); + + // Compare the values + // The output to the console indicates that the two values are equal + if (Math.Abs(float1 - (float)float2) <= difference) + Console.WriteLine("float1 and float2 are equal."); + else + Console.WriteLine("float1 and float2 are unequal."); + // + } } diff --git a/snippets/csharp/System/Single/Epsilon/epsilon.cs b/snippets/csharp/System/Single/Epsilon/epsilon.cs index 2bf16f5c802..a5581e319f2 100644 --- a/snippets/csharp/System/Single/Epsilon/epsilon.cs +++ b/snippets/csharp/System/Single/Epsilon/epsilon.cs @@ -1,25 +1,25 @@ -// +// using System; public class Example1 { - public static void Main() - { - float[] values = { 0f, Single.Epsilon, Single.Epsilon * .5f }; - - for (int ctr = 0; ctr <= values.Length - 2; ctr++) - { - for (int ctr2 = ctr + 1; ctr2 <= values.Length - 1; ctr2++) - { - Console.WriteLine($"{values[ctr]:r} = {values[ctr2]:r}: {values[ctr].Equals(values[ctr2])}"); - } - Console.WriteLine(); - } - } + public static void Main() + { + float[] values = [0f, float.Epsilon, float.Epsilon * .5f]; + + for (int ctr = 0; ctr <= values.Length - 2; ctr++) + { + for (int ctr2 = ctr + 1; ctr2 <= values.Length - 1; ctr2++) + { + Console.WriteLine($"{values[ctr]:r} = {values[ctr2]:r}: {values[ctr].Equals(values[ctr2])}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // 0 = 1.401298E-45: False // 0 = 0: True -// +// // 1.401298E-45 = 0: False // diff --git a/snippets/csharp/System/Single/Epsilon/epsilon1.cs b/snippets/csharp/System/Single/Epsilon/epsilon1.cs index 87664989eac..d15e3769807 100644 --- a/snippets/csharp/System/Single/Epsilon/epsilon1.cs +++ b/snippets/csharp/System/Single/Epsilon/epsilon1.cs @@ -3,48 +3,48 @@ public class Example2 { - public static void Main() - { - float[] values = { 0.0f, Single.Epsilon }; - foreach (var value in values) { - Console.WriteLine(GetComponentParts(value)); - Console.WriteLine(); - } - } + public static void Main() + { + float[] values = [0.0f, float.Epsilon]; + foreach (float value in values) + { + Console.WriteLine(GetComponentParts(value)); + Console.WriteLine(); + } + } - private static string GetComponentParts(float value) - { - string result = String.Format("{0:R}: ", value); - int indent = result.Length; + private static string GetComponentParts(float value) + { + string result = $"{value:R}: "; + int indent = result.Length; - // Convert the single to a 4-byte array. - byte[] bytes = BitConverter.GetBytes(value); - int formattedSingle = BitConverter.ToInt32(bytes, 0); - - // Get the sign bit (byte 3, bit 7). - result += String.Format("Sign: {0}\n", - (formattedSingle >> 31) != 0 ? "1 (-)" : "0 (+)"); + // Convert the single to a 4-byte array. + byte[] bytes = BitConverter.GetBytes(value); + int formattedSingle = BitConverter.ToInt32(bytes, 0); - // Get the exponent (byte 2 bit 7 to byte 3, bits 6) - int exponent = (formattedSingle >> 23) & 0x000000FF; - int adjustment = (exponent != 0) ? 127 : 126; - result += String.Format("{0}Exponent: 0x{1:X4} ({1})\n", new String(' ', indent), exponent - adjustment); + // Get the sign bit (byte 3, bit 7). + result += $"Sign: {((formattedSingle >> 31) != 0 ? "1 (-)" : "0 (+)")}\n"; - // Get the significand (bits 0-22) - long significand = exponent != 0 ? - ((formattedSingle & 0x007FFFFF) | 0x800000) : - (formattedSingle & 0x007FFFFF); - result += String.Format("{0}Mantissa: 0x{1:X13}\n", new String(' ', indent), significand); - return result; - } + // Get the exponent (byte 2 bit 7 to byte 3, bits 6) + int exponent = (formattedSingle >> 23) & 0x000000FF; + int adjustment = (exponent != 0) ? 127 : 126; + result += string.Format("{0}Exponent: 0x{1:X4} ({1})\n", new string(' ', indent), exponent - adjustment); + + // Get the significand (bits 0-22) + long significand = exponent != 0 ? + ((formattedSingle & 0x007FFFFF) | 0x800000) : + (formattedSingle & 0x007FFFFF); + result += $"{new string(' ', indent)}Mantissa: 0x{significand:X13}\n"; + return result; + } } // // The example displays the following output: // 0: Sign: 0 (+) // Exponent: 0xFFFFFF82 (-126) // Mantissa: 0x0000000000000 -// -// +// +// // 1.401298E-45: Sign: 0 (+) // Exponent: 0xFFFFFF82 (-126) // Mantissa: 0x0000000000001 -// +// diff --git a/snippets/csharp/System/Single/Equals/equalsabs1.cs b/snippets/csharp/System/Single/Equals/equalsabs1.cs index 6aa1d68c28e..67e08171bac 100644 --- a/snippets/csharp/System/Single/Equals/equalsabs1.cs +++ b/snippets/csharp/System/Single/Equals/equalsabs1.cs @@ -1,43 +1,43 @@ -// +// using System; public class Example { - public static void Main() - { - float value1 = .1f * 10f; - float value2 = 0f; - for (int ctr = 0; ctr < 10; ctr++) - value2 += .1f; - - Console.WriteLine($"{value1:R} = {value2:R}: {HasMinimalDifference(value1, value2, 1)}"); - } - - public static bool HasMinimalDifference(float value1, float value2, int units) - { - byte[] bytes = BitConverter.GetBytes(value1); - int iValue1 = BitConverter.ToInt32(bytes, 0); - - bytes = BitConverter.GetBytes(value2); - int iValue2 = BitConverter.ToInt32(bytes, 0); - - // If the signs are different, return false except for +0 and -0. - if ((iValue1 >> 31) != (iValue2 >> 31)) - { - if (value1 == value2) - return true; - - return false; - } + public static void Main() + { + float value1 = .1f * 10f; + float value2 = 0f; + for (int ctr = 0; ctr < 10; ctr++) + value2 += .1f; + + Console.WriteLine($"{value1:R} = {value2:R}: {HasMinimalDifference(value1, value2, 1)}"); + } + + public static bool HasMinimalDifference(float value1, float value2, int units) + { + byte[] bytes = BitConverter.GetBytes(value1); + int iValue1 = BitConverter.ToInt32(bytes, 0); + + bytes = BitConverter.GetBytes(value2); + int iValue2 = BitConverter.ToInt32(bytes, 0); - int diff = Math.Abs(iValue1 - iValue2); + // If the signs are different, return false except for +0 and -0. + if ((iValue1 >> 31) != (iValue2 >> 31)) + { + if (value1 == value2) + return true; - if (diff <= units) - return true; + return false; + } + + int diff = Math.Abs(iValue1 - iValue2); + + if (diff <= units) + return true; - return false; - } + return false; + } } // The example displays the following output: // 1 = 1.00000012: True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Single/Equals/equalsoverl.cs b/snippets/csharp/System/Single/Equals/equalsoverl.cs index 33dd94b5851..d16ba1fa0d2 100644 --- a/snippets/csharp/System/Single/Equals/equalsoverl.cs +++ b/snippets/csharp/System/Single/Equals/equalsoverl.cs @@ -3,58 +3,52 @@ public class Example2 { - static float value = 112; + static float value = 112; - public static void Main() - { - byte byte1= 112; - Console.WriteLine("value = byte1: {0,16}", value.Equals(byte1)); - TestObjectForEquality(byte1); + public static void Main() + { + byte byte1 = 112; + Console.WriteLine($"value = byte1: {value.Equals(byte1),16}"); + TestObjectForEquality(byte1); - short short1 = 112; - Console.WriteLine("value = short1: {0,16}", value.Equals(short1)); - TestObjectForEquality(short1); + short short1 = 112; + Console.WriteLine($"value = short1: {value.Equals(short1),16}"); + TestObjectForEquality(short1); - int int1 = 112; - Console.WriteLine("value = int1: {0,18}", value.Equals(int1)); - TestObjectForEquality(int1); + int int1 = 112; + Console.WriteLine($"value = int1: {value.Equals(int1),18}"); + TestObjectForEquality(int1); - long long1 = 112; - Console.WriteLine("value = long1: {0,17}", value.Equals(long1)); - TestObjectForEquality(long1); + long long1 = 112; + Console.WriteLine($"value = long1: {value.Equals(long1),17}"); + TestObjectForEquality(long1); - sbyte sbyte1 = 112; - Console.WriteLine("value = sbyte1: {0,16}", value.Equals(sbyte1)); - TestObjectForEquality(sbyte1); + sbyte sbyte1 = 112; + Console.WriteLine($"value = sbyte1: {value.Equals(sbyte1),16}"); + TestObjectForEquality(sbyte1); - ushort ushort1 = 112; - Console.WriteLine("value = ushort1: {0,16}", value.Equals(ushort1)); - TestObjectForEquality(ushort1); + ushort ushort1 = 112; + Console.WriteLine($"value = ushort1: {value.Equals(ushort1),16}"); + TestObjectForEquality(ushort1); - uint uint1 = 112; - Console.WriteLine("value = uint1: {0,18}", value.Equals(uint1)); - TestObjectForEquality(uint1); + uint uint1 = 112; + Console.WriteLine($"value = uint1: {value.Equals(uint1),18}"); + TestObjectForEquality(uint1); - ulong ulong1 = 112; - Console.WriteLine("value = ulong1: {0,17}", value.Equals(ulong1)); - TestObjectForEquality(ulong1); + ulong ulong1 = 112; + Console.WriteLine($"value = ulong1: {value.Equals(ulong1),17}"); + TestObjectForEquality(ulong1); - decimal dec1 = 112m; - Console.WriteLine("value = dec1: {0,21}", value.Equals(dec1)); - TestObjectForEquality(dec1); + decimal dec1 = 112m; + Console.WriteLine($"value = dec1: {value.Equals(dec1),21}"); + TestObjectForEquality(dec1); - double dbl1 = 112; - Console.WriteLine("value = dbl1: {0,20}", value.Equals(dbl1)); - TestObjectForEquality(dbl1); - } + double dbl1 = 112; + Console.WriteLine($"value = dbl1: {value.Equals(dbl1),20}"); + TestObjectForEquality(dbl1); + } - private static void TestObjectForEquality(Object obj) - { - Console.WriteLine("{0} ({1}) = {2} ({3}): {4}\n", - value, value.GetType().Name, - obj, obj.GetType().Name, - value.Equals(obj)); - } + private static void TestObjectForEquality(object obj) => Console.WriteLine($"{value} ({value.GetType().Name}) = {obj} ({obj.GetType().Name}): {value.Equals(obj)}\n"); } // The example displays the following output: // value = byte1: True diff --git a/snippets/csharp/System/Single/MaxValue/maxvalueex.cs b/snippets/csharp/System/Single/MaxValue/maxvalueex.cs index e84e70b220d..aa87213e538 100644 --- a/snippets/csharp/System/Single/MaxValue/maxvalueex.cs +++ b/snippets/csharp/System/Single/MaxValue/maxvalueex.cs @@ -3,16 +3,14 @@ public class Example { - public static void Main() - { - float result1 = 1.867e38f + 2.385e38f; - Console.WriteLine("{0} (Positive Infinity: {1})", - result1, Single.IsPositiveInfinity(result1)); - - float result2 = 1.5935e25f * 7.948e20f; - Console.WriteLine("{0} (Positive Infinity: {1})", - result2, Single.IsPositiveInfinity(result2)); - } + public static void Main() + { + float result1 = 1.867e38f + 2.385e38f; + Console.WriteLine($"{result1} (Positive Infinity: {float.IsPositiveInfinity(result1)})"); + + float result2 = 1.5935e25f * 7.948e20f; + Console.WriteLine($"{result2} (Positive Infinity: {float.IsPositiveInfinity(result2)})"); + } } // The example displays the following output: // Infinity (Positive Infinity: True) diff --git a/snippets/csharp/System/Single/MinValue/minvalueex.cs b/snippets/csharp/System/Single/MinValue/minvalueex.cs index 953c4ebbf79..24b4151ac66 100644 --- a/snippets/csharp/System/Single/MinValue/minvalueex.cs +++ b/snippets/csharp/System/Single/MinValue/minvalueex.cs @@ -3,16 +3,14 @@ public class Example { - public static void Main() - { - float result1 = -8.997e37f + -2.985e38f; - Console.WriteLine("{0} (Negative Infinity: {1})", - result1, Single.IsNegativeInfinity(result1)); - - float result2 = -1.5935e25f * 7.948e32f; - Console.WriteLine("{0} (Negative Infinity: {1})", - result2, Single.IsNegativeInfinity(result2)); - } + public static void Main() + { + float result1 = -8.997e37f + -2.985e38f; + Console.WriteLine($"{result1} (Negative Infinity: {float.IsNegativeInfinity(result1)})"); + + float result2 = -1.5935e25f * 7.948e32f; + Console.WriteLine($"{result2} (Negative Infinity: {float.IsNegativeInfinity(result2)})"); + } } // The example displays the following output: // -Infinity (Negative Infinity: True) diff --git a/snippets/csharp/System/Single/NaN/Program.cs b/snippets/csharp/System/Single/NaN/Program.cs new file mode 100644 index 00000000000..67609d649bf --- /dev/null +++ b/snippets/csharp/System/Single/NaN/Program.cs @@ -0,0 +1,2 @@ +SingleNaNOperationsExample.Run(); +SingleNaNComparisonExample.Run(); diff --git a/snippets/csharp/System/Single/NaN/Project.csproj b/snippets/csharp/System/Single/NaN/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Single/NaN/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Single/NaN/nan1.cs b/snippets/csharp/System/Single/NaN/nan1.cs index c7af3af5178..d6abc4bf6d7 100644 --- a/snippets/csharp/System/Single/NaN/nan1.cs +++ b/snippets/csharp/System/Single/NaN/nan1.cs @@ -1,33 +1,32 @@ using System; -public class Example +public class SingleNaNOperationsExample { - public static void Main() - { - // - float zero = 0.0f; - Console.WriteLine("{0} / {1} = {2}", zero, zero, zero/zero); - // The example displays the following output: - // 0 / 0 = NaN - // + public static void Run() + { + // + float zero = 0.0f; + Console.WriteLine($"{zero} / {zero} = {zero / zero}"); + // The example displays the following output: + // 0 / 0 = NaN + // - // - float nan1 = Single.NaN; - - Console.WriteLine("{0} + {1} = {2}", 3, nan1, 3 + nan1); - Console.WriteLine("Abs({0}) = {1}", nan1, Math.Abs(nan1)); - // The example displays the following output: - // 3 + NaN = NaN - // Abs(NaN) = NaN - // - Console.WriteLine(); - - // - float result = Single.NaN; - Console.WriteLine("{0} = Single.NaN: {1}", - result, result == Single.NaN); - // The example displays the following output: - // NaN = Single.Nan: False - // - } + // + float nan1 = float.NaN; + + Console.WriteLine($"{3} + {nan1} = {3 + nan1}"); + Console.WriteLine($"Abs({nan1}) = {Math.Abs(nan1)}"); + // The example displays the following output: + // 3 + NaN = NaN + // Abs(NaN) = NaN + // + Console.WriteLine(); + + // + float result = float.NaN; + Console.WriteLine($"{result} = Single.NaN: {result == float.NaN}"); + // The example displays the following output: + // NaN = Single.Nan: False + // + } } diff --git a/snippets/csharp/System/Single/NaN/single.nan4.cs b/snippets/csharp/System/Single/NaN/single.nan4.cs index bf6ec01d851..ad96ed834b4 100644 --- a/snippets/csharp/System/Single/NaN/single.nan4.cs +++ b/snippets/csharp/System/Single/NaN/single.nan4.cs @@ -1,26 +1,26 @@ // using System; -public class Example +public class SingleNaNComparisonExample { - public static void Main() - { - Console.WriteLine("NaN == NaN: {0}", Single.NaN == Single.NaN); - Console.WriteLine("NaN != NaN: {0}", Single.NaN != Single.NaN); - Console.WriteLine("NaN.Equals(NaN): {0}", Single.NaN.Equals(Single.NaN)); - Console.WriteLine("! NaN.Equals(NaN): {0}", ! Single.NaN.Equals(Single.NaN)); - Console.WriteLine("IsNaN: {0}", Double.IsNaN(Double.NaN)); - - Console.WriteLine("\nNaN > NaN: {0}", Single.NaN > Single.NaN); - Console.WriteLine("NaN >= NaN: {0}", Single.NaN >= Single.NaN); - Console.WriteLine("NaN < NaN: {0}", Single.NaN < Single.NaN); - Console.WriteLine("NaN < 100.0: {0}", Single.NaN < 100.0f); - Console.WriteLine("NaN <= 100.0: {0}", Single.NaN <= 100.0f); - Console.WriteLine("NaN >= 100.0: {0}", Single.NaN > 100.0f); - Console.WriteLine("NaN.CompareTo(NaN): {0}", Single.NaN.CompareTo(Single.NaN)); - Console.WriteLine("NaN.CompareTo(100.0): {0}", Single.NaN.CompareTo(100.0f)); - Console.WriteLine("(100.0).CompareTo(Single.NaN): {0}", (100.0f).CompareTo(Single.NaN)); - } + public static void Run() + { + Console.WriteLine($"NaN == NaN: {float.NaN == float.NaN}"); + Console.WriteLine($"NaN != NaN: {float.NaN != float.NaN}"); + Console.WriteLine($"NaN.Equals(NaN): {float.NaN.Equals(float.NaN)}"); + Console.WriteLine($"! NaN.Equals(NaN): {!float.NaN.Equals(float.NaN)}"); + Console.WriteLine($"IsNaN: {double.IsNaN(double.NaN)}"); + + Console.WriteLine($"\nNaN > NaN: {float.NaN > float.NaN}"); + Console.WriteLine($"NaN >= NaN: {float.NaN >= float.NaN}"); + Console.WriteLine($"NaN < NaN: {float.NaN < float.NaN}"); + Console.WriteLine($"NaN < 100.0: {float.NaN < 100.0f}"); + Console.WriteLine($"NaN <= 100.0: {float.NaN <= 100.0f}"); + Console.WriteLine($"NaN > 100.0: {float.NaN > 100.0f}"); + Console.WriteLine($"NaN.CompareTo(NaN): {float.NaN.CompareTo(float.NaN)}"); + Console.WriteLine($"NaN.CompareTo(100.0): {float.NaN.CompareTo(100.0f)}"); + Console.WriteLine($"(100.0).CompareTo(Single.NaN): {(100.0f).CompareTo(float.NaN)}"); + } } // The example displays the following output: // NaN == NaN: False diff --git a/snippets/csharp/System/Single/Overview/comparison1.cs b/snippets/csharp/System/Single/Overview/comparison1.cs index 965c922e4f9..0d1eb7f0e2c 100644 --- a/snippets/csharp/System/Single/Overview/comparison1.cs +++ b/snippets/csharp/System/Single/Overview/comparison1.cs @@ -1,14 +1,14 @@ -// +// using System; public class Example { - public static void Main() - { - float value1 = .3333333f; - float value2 = 1.0f/3; - Console.WriteLine($"{value1:R} = {value2:R}: {value1.Equals(value2)}"); - } + public static void Main() + { + float value1 = .3333333f; + float value2 = 1.0f / 3; + Console.WriteLine($"{value1:R} = {value2:R}: {value1.Equals(value2)}"); + } } // The example displays the following output: // 0.3333333 = 0.333333343: False diff --git a/snippets/csharp/System/Single/Overview/comparison2.cs b/snippets/csharp/System/Single/Overview/comparison2.cs index c18df56a7fa..400c11c3e1f 100644 --- a/snippets/csharp/System/Single/Overview/comparison2.cs +++ b/snippets/csharp/System/Single/Overview/comparison2.cs @@ -1,4 +1,4 @@ -using System; +using System; public class Example1 { @@ -13,7 +13,7 @@ public static void Main() // The example displays the following output on modern .NET: // 10.201438 = 10.201439: False - + // } } diff --git a/snippets/csharp/System/Single/Overview/comparison4.cs b/snippets/csharp/System/Single/Overview/comparison4.cs index ded666dc514..4ef3e6cd562 100644 --- a/snippets/csharp/System/Single/Overview/comparison4.cs +++ b/snippets/csharp/System/Single/Overview/comparison4.cs @@ -1,4 +1,4 @@ -using System; +using System; public class Example3 { @@ -29,9 +29,9 @@ static bool IsApproximatelyEqual(float value1, float value2, float epsilon) return true; // Handle NaN, Infinity. - if (Double.IsInfinity(value1) | Double.IsNaN(value1)) + if (double.IsInfinity(value1) | double.IsNaN(value1)) return value1.Equals(value2); - else if (Double.IsInfinity(value2) | Double.IsNaN(value2)) + else if (double.IsInfinity(value2) | double.IsNaN(value2)) return value1.Equals(value2); // Handle zero to avoid division by zero. diff --git a/snippets/csharp/System/Single/Overview/convert1.cs b/snippets/csharp/System/Single/Overview/convert1.cs index 8a5e0e75a97..c7995e864df 100644 --- a/snippets/csharp/System/Single/Overview/convert1.cs +++ b/snippets/csharp/System/Single/Overview/convert1.cs @@ -1,22 +1,22 @@ -// +// using System; public class Example4 { public static void Main() { - dynamic[] values = { Byte.MinValue, Byte.MaxValue, Decimal.MinValue, - Decimal.MaxValue, Double.MinValue, Double.MaxValue, - Int16.MinValue, Int16.MaxValue, Int32.MinValue, - Int32.MaxValue, Int64.MinValue, Int64.MaxValue, - SByte.MinValue, SByte.MaxValue, UInt16.MinValue, - UInt16.MaxValue, UInt32.MinValue, UInt32.MaxValue, - UInt64.MinValue, UInt64.MaxValue }; + dynamic[] values = [byte.MinValue, byte.MaxValue, decimal.MinValue, + decimal.MaxValue, double.MinValue, double.MaxValue, + short.MinValue, short.MaxValue, int.MinValue, + int.MaxValue, long.MinValue, long.MaxValue, + sbyte.MinValue, sbyte.MaxValue, ushort.MinValue, + ushort.MaxValue, uint.MinValue, uint.MaxValue, + ulong.MinValue, ulong.MaxValue]; float sngValue; foreach (var value in values) { - if (value.GetType() == typeof(Decimal) || - value.GetType() == typeof(Double)) + if (value.GetType() == typeof(decimal) || + value.GetType() == typeof(double)) sngValue = (float)value; else sngValue = value; diff --git a/snippets/csharp/System/Single/Overview/convert2.cs b/snippets/csharp/System/Single/Overview/convert2.cs index d9a17fb336c..812afb97838 100644 --- a/snippets/csharp/System/Single/Overview/convert2.cs +++ b/snippets/csharp/System/Single/Overview/convert2.cs @@ -1,21 +1,21 @@ -using System; +using System; public class Example5 { public static void Main() { // - float[] values = { Single.MinValue, -67890.1234f, -12345.6789f, - 12345.6789f, 67890.1234f, Single.MaxValue, - Single.NaN, Single.PositiveInfinity, - Single.NegativeInfinity }; + float[] values = [float.MinValue, -67890.1234f, -12345.6789f, + 12345.6789f, 67890.1234f, float.MaxValue, + float.NaN, float.PositiveInfinity, + float.NegativeInfinity]; checked { - foreach (var value in values) + foreach (float value in values) { try { - Int64 lValue = (long)value; + long lValue = (long)value; Console.WriteLine($"{value} ({value.GetType().Name}) --> {lValue} (0x{lValue:X16}) ({lValue.GetType().Name})"); } catch (OverflowException) @@ -24,7 +24,7 @@ public static void Main() } try { - UInt64 ulValue = (ulong)value; + ulong ulValue = (ulong)value; Console.WriteLine($"{value} ({value.GetType().Name}) --> {ulValue} (0x{ulValue:X16}) ({ulValue.GetType().Name})"); } catch (OverflowException) @@ -33,7 +33,7 @@ public static void Main() } try { - Decimal dValue = (decimal)value; + decimal dValue = (decimal)value; Console.WriteLine($"{value} ({value.GetType().Name}) --> {dValue} ({dValue.GetType().Name})"); } catch (OverflowException) @@ -41,7 +41,7 @@ public static void Main() Console.WriteLine($"Unable to convert {value} to Decimal."); } - Double dblValue = value; + double dblValue = value; Console.WriteLine($"{value} ({value.GetType().Name}) --> {dblValue} ({dblValue.GetType().Name})"); Console.WriteLine(); } diff --git a/snippets/csharp/System/Single/Overview/exceptional2.cs b/snippets/csharp/System/Single/Overview/exceptional2.cs index 6c0cf45b151..b443cc4fe5c 100644 --- a/snippets/csharp/System/Single/Overview/exceptional2.cs +++ b/snippets/csharp/System/Single/Overview/exceptional2.cs @@ -1,4 +1,4 @@ -using System; +using System; public class Example7 { @@ -8,14 +8,14 @@ public static void Main() float value1 = 3.065e35f; float value2 = 6.9375e32f; float result = value1 * value2; - Console.WriteLine($"PositiveInfinity: {Single.IsPositiveInfinity(result)}"); - Console.WriteLine($"NegativeInfinity: {Single.IsNegativeInfinity(result)}"); + Console.WriteLine($"PositiveInfinity: {float.IsPositiveInfinity(result)}"); + Console.WriteLine($"NegativeInfinity: {float.IsNegativeInfinity(result)}"); Console.WriteLine(); value1 = -value1; result = value1 * value2; - Console.WriteLine($"PositiveInfinity: {Single.IsPositiveInfinity(result)}"); - Console.WriteLine($"NegativeInfinity: {Single.IsNegativeInfinity(result)}"); + Console.WriteLine($"PositiveInfinity: {float.IsPositiveInfinity(result)}"); + Console.WriteLine($"NegativeInfinity: {float.IsNegativeInfinity(result)}"); // The example displays the following output: // PositiveInfinity: True diff --git a/snippets/csharp/System/Single/Overview/precisionlist1.cs b/snippets/csharp/System/Single/Overview/precisionlist1.cs index c42b4fc898f..02f1c908889 100644 --- a/snippets/csharp/System/Single/Overview/precisionlist1.cs +++ b/snippets/csharp/System/Single/Overview/precisionlist1.cs @@ -1,13 +1,13 @@ -using System; +using System; public class Example9 { public static void Main() { // - Double value1 = 1 / 3.0; - Single sValue2 = 1 / 3.0f; - Double value2 = (Double)sValue2; + double value1 = 1 / 3.0; + float sValue2 = 1 / 3.0f; + double value2 = (double)sValue2; Console.WriteLine($"{value1:R} = {value2:R}: {value1.Equals(value2)}"); // The example displays the following output on .NET: diff --git a/snippets/csharp/System/Single/Overview/precisionlist3.cs b/snippets/csharp/System/Single/Overview/precisionlist3.cs index c8f2421707d..08338d033b4 100644 --- a/snippets/csharp/System/Single/Overview/precisionlist3.cs +++ b/snippets/csharp/System/Single/Overview/precisionlist3.cs @@ -5,10 +5,10 @@ public class PrecisionList3Example { public static void Main() { - Single[] values = { 10.01f, 2.88f, 2.88f, 2.88f, 9.0f }; - Single result = 27.65f; - Single total = 0f; - foreach (var value in values) + float[] values = [10.01f, 2.88f, 2.88f, 2.88f, 9.0f]; + float result = 27.65f; + float total = 0f; + foreach (float value in values) total += value; if (total.Equals(result)) diff --git a/snippets/csharp/System/Single/Overview/representation1.cs b/snippets/csharp/System/Single/Overview/representation1.cs index 6ea38e68a79..0e4b8f14ea2 100644 --- a/snippets/csharp/System/Single/Overview/representation1.cs +++ b/snippets/csharp/System/Single/Overview/representation1.cs @@ -1,13 +1,13 @@ -// +// using System; public class Example12 { public static void Main() { - Single value = .2f; - Single result1 = value * 10f; - Single result2 = 0f; + float value = .2f; + float result1 = value * 10f; + float result2 = 0f; for (int ctr = 1; ctr <= 10; ctr++) result2 += value; diff --git a/snippets/csharp/System/Single/Overview/representation2.cs b/snippets/csharp/System/Single/Overview/representation2.cs index a3a072bdb3b..831f6bba562 100644 --- a/snippets/csharp/System/Single/Overview/representation2.cs +++ b/snippets/csharp/System/Single/Overview/representation2.cs @@ -5,8 +5,8 @@ public class Example13 { public static void Main() { - Single value = 123.456f; - Single additional = Single.Epsilon * 1e15f; + float value = 123.456f; + float additional = float.Epsilon * 1e15f; Console.WriteLine($"{value} + {additional} = {value + additional}"); } } diff --git a/snippets/csharp/System/Single/Parse/Program.cs b/snippets/csharp/System/Single/Parse/Program.cs new file mode 100644 index 00000000000..54c708cd959 --- /dev/null +++ b/snippets/csharp/System/Single/Parse/Program.cs @@ -0,0 +1,3 @@ +SingleParseDefaultExample.Run(); +ParseString.Run(); +SingleParseProviderExample.Run(); diff --git a/snippets/csharp/System/Single/Parse/Project.csproj b/snippets/csharp/System/Single/Parse/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Single/Parse/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Single/Parse/parse1.cs b/snippets/csharp/System/Single/Parse/parse1.cs index 94a4ae32ad5..57f3bdbc73e 100644 --- a/snippets/csharp/System/Single/Parse/parse1.cs +++ b/snippets/csharp/System/Single/Parse/parse1.cs @@ -1,28 +1,31 @@ // using System; -public class Example +public class SingleParseDefaultExample { - public static void Main() - { - string[] values = { "100", "(100)", "-123,456,789", "123.45e+6", - "+500", "5e2", "3.1416", "600.", "-.123", - "-Infinity", "-1E-16", Double.MaxValue.ToString(), - Single.MinValue.ToString(), String.Empty }; - foreach (string value in values) - { - try { - float number = Single.Parse(value); - Console.WriteLine("{0} -> {1}", value, number); - } - catch (FormatException) { - Console.WriteLine("'{0}' is not in a valid format.", value); - } - catch (OverflowException) { - Console.WriteLine("{0} is outside the range of a Single.", value); - } - } - } + public static void Run() + { + string[] values = ["100", "(100)", "-123,456,789", "123.45e+6", + "+500", "5e2", "3.1416", "600.", "-.123", + "-Infinity", "-1E-16", $"{double.MaxValue}", + $"{float.MinValue}", string.Empty]; + foreach (string value in values) + { + try + { + float number = float.Parse(value); + Console.WriteLine($"{value} -> {number}"); + } + catch (FormatException) + { + Console.WriteLine($"'{value}' is not in a valid format."); + } + catch (OverflowException) + { + Console.WriteLine($"{value} is outside the range of a Single."); + } + } + } } // The example displays the following output: // 100 -> 100 diff --git a/snippets/csharp/System/Single/Parse/parse2.cs b/snippets/csharp/System/Single/Parse/parse2.cs index 9dd7be9bdf5..e06b0ce0fd3 100644 --- a/snippets/csharp/System/Single/Parse/parse2.cs +++ b/snippets/csharp/System/Single/Parse/parse2.cs @@ -5,66 +5,64 @@ public class ParseString { - public static void Main() - { - // Set current thread culture to en-US. - Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US"); - - string value; - NumberStyles styles; - - // Parse a string in exponential notation with only the AllowExponent flag. - value = "-1.063E-02"; - styles = NumberStyles.AllowExponent; - ShowNumericValue(value, styles); - - // Parse a string in exponential notation - // with the AllowExponent and Number flags. - styles = NumberStyles.AllowExponent | NumberStyles.Number; - ShowNumericValue(value, styles); + public static void Run() + { + // Set current thread culture to en-US. + Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US"); - // Parse a currency value with leading and trailing white space, and - // white space after the U.S. currency symbol. - value = " $ 6,164.3299 "; - styles = NumberStyles.Number | NumberStyles.AllowCurrencySymbol; - ShowNumericValue(value, styles); - - // Parse negative value with thousands separator and decimal. - value = "(4,320.64)"; - styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign | - NumberStyles.Float; - ShowNumericValue(value, styles); - - styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign | - NumberStyles.Float | NumberStyles.AllowThousands; - ShowNumericValue(value, styles); - } + string value; + NumberStyles styles; - private static void ShowNumericValue(string value, NumberStyles styles) - { - Single number; - try - { - number = Single.Parse(value, styles); - Console.WriteLine("Converted '{0}' using {1} to {2}.", - value, styles.ToString(), number); - } - catch (FormatException) - { - Console.WriteLine("Unable to parse '{0}' with styles {1}.", - value, styles.ToString()); - } - Console.WriteLine(); - } + // Parse a string in exponential notation with only the AllowExponent flag. + value = "-1.063E-02"; + styles = NumberStyles.AllowExponent; + ShowNumericValue(value, styles); + + // Parse a string in exponential notation + // with the AllowExponent and Number flags. + styles = NumberStyles.AllowExponent | NumberStyles.Number; + ShowNumericValue(value, styles); + + // Parse a currency value with leading and trailing white space, and + // white space after the U.S. currency symbol. + value = " $ 6,164.3299 "; + styles = NumberStyles.Number | NumberStyles.AllowCurrencySymbol; + ShowNumericValue(value, styles); + + // Parse negative value with thousands separator and decimal. + value = "(4,320.64)"; + styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign | + NumberStyles.Float; + ShowNumericValue(value, styles); + + styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign | + NumberStyles.Float | NumberStyles.AllowThousands; + ShowNumericValue(value, styles); + } + + private static void ShowNumericValue(string value, NumberStyles styles) + { + float number; + try + { + number = float.Parse(value, styles); + Console.WriteLine($"Converted '{value}' using {styles} to {number}."); + } + catch (FormatException) + { + Console.WriteLine($"Unable to parse '{value}' with styles {styles}."); + } + Console.WriteLine(); + } } // The example displays the following output to the console: // Unable to parse '-1.063E-02' with styles AllowExponent. -// +// // Converted '-1.063E-02' using AllowTrailingSign, AllowThousands, Float to -0.01063. -// +// // Converted ' $ 6,164.3299 ' using Number, AllowCurrencySymbol to 6164.3299. -// +// // Unable to parse '(4,320.64)' with styles AllowTrailingSign, AllowParentheses, Float. -// -// Converted '(4,320.64)' using AllowTrailingSign, AllowParentheses, AllowThousands, Float to -4320.64. +// +// Converted '(4,320.64)' using AllowTrailingSign, AllowParentheses, AllowThousands, Float to -4320.64. // diff --git a/snippets/csharp/System/Single/Parse/parse3.cs b/snippets/csharp/System/Single/Parse/parse3.cs index 09b21dd9db9..dd33935f0c4 100644 --- a/snippets/csharp/System/Single/Parse/parse3.cs +++ b/snippets/csharp/System/Single/Parse/parse3.cs @@ -2,51 +2,52 @@ using System; using System.Globalization; -public class Example +public class SingleParseProviderExample { - public static void Main() + public static void Run() { - // Define an array of string values. - string[] values = { " 987.654E-2", " 987,654E-2", "(98765,43210)", - "9,876,543.210", "9.876.543,210", "98_76_54_32,19" }; - // Create a custom culture based on the invariant culture. - CultureInfo ci = new CultureInfo(""); - ci.NumberFormat.NumberGroupSizes = new int[] { 2 }; - ci.NumberFormat.NumberGroupSeparator = "_"; + // Define an array of string values. + string[] values = [" 987.654E-2", " 987,654E-2", "(98765,43210)", + "9,876,543.210", "9.876.543,210", "98_76_54_32,19"]; + // Create a custom culture based on the invariant culture. + CultureInfo ci = new(""); + ci.NumberFormat.NumberGroupSizes = [2]; + ci.NumberFormat.NumberGroupSeparator = "_"; - // Define an array of format providers. - CultureInfo[] providers = { new CultureInfo("en-US"), - new CultureInfo("nl-NL"), ci }; + // Define an array of format providers. + CultureInfo[] providers = [new CultureInfo("en-US"), + new CultureInfo("nl-NL"), ci]; - // Define an array of styles. - NumberStyles[] styles = { NumberStyles.Currency, NumberStyles.Float }; + // Define an array of styles. + NumberStyles[] styles = [NumberStyles.Currency, NumberStyles.Float]; - // Iterate the array of format providers. - foreach (CultureInfo provider in providers) - { - Console.WriteLine("Parsing using the {0} culture:", - provider.Name == String.Empty ? "Invariant" : provider.Name); - // Parse each element in the array of string values. - foreach (string value in values) - { - foreach (NumberStyles style in styles) + // Iterate the array of format providers. + foreach (CultureInfo provider in providers) + { + Console.WriteLine($"Parsing using the {(provider.Name == string.Empty ? "Invariant" : provider.Name)} culture:"); + // Parse each element in the array of string values. + foreach (string value in values) { - try { - float number = Single.Parse(value, style, provider); - Console.WriteLine(" {0} ({1}) -> {2}", - value, style, number); - } - catch (FormatException) { - Console.WriteLine(" '{0}' is invalid using {1}.", value, style); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of the range of a Single.", value); - } + foreach (NumberStyles style in styles) + { + try + { + float number = float.Parse(value, style, provider); + Console.WriteLine($" {value} ({style}) -> {number}"); + } + catch (FormatException) + { + Console.WriteLine($" '{value}' is invalid using {style}."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of the range of a Single."); + } + } } - } - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output: // Parsing using the en-US culture: diff --git a/snippets/csharp/System/Single/ToString/ToString1.cs b/snippets/csharp/System/Single/ToString/ToString1.cs index 5ea413b49bd..b8091c3ee9a 100644 --- a/snippets/csharp/System/Single/ToString/ToString1.cs +++ b/snippets/csharp/System/Single/ToString/ToString1.cs @@ -3,209 +3,208 @@ public class Class1 { - public static void Main() - { - CallDefaultToString(); - Console.WriteLine("----------"); - CallToStringWithFormatProvider(); - Console.WriteLine("----------"); - CallToStringWithFormatString(); - Console.WriteLine("----------"); - CallToStringWithFormatStringAndProvider(); - } - - private static void CallDefaultToString() - { - // - float number; - - number = 1.6E20F; - // Displays 1.6E+20. - Console.WriteLine(number.ToString()); - - number = 1.6E2F; - // Displays 160. - Console.WriteLine(number.ToString()); - - number = -3.541F; - // Displays -3.541. - Console.WriteLine(number.ToString()); - - number = -1502345222199E-07F; - // Displays -150234.5222199. - Console.WriteLine(number.ToString()); - - number = -15023452221990199574E-09F; - // Displays -15023452221.9902. - Console.WriteLine(number.ToString()); - - number = .60344F; - // Displays 0.60344. - Console.WriteLine(number.ToString()); - - number = .000000001F; - // Displays 1E-09. - Console.WriteLine(number.ToString()); - // - } - - private static void CallToStringWithFormatProvider() - { - // - float value; - - value = -16325.62015F; - // Display value using the invariant culture. - Console.WriteLine(value.ToString(CultureInfo.InvariantCulture)); - // Display value using the en-GB culture. - Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))); - // Display value using the de-DE culture. - Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("de-DE"))); - - value = 16034.125E21F; - // Display value using the invariant culture. - Console.WriteLine(value.ToString(CultureInfo.InvariantCulture)); - // Display value using the en-GB culture. - Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))); - // Display value using the de-DE culture. - Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("de-DE"))); - // This example displays the following output to the console: - // -16325.62015 - // -16325.62015 - // -16325,62015 - // 1.6034125E+25 - // 1.6034125E+25 - // 1,6034125E+25 - // - } - - private static void CallToStringWithFormatString() - { - // - float[] numbers= { 1054.32179F, -195489100.8377F, 1.0437E21F, - -1.0573e-05F }; - string[] specifiers = { "C", "E", "e", "F", "G", "N", "P", - "R", "#,000.000", "0.###E-000", - "000,000,000,000.00###" }; - - foreach (float number in numbers) - { - Console.WriteLine("Formatting of {0}:", number); - foreach (string specifier in specifiers) - Console.WriteLine(" {0,5}: {1}", - specifier, number.ToString(specifier)); - - Console.WriteLine(); - } - // The example displays the following output to the console: - // Formatting of 1054.32179: - // C: $1,054.32 - // E: 1.054322E+003 - // e: 1.054322e+003 - // F: 1054.32 - // G: 1054.32179 - // N: 1,054.32 - // P: 105,432.18 % - // R: 1054.32179 - // #,000.000: 1,054.322 - // 0.###E-000: 1.054E003 - // 000,000,000,000.00###: 000,000,001,054.322 - // - // Formatting of -195489100.8377: - // C: ($195,489,100.84) - // E: -1.954891E+008 - // e: -1.954891e+008 - // F: -195489100.84 - // G: -195489100.8377 - // N: -195,489,100.84 - // P: -19,548,910,083.77 % - // R: -195489100.8377 - // #,000.000: -195,489,100.838 - // 0.###E-000: -1.955E008 - // 000,000,000,000.00###: -000,195,489,100.00 - // - // Formatting of 1.0437E+21: - // C: $1,043,700,000,000,000,000,000.00 - // E: 1.043700E+021 - // e: 1.043700e+021 - // F: 1043700000000000000000.00 - // G: 1.0437E+21 - // N: 1,043,700,000,000,000,000,000.00 - // P: 104,370,000,000,000,000,000,000.00 % - // R: 1.0437E+21 - // #,000.000: 1,043,700,000,000,000,000,000.000 - // 0.###E-000: 1.044E021 - // 000,000,000,000.00###: 1,043,700,000,000,000,000,000.00 - // - // Formatting of -1.0573E-05: - // C: $0.00 - // E: -1.057300E-005 - // e: -1.057300e-005 - // F: 0.00 - // G: -1.0573E-05 - // N: 0.00 - // P: 0.00 % - // R: -1.0573E-05 - // #,000.000: 000.000 - // 0.###E-000: -1.057E-005 - // 000,000,000,000.00###: -000,000,000,000.00001 - // - } - - private static void CallToStringWithFormatStringAndProvider() - { - // - float value = 16325.62901F; - string specifier; - CultureInfo culture; - - // Use standard numeric format specifiers. - specifier = "G"; - culture = CultureInfo.CreateSpecificCulture("eu-ES"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 16325,62901 - Console.WriteLine(value.ToString(specifier, CultureInfo.InvariantCulture)); - // Displays: 16325.62901 - - specifier = "C"; - culture = CultureInfo.CreateSpecificCulture("en-US"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: $16,325.63 - culture = CultureInfo.CreateSpecificCulture("en-GB"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: £16,325.63 - - specifier = "E04"; - culture = CultureInfo.CreateSpecificCulture("sv-SE"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 1,6326E+004 - culture = CultureInfo.CreateSpecificCulture("en-NZ"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 1.6326E+004 - - specifier = "F"; - culture = CultureInfo.CreateSpecificCulture("fr-FR"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 16325,63 - culture = CultureInfo.CreateSpecificCulture("en-CA"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 16325.63 - - specifier = "N"; - culture = CultureInfo.CreateSpecificCulture("es-ES"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 16.325,63 - culture = CultureInfo.CreateSpecificCulture("fr-CA"); - Console.WriteLine(value.ToString(specifier, culture)); - // Displays: 16 325,63 - - specifier = "P"; - culture = CultureInfo.InvariantCulture; - Console.WriteLine((value/10000).ToString(specifier, culture)); - // Displays: 163.26 % - culture = CultureInfo.CreateSpecificCulture("ar-EG"); - Console.WriteLine((value/10000).ToString(specifier, culture)); - // Displays: 163.256 % - // - } + public static void Main() + { + CallDefaultToString(); + Console.WriteLine("----------"); + CallToStringWithFormatProvider(); + Console.WriteLine("----------"); + CallToStringWithFormatString(); + Console.WriteLine("----------"); + CallToStringWithFormatStringAndProvider(); + } + + private static void CallDefaultToString() + { + // + float number; + + number = 1.6E20F; + // Displays 1.6E+20. + Console.WriteLine(number.ToString()); + + number = 1.6E2F; + // Displays 160. + Console.WriteLine(number.ToString()); + + number = -3.541F; + // Displays -3.541. + Console.WriteLine(number.ToString()); + + number = -1502345222199E-07F; + // Displays -150234.5222199. + Console.WriteLine(number.ToString()); + + number = -15023452221990199574E-09F; + // Displays -15023452221.9902. + Console.WriteLine(number.ToString()); + + number = .60344F; + // Displays 0.60344. + Console.WriteLine(number.ToString()); + + number = .000000001F; + // Displays 1E-09. + Console.WriteLine(number.ToString()); + // + } + + private static void CallToStringWithFormatProvider() + { + // + float value; + + value = -16325.62015F; + // Display value using the invariant culture. + Console.WriteLine(value.ToString(CultureInfo.InvariantCulture)); + // Display value using the en-GB culture. + Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))); + // Display value using the de-DE culture. + Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("de-DE"))); + + value = 16034.125E21F; + // Display value using the invariant culture. + Console.WriteLine(value.ToString(CultureInfo.InvariantCulture)); + // Display value using the en-GB culture. + Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))); + // Display value using the de-DE culture. + Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("de-DE"))); + // This example displays the following output to the console: + // -16325.62015 + // -16325.62015 + // -16325,62015 + // 1.6034125E+25 + // 1.6034125E+25 + // 1,6034125E+25 + // + } + + private static void CallToStringWithFormatString() + { + // + float[] numbers = [1054.32179F, -195489100.8377F, 1.0437E21F, + -1.0573e-05F]; + string[] specifiers = ["C", "E", "e", "F", "G", "N", "P", + "R", "#,000.000", "0.###E-000", + "000,000,000,000.00###"]; + + foreach (float number in numbers) + { + Console.WriteLine($"Formatting of {number}:"); + foreach (string specifier in specifiers) + Console.WriteLine($" {specifier,5}: {number.ToString(specifier)}"); + + Console.WriteLine(); + } + // The example displays the following output to the console: + // Formatting of 1054.32179: + // C: $1,054.32 + // E: 1.054322E+003 + // e: 1.054322e+003 + // F: 1054.32 + // G: 1054.32179 + // N: 1,054.32 + // P: 105,432.18 % + // R: 1054.32179 + // #,000.000: 1,054.322 + // 0.###E-000: 1.054E003 + // 000,000,000,000.00###: 000,000,001,054.322 + // + // Formatting of -195489100.8377: + // C: ($195,489,100.84) + // E: -1.954891E+008 + // e: -1.954891e+008 + // F: -195489100.84 + // G: -195489100.8377 + // N: -195,489,100.84 + // P: -19,548,910,083.77 % + // R: -195489100.8377 + // #,000.000: -195,489,100.838 + // 0.###E-000: -1.955E008 + // 000,000,000,000.00###: -000,195,489,100.00 + // + // Formatting of 1.0437E+21: + // C: $1,043,700,000,000,000,000,000.00 + // E: 1.043700E+021 + // e: 1.043700e+021 + // F: 1043700000000000000000.00 + // G: 1.0437E+21 + // N: 1,043,700,000,000,000,000,000.00 + // P: 104,370,000,000,000,000,000,000.00 % + // R: 1.0437E+21 + // #,000.000: 1,043,700,000,000,000,000,000.000 + // 0.###E-000: 1.044E021 + // 000,000,000,000.00###: 1,043,700,000,000,000,000,000.00 + // + // Formatting of -1.0573E-05: + // C: $0.00 + // E: -1.057300E-005 + // e: -1.057300e-005 + // F: 0.00 + // G: -1.0573E-05 + // N: 0.00 + // P: 0.00 % + // R: -1.0573E-05 + // #,000.000: 000.000 + // 0.###E-000: -1.057E-005 + // 000,000,000,000.00###: -000,000,000,000.00001 + // + } + + private static void CallToStringWithFormatStringAndProvider() + { + // + float value = 16325.62901F; + string specifier; + CultureInfo culture; + + // Use standard numeric format specifiers. + specifier = "G"; + culture = CultureInfo.CreateSpecificCulture("eu-ES"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 16325,62901 + Console.WriteLine(value.ToString(specifier, CultureInfo.InvariantCulture)); + // Displays: 16325.62901 + + specifier = "C"; + culture = CultureInfo.CreateSpecificCulture("en-US"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: $16,325.63 + culture = CultureInfo.CreateSpecificCulture("en-GB"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: £16,325.63 + + specifier = "E04"; + culture = CultureInfo.CreateSpecificCulture("sv-SE"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 1,6326E+004 + culture = CultureInfo.CreateSpecificCulture("en-NZ"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 1.6326E+004 + + specifier = "F"; + culture = CultureInfo.CreateSpecificCulture("fr-FR"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 16325,63 + culture = CultureInfo.CreateSpecificCulture("en-CA"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 16325.63 + + specifier = "N"; + culture = CultureInfo.CreateSpecificCulture("es-ES"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 16.325,63 + culture = CultureInfo.CreateSpecificCulture("fr-CA"); + Console.WriteLine(value.ToString(specifier, culture)); + // Displays: 16 325,63 + + specifier = "P"; + culture = CultureInfo.InvariantCulture; + Console.WriteLine((value / 10000).ToString(specifier, culture)); + // Displays: 163.26 % + culture = CultureInfo.CreateSpecificCulture("ar-EG"); + Console.WriteLine((value / 10000).ToString(specifier, culture)); + // Displays: 163.256 % + // + } } diff --git a/snippets/csharp/System/Single/ToString/ToString7.cs b/snippets/csharp/System/Single/ToString/ToString7.cs index bef287d882e..50919b4bab4 100644 --- a/snippets/csharp/System/Single/ToString/ToString7.cs +++ b/snippets/csharp/System/Single/ToString/ToString7.cs @@ -3,16 +3,16 @@ public class Example { - public static void Main() - { - Double number = 1764.3789; - - // Format as a currency value. - Console.WriteLine(number.ToString("C")); - - // Format as a numeric value with 3 decimal places. - Console.WriteLine(number.ToString("N3")); - } + public static void Main() + { + double number = 1764.3789; + + // Format as a currency value. + Console.WriteLine(number.ToString("C")); + + // Format as a numeric value with 3 decimal places. + Console.WriteLine(number.ToString("N3")); + } } // The example displays the following output: // $1,764.38 diff --git a/snippets/csharp/System/Single/TryParse/tryparse1.cs b/snippets/csharp/System/Single/TryParse/tryparse1.cs index a04439a3ead..ae03065cb59 100644 --- a/snippets/csharp/System/Single/TryParse/tryparse1.cs +++ b/snippets/csharp/System/Single/TryParse/tryparse1.cs @@ -2,100 +2,100 @@ public class Class1 { - public static void Main() - { - DefaultTryParse(); - Console.WriteLine("----------"); - TryParseWithConstraints(); - } + public static void Main() + { + DefaultTryParse(); + Console.WriteLine("----------"); + TryParseWithConstraints(); + } - private static void DefaultTryParse() - { - // - string value; - float number; + private static void DefaultTryParse() + { + // + string value; + float number; - // Parse a floating-point value with a thousands separator. - value = "1,643.57"; - if (Single.TryParse(value, out number)) - Console.WriteLine(number); - else - Console.WriteLine("Unable to parse '{0}'.", value); + // Parse a floating-point value with a thousands separator. + value = "1,643.57"; + if (float.TryParse(value, out number)) + Console.WriteLine(number); + else + Console.WriteLine($"Unable to parse '{value}'."); - // Parse a floating-point value with a currency symbol and a - // thousands separator. - value = "$1,643.57"; - if (Single.TryParse(value, out number)) - Console.WriteLine(number); - else - Console.WriteLine("Unable to parse '{0}'.", value); + // Parse a floating-point value with a currency symbol and a + // thousands separator. + value = "$1,643.57"; + if (float.TryParse(value, out number)) + Console.WriteLine(number); + else + Console.WriteLine($"Unable to parse '{value}'."); - // Parse value in exponential notation. - value = "-1.643e6"; - if (Single.TryParse(value, out number)) - Console.WriteLine(number); - else - Console.WriteLine("Unable to parse '{0}'.", value); + // Parse value in exponential notation. + value = "-1.643e6"; + if (float.TryParse(value, out number)) + Console.WriteLine(number); + else + Console.WriteLine($"Unable to parse '{value}'."); - // Parse a negative integer value. - value = "-168934617882109132"; - if (Single.TryParse(value, out number)) - Console.WriteLine(number); - else - Console.WriteLine("Unable to parse '{0}'.", value); - // The example displays the following output: - // 1643.57 - // Unable to parse '$1,643.57'. - // -164300 - // -1.689346E+17 - // - } + // Parse a negative integer value. + value = "-168934617882109132"; + if (float.TryParse(value, out number)) + Console.WriteLine(number); + else + Console.WriteLine($"Unable to parse '{value}'."); + // The example displays the following output: + // 1643.57 + // Unable to parse '$1,643.57'. + // -164300 + // -1.689346E+17 + // + } - private static void TryParseWithConstraints() - { - // - string value; - System.Globalization.NumberStyles style; - System.Globalization.CultureInfo culture; - float number; + private static void TryParseWithConstraints() + { + // + string value; + System.Globalization.NumberStyles style; + System.Globalization.CultureInfo culture; + float number; - // Parse currency value using en-GB culture. - value = "£1,097.63"; - style = System.Globalization.NumberStyles.Number | - System.Globalization.NumberStyles.AllowCurrencySymbol; - culture = System.Globalization.CultureInfo.CreateSpecificCulture("en-GB"); - if (Single.TryParse(value, style, culture, out number)) - Console.WriteLine("Converted '{0}' to {1}.", value, number); - else - Console.WriteLine("Unable to convert '{0}'.", value); + // Parse currency value using en-GB culture. + value = "£1,097.63"; + style = System.Globalization.NumberStyles.Number | + System.Globalization.NumberStyles.AllowCurrencySymbol; + culture = System.Globalization.CultureInfo.CreateSpecificCulture("en-GB"); + if (float.TryParse(value, style, culture, out number)) + Console.WriteLine($"Converted '{value}' to {number}."); + else + Console.WriteLine($"Unable to convert '{value}'."); - value = "1345,978"; - style = System.Globalization.NumberStyles.AllowDecimalPoint; - culture = System.Globalization.CultureInfo.CreateSpecificCulture("fr-FR"); - if (Single.TryParse(value, style, culture, out number)) - Console.WriteLine("Converted '{0}' to {1}.", value, number); - else - Console.WriteLine("Unable to convert '{0}'.", value); + value = "1345,978"; + style = System.Globalization.NumberStyles.AllowDecimalPoint; + culture = System.Globalization.CultureInfo.CreateSpecificCulture("fr-FR"); + if (float.TryParse(value, style, culture, out number)) + Console.WriteLine($"Converted '{value}' to {number}."); + else + Console.WriteLine($"Unable to convert '{value}'."); - value = "1.345,978"; - style = System.Globalization.NumberStyles.AllowDecimalPoint | - System.Globalization.NumberStyles.AllowThousands; - culture = System.Globalization.CultureInfo.CreateSpecificCulture("es-ES"); - if (Single.TryParse(value, style, culture, out number)) - Console.WriteLine("Converted '{0}' to {1}.", value, number); - else - Console.WriteLine("Unable to convert '{0}'.", value); + value = "1.345,978"; + style = System.Globalization.NumberStyles.AllowDecimalPoint | + System.Globalization.NumberStyles.AllowThousands; + culture = System.Globalization.CultureInfo.CreateSpecificCulture("es-ES"); + if (float.TryParse(value, style, culture, out number)) + Console.WriteLine($"Converted '{value}' to {number}."); + else + Console.WriteLine($"Unable to convert '{value}'."); - value = "1 345,978"; - if (Single.TryParse(value, style, culture, out number)) - Console.WriteLine("Converted '{0}' to {1}.", value, number); - else - Console.WriteLine("Unable to convert '{0}'.", value); - // The example displays the following output: - // Converted '£1,097.63' to 1097.63. - // Converted '1345,978' to 1345.978. - // Converted '1.345,978' to 1345.978. - // Unable to convert '1 345,978'. - // - } + value = "1 345,978"; + if (float.TryParse(value, style, culture, out number)) + Console.WriteLine($"Converted '{value}' to {number}."); + else + Console.WriteLine($"Unable to convert '{value}'."); + // The example displays the following output: + // Converted '£1,097.63' to 1097.63. + // Converted '1345,978' to 1345.978. + // Converted '1.345,978' to 1345.978. + // Unable to convert '1 345,978'. + // + } } diff --git a/snippets/csharp/System/Span.Enumerator/Program.cs b/snippets/csharp/System/Span.Enumerator/Program.cs index 02899297953..b6a091df094 100644 --- a/snippets/csharp/System/Span.Enumerator/Program.cs +++ b/snippets/csharp/System/Span.Enumerator/Program.cs @@ -10,9 +10,9 @@ static void Main() new Random(42).NextBytes(_array); Span span = _array; - Task.Run( () => ClearContents() ); + Task.Run(() => ClearContents()); - EnumerateSpan(span); + EnumerateSpan(span); } public static void ClearContents() @@ -20,7 +20,7 @@ public static void ClearContents() Task.Delay(20).Wait(); lock (_array) { - Array.Clear(_array, 0, _array.Length); + Array.Clear(_array, 0, _array.Length); } } @@ -38,4 +38,4 @@ public static void EnumerateSpan(Span span) // 23 // 186 // 0 -// 0 \ No newline at end of file +// 0 diff --git a/snippets/csharp/System/Span.Enumerator/Program2.cs b/snippets/csharp/System/Span.Enumerator/Program2.cs index d53b5c46324..c475bb77a87 100644 --- a/snippets/csharp/System/Span.Enumerator/Program2.cs +++ b/snippets/csharp/System/Span.Enumerator/Program2.cs @@ -10,7 +10,7 @@ static void Main() new Random(42).NextBytes(_array); Span span = _array; - Task.Run( () => ClearContents() ); + Task.Run(() => ClearContents()); EnumerateSpan(span); } @@ -20,7 +20,7 @@ public static void ClearContents() Task.Delay(20).Wait(); lock (_array) { - Array.Clear(_array, 0, _array.Length); + Array.Clear(_array, 0, _array.Length); } } diff --git a/snippets/csharp/System/Span/Overview/program.cs b/snippets/csharp/System/Span/Overview/program.cs index 51beba48d5e..4fff2f1868e 100644 --- a/snippets/csharp/System/Span/Overview/program.cs +++ b/snippets/csharp/System/Span/Overview/program.cs @@ -28,7 +28,7 @@ private static void CreateSpanFromArray() arraySpan[ctr] = data++; int arraySum = 0; - foreach (var value in array) + foreach (byte value in array) arraySum += value; Console.WriteLine($"The sum is {arraySum}"); @@ -44,14 +44,14 @@ private static void CreateSpanFromNativeMemory() Span nativeSpan; unsafe { - nativeSpan = new Span(native.ToPointer(), 100); + nativeSpan = new(native.ToPointer(), 100); } byte data = 0; for (int ctr = 0; ctr < nativeSpan.Length; ctr++) nativeSpan[ctr] = data++; int nativeSum = 0; - foreach (var value in nativeSpan) + foreach (byte value in nativeSpan) nativeSum += value; Console.WriteLine($"The sum is {nativeSum}"); @@ -70,7 +70,7 @@ private static void CreateSpanFromStack() stackSpan[ctr] = data++; int stackSum = 0; - foreach (var value in stackSpan) + foreach (byte value in stackSpan) stackSum += value; Console.WriteLine($"The sum is {stackSum}"); @@ -96,7 +96,7 @@ public static void WorkWithSpans() Span nativeSpan; unsafe { - nativeSpan = new Span(native.ToPointer(), 100); + nativeSpan = new(native.ToPointer(), 100); } InitializeSpan(nativeSpan); @@ -121,7 +121,7 @@ public static void InitializeSpan(Span span) public static int ComputeSum(Span span) { int sum = 0; - foreach (var value in span) + foreach (byte value in span) sum += value; return sum; diff --git a/snippets/csharp/System/Span/Slice/Program.cs b/snippets/csharp/System/Span/Slice/Program.cs index 4bd2e3d18d4..f959f0f9f26 100644 --- a/snippets/csharp/System/Span/Slice/Program.cs +++ b/snippets/csharp/System/Span/Slice/Program.cs @@ -1,12 +1,12 @@ using System; -var array = new int[] { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 }; +int[] array = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]; var slice = new Span(array, 2, 5); for (int ctr = 0; ctr < slice.Length; ctr++) slice[ctr] *= 2; // Examine the original array values. -foreach (var value in array) +foreach (int value in array) Console.Write($"{value} "); Console.WriteLine(); diff --git a/snippets/csharp/System/Span/Slice/Program2.cs b/snippets/csharp/System/Span/Slice/Program2.cs index 75bfaeff52a..704b362b732 100644 --- a/snippets/csharp/System/Span/Slice/Program2.cs +++ b/snippets/csharp/System/Span/Slice/Program2.cs @@ -5,7 +5,7 @@ class Program2 static void Run() { string contentLength = "Content-Length: 132"; - var length = GetContentLength(contentLength.ToCharArray()); + int length = GetContentLength(contentLength.ToCharArray()); Console.WriteLine($"Content length: {length}"); } diff --git a/snippets/csharp/System/StackOverflowException/Overview/example1a.cs b/snippets/csharp/System/StackOverflowException/Overview/example1a.cs index d71ade38be9..b39da408413 100644 --- a/snippets/csharp/System/StackOverflowException/Overview/example1a.cs +++ b/snippets/csharp/System/StackOverflowException/Overview/example1a.cs @@ -3,27 +3,27 @@ public class Example { - private const int MAX_RECURSIVE_CALLS = 1000; - static int ctr = 0; - - public static void Main() - { - Example ex = new Example(); - ex.Execute(); - Console.WriteLine("\nThe call counter: {0}", ctr); - } + private const int MAX_RECURSIVE_CALLS = 1000; + static int ctr = 0; - private void Execute() - { - ctr++; - if (ctr % 50 == 0) - Console.WriteLine("Call number {0} to the Execute method", ctr); - - if (ctr <= MAX_RECURSIVE_CALLS) - Execute(); - - ctr--; - } + public static void Main() + { + Example ex = new(); + ex.Execute(); + Console.WriteLine($"\nThe call counter: {ctr}"); + } + + private void Execute() + { + ctr++; + if (ctr % 50 == 0) + Console.WriteLine($"Call number {ctr} to the Execute method"); + + if (ctr <= MAX_RECURSIVE_CALLS) + Execute(); + + ctr--; + } } // The example displays the following output: // Call number 50 to the Execute method diff --git a/snippets/csharp/System/String/.ctor/char2_ctor.cs b/snippets/csharp/System/String/.ctor/char2_ctor.cs index ea152e7404d..15308e8a806 100644 --- a/snippets/csharp/System/String/.ctor/char2_ctor.cs +++ b/snippets/csharp/System/String/.ctor/char2_ctor.cs @@ -3,27 +3,28 @@ public class Example1 { - public static unsafe void Main() - { - char[] characters = { 'H', 'e', 'l', 'l', 'o', ' ', - 'w', 'o', 'r', 'l', 'd', '!', '\u0000' }; - String value; - - fixed (char* charPtr = characters) { - int length = 0; - Char* iterator = charPtr; - - while (*iterator != '\x0000') - { - if (*iterator == '!' || *iterator == '.') - break; - iterator++; - length++; - } - value = new String(charPtr, 0, length); - } - Console.WriteLine(value); - } + public static unsafe void Main() + { + char[] characters = [ 'H', 'e', 'l', 'l', 'o', ' ', + 'w', 'o', 'r', 'l', 'd', '!', '\u0000' ]; + string value; + + fixed (char* charPtr = characters) + { + int length = 0; + char* iterator = charPtr; + + while (*iterator != '\x0000') + { + if (*iterator == '!' || *iterator == '.') + break; + iterator++; + length++; + } + value = new(charPtr, 0, length); + } + Console.WriteLine(value); + } } // The example displays the following output: // Hello World diff --git a/snippets/csharp/System/String/.ctor/chptrctor_null.cs b/snippets/csharp/System/String/.ctor/chptrctor_null.cs index 41eb2e7fa08..1fe18ae543c 100644 --- a/snippets/csharp/System/String/.ctor/chptrctor_null.cs +++ b/snippets/csharp/System/String/.ctor/chptrctor_null.cs @@ -3,27 +3,29 @@ public class Example2 { - public unsafe static void Main() - { - char[] chars = { 'a', 'b', 'c', 'd', '\0', 'A', 'B', 'C', 'D', '\0' }; - string s = null; - - fixed(char* chPtr = chars) { - s = new string(chPtr, 0, chars.Length); - } + public unsafe static void Main() + { + char[] chars = ['a', 'b', 'c', 'd', '\0', 'A', 'B', 'C', 'D', '\0']; + string s = null; - foreach (var ch in s) - Console.Write($"{(ushort)ch:X4} "); - Console.WriteLine(); - - fixed(char* chPtr = chars) { - s = new string(chPtr); - } - - foreach (var ch in s) - Console.Write($"{(ushort)ch:X4} "); - Console.WriteLine(); - } + fixed (char* chPtr = chars) + { + s = new(chPtr, 0, chars.Length); + } + + foreach (char ch in s) + Console.Write($"{(ushort)ch:X4} "); + Console.WriteLine(); + + fixed (char* chPtr = chars) + { + s = new(chPtr); + } + + foreach (char ch in s) + Console.Write($"{(ushort)ch:X4} "); + Console.WriteLine(); + } } // The example displays the following output: // 0061 0062 0063 0064 0000 0041 0042 0043 0044 0000 diff --git a/snippets/csharp/System/String/.ctor/ctor1.cs b/snippets/csharp/System/String/.ctor/ctor1.cs index c3ff8a27bd1..c54fbceca92 100644 --- a/snippets/csharp/System/String/.ctor/ctor1.cs +++ b/snippets/csharp/System/String/.ctor/ctor1.cs @@ -3,13 +3,13 @@ public class Example3 { - public static void Main() - { - String value1 = "This is a string."; - String value2 = value1; - Console.WriteLine(value1); - Console.WriteLine(value2); - } + public static void Main() + { + string value1 = "This is a string."; + string value2 = value1; + Console.WriteLine(value1); + Console.WriteLine(value2); + } } // The example displays the following output: // This is a string. diff --git a/snippets/csharp/System/String/.ctor/ctor2.cs b/snippets/csharp/System/String/.ctor/ctor2.cs index b6e0d7f7885..51f35bd6b99 100644 --- a/snippets/csharp/System/String/.ctor/ctor2.cs +++ b/snippets/csharp/System/String/.ctor/ctor2.cs @@ -3,17 +3,18 @@ public class Example4 { - public static unsafe void Main() - { - char[] characters = { 'H', 'e', 'l', 'l', 'o', ' ', - 'w', 'o', 'r', 'l', 'd', '!', '\u0000' }; - string value; - - fixed (char* charPtr = characters) { - value = new String(charPtr); - } - Console.WriteLine(value); - } + public static unsafe void Main() + { + char[] characters = [ 'H', 'e', 'l', 'l', 'o', ' ', + 'w', 'o', 'r', 'l', 'd', '!', '\u0000' ]; + string value; + + fixed (char* charPtr = characters) + { + value = new(charPtr); + } + Console.WriteLine(value); + } } // The example displays the following output: // Hello world! diff --git a/snippets/csharp/System/String/.ctor/ptrctor_null.cs b/snippets/csharp/System/String/.ctor/ptrctor_null.cs index 7209113786f..a8bd9fbf4f8 100644 --- a/snippets/csharp/System/String/.ctor/ptrctor_null.cs +++ b/snippets/csharp/System/String/.ctor/ptrctor_null.cs @@ -3,28 +3,30 @@ public class Example5 { - public unsafe static void Main() - { - sbyte[] bytes = { 0x61, 0x62, 0x063, 0x064, 0x00, 0x41, 0x42, 0x43, 0x44, 0x00 }; - - string s = null; - fixed (sbyte* bytePtr = bytes) { - s = new string(bytePtr, 0, bytes.Length); - } - - foreach (var ch in s) - Console.Write($"{(ushort)ch:X4} "); - - Console.WriteLine(); + public unsafe static void Main() + { + sbyte[] bytes = [0x61, 0x62, 0x063, 0x064, 0x00, 0x41, 0x42, 0x43, 0x44, 0x00]; - fixed(sbyte* bytePtr = bytes) { - s = new string(bytePtr); - } - - foreach (var ch in s) - Console.Write($"{(ushort)ch:X4} "); - Console.WriteLine(); - } + string s = null; + fixed (sbyte* bytePtr = bytes) + { + s = new(bytePtr, 0, bytes.Length); + } + + foreach (char ch in s) + Console.Write($"{(ushort)ch:X4} "); + + Console.WriteLine(); + + fixed (sbyte* bytePtr = bytes) + { + s = new(bytePtr); + } + + foreach (char ch in s) + Console.Write($"{(ushort)ch:X4} "); + Console.WriteLine(); + } } // The example displays the following output: // 0061 0062 0063 0064 0000 0041 0042 0043 0044 0000 diff --git a/snippets/csharp/System/String/.ctor/source.cs b/snippets/csharp/System/String/.ctor/source.cs index 7eebd4e46d9..11c6449f472 100644 --- a/snippets/csharp/System/String/.ctor/source.cs +++ b/snippets/csharp/System/String/.ctor/source.cs @@ -8,56 +8,56 @@ class ConsoleApp [STAThread] static void Main(string[] args) { -// + // // Unicode Mathematical operators - char [] charArr1 = {'\u2200','\u2202','\u200F','\u2205'}; - String szMathSymbols = new String(charArr1); + char[] charArr1 = ['\u2200', '\u2202', '\u200F', '\u2205']; + string szMathSymbols = new(charArr1); // Unicode Letterlike Symbols - char [] charArr2 = {'\u2111','\u2118','\u2122','\u2126'}; - String szLetterLike = new String (charArr2); + char[] charArr2 = ['\u2111', '\u2118', '\u2122', '\u2126']; + string szLetterLike = new(charArr2); // Compare Strings - the result is false Console.WriteLine("The Strings are equal? " + - (String.Compare(szMathSymbols, szLetterLike)==0?"true":"false") ); -// -// + (string.Compare(szMathSymbols, szLetterLike) == 0 ? "true" : "false")); + // + // unsafe { // Null terminated ASCII characters in an sbyte array - String szAsciiUpper = null; - sbyte[] sbArr1 = new sbyte[] { 0x41, 0x42, 0x43, 0x00 }; + string szAsciiUpper = null; + sbyte[] sbArr1 = [0x41, 0x42, 0x43, 0x00]; // Instruct the Garbage Collector not to move the memory - fixed(sbyte* pAsciiUpper = sbArr1) + fixed (sbyte* pAsciiUpper = sbArr1) { - szAsciiUpper = new String(pAsciiUpper); + szAsciiUpper = new(pAsciiUpper); } - String szAsciiLower = null; - sbyte[] sbArr2 = { 0x61, 0x62, 0x63, 0x00 }; + string szAsciiLower = null; + sbyte[] sbArr2 = [0x61, 0x62, 0x63, 0x00]; // Instruct the Garbage Collector not to move the memory - fixed(sbyte* pAsciiLower = sbArr2) + fixed (sbyte* pAsciiLower = sbArr2) { - szAsciiLower = new String(pAsciiLower, 0, sbArr2.Length); + szAsciiLower = new(pAsciiLower, 0, sbArr2.Length); } // Prints "ABC abc" Console.WriteLine(szAsciiUpper + " " + szAsciiLower); // Compare Strings - the result is true Console.WriteLine("The Strings are equal when capitalized ? " + - (String.Compare(szAsciiUpper.ToUpper(), szAsciiLower.ToUpper())==0?"true":"false") ); + (string.Compare(szAsciiUpper.ToUpper(), szAsciiLower.ToUpper()) == 0 ? "true" : "false")); // This is the effective equivalent of another Compare method, which ignores case Console.WriteLine("The Strings are equal when capitalized ? " + - (String.Compare(szAsciiUpper, szAsciiLower, true)==0?"true":"false") ); + (string.Compare(szAsciiUpper, szAsciiLower, true) == 0 ? "true" : "false")); } -// -// + // + // // Create a Unicode String with 5 Greek Alpha characters - String szGreekAlpha = new String('\u0391',5); + string szGreekAlpha = new('\u0391', 5); // Create a Unicode String with a Greek Omega character - String szGreekOmega = new String(new char [] {'\u03A9','\u03A9','\u03A9'},2,1); + string szGreekOmega = new(['\u03A9', '\u03A9', '\u03A9'], 2, 1); - String szGreekLetters = String.Concat(szGreekOmega, szGreekAlpha, szGreekOmega.Clone()); + string szGreekLetters = string.Concat(szGreekOmega, szGreekAlpha, szGreekOmega.Clone()); // Examine the result Console.WriteLine(szGreekLetters); @@ -69,23 +69,23 @@ static void Main(string[] args) Console.WriteLine("The Greek letter Alpha first appears at index " + ialpha + " and Omega last appears at index " + iomega + " in this String."); -// + // -// + // unsafe { - String utfeightstring = null; - sbyte [] asciiChars = new sbyte[] { 0x51,0x52,0x53,0x54,0x54,0x56 }; - UTF8Encoding encoding = new UTF8Encoding(true, true); + string utfeightstring = null; + sbyte[] asciiChars = [0x51, 0x52, 0x53, 0x54, 0x54, 0x56]; + UTF8Encoding encoding = new(true, true); // Instruct the Garbage Collector not to move the memory - fixed(sbyte* pAsciiChars = asciiChars) + fixed (sbyte* pAsciiChars = asciiChars) { - utfeightstring = new String(pAsciiChars,0,asciiChars.Length,encoding); + utfeightstring = new(pAsciiChars, 0, asciiChars.Length, encoding); } - Console.WriteLine("The UTF8 String is " + utfeightstring ); // prints "QRSTTV" + Console.WriteLine("The UTF8 String is " + utfeightstring); // prints "QRSTTV" } -// + // } } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/String/Chars/chars1.cs b/snippets/csharp/System/String/Chars/chars1.cs index 12081f2f6e9..65459d62154 100644 --- a/snippets/csharp/System/String/Chars/chars1.cs +++ b/snippets/csharp/System/String/Chars/chars1.cs @@ -2,14 +2,14 @@ public class Example { - public static void Main() - { - // - string str1 = "Test"; - for (int ctr = 0; ctr <= str1.Length - 1; ctr++ ) - Console.Write("{0} ", str1[ctr]); - // The example displays the following output: - // T e s t - // - } + public static void Main() + { + // + string str1 = "Test"; + for (int ctr = 0; ctr <= str1.Length - 1; ctr++) + Console.Write($"{str1[ctr]} "); + // The example displays the following output: + // T e s t + // + } } diff --git a/snippets/csharp/System/String/Chars/uri_ishexdigit.cs b/snippets/csharp/System/String/Chars/uri_ishexdigit.cs index 443ed53ec1b..2bc8b71c248 100644 --- a/snippets/csharp/System/String/Chars/uri_ishexdigit.cs +++ b/snippets/csharp/System/String/Chars/uri_ishexdigit.cs @@ -8,18 +8,18 @@ specified character is valid hexadecimal digit. using System; class MyIsHexDigitSample { - public static void Main() - { - try - { + public static void Main() + { + try + { // - Console.Write("Type a string : "); - string myString = Console.ReadLine(); - for (int i = 0; i < myString.Length; i ++) - if(Uri.IsHexDigit(myString[i])) - Console.WriteLine("{0} is a hexadecimal digit.", myString[i]); - else - Console.WriteLine("{0} is not a hexadecimal digit.", myString[i]); + Console.Write("Type a string : "); + string myString = Console.ReadLine(); + for (int i = 0; i < myString.Length; i++) + if (Uri.IsHexDigit(myString[i])) + Console.WriteLine($"{myString[i]} is a hexadecimal digit."); + else + Console.WriteLine($"{myString[i]} is not a hexadecimal digit."); // The example produces output like the following: // Type a string : 3f5EaZ // 3 is a hexadecimal digit. @@ -29,14 +29,14 @@ public static void Main() // a is a hexadecimal digit. // Z is not a hexadecimal digit. // - } - catch(Exception e) - { - Console.WriteLine(e.Message); - } - } + } + catch (Exception e) + { + Console.WriteLine(e.Message); + } + } } // ***** Output ***** /* -*/ \ No newline at end of file +*/ diff --git a/snippets/csharp/System/String/Compare/ArrayListSample.cs b/snippets/csharp/System/String/Compare/ArrayListSample.cs index d85c1ff9a0d..acf6be7feda 100644 --- a/snippets/csharp/System/String/Compare/ArrayListSample.cs +++ b/snippets/csharp/System/String/Compare/ArrayListSample.cs @@ -1,7 +1,7 @@ // using System; -using System.Text; using System.Collections; +using System.Text; public class SamplesArrayList { @@ -10,20 +10,22 @@ public static void Main() { // // Creates and initializes a new ArrayList. - ArrayList myAL = new ArrayList(); - myAL.Add("Eric"); - myAL.Add("Mark"); - myAL.Add("Lance"); - myAL.Add("Rob"); - myAL.Add("Kris"); - myAL.Add("Brad"); - myAL.Add("Kit"); - myAL.Add("Bradley"); - myAL.Add("Keith"); - myAL.Add("Susan"); + ArrayList myAL = new ArrayList() + { + "Eric", + "Mark", + "Lance", + "Rob", + "Kris", + "Brad", + "Kit", + "Bradley", + "Keith", + "Susan" + }; // Displays the properties and values of the ArrayList. - Console.WriteLine("Count: {0}", myAL.Count); + Console.WriteLine($"Count: {myAL.Count}"); // PrintValues("Unsorted", myAL); @@ -43,7 +45,7 @@ public static void Main() // public static void PrintValues(string title, IEnumerable myList) { - Console.Write("{0,10}: ", title); + Console.Write($"{title,10}: "); StringBuilder sb = new StringBuilder(); foreach (string s in myList) { @@ -62,7 +64,7 @@ public int Compare(object? x, object? y) string? s1 = x as string; string? s2 = y as string; //negate the return value to get the reverse order - return -String.Compare(s1, s2); + return -string.Compare(s1, s2); } } // diff --git a/snippets/csharp/System/String/Compare/Compare18.cs b/snippets/csharp/System/String/Compare/Compare18.cs index d570605d221..e10c4b7a483 100644 --- a/snippets/csharp/System/String/Compare/Compare18.cs +++ b/snippets/csharp/System/String/Compare/Compare18.cs @@ -5,19 +5,16 @@ public class Example18 public static void Main() { // - String s1, s2; + string s1, s2; s1 = "car"; s2 = "Car"; - Console.WriteLine("'{0}' and '{1}': {2}", s1, s2, - String.Compare(s1, s2)); - - s1 = "fork"; s2 = "forks"; - Console.WriteLine("'{0}' and '{1}': {2}", s1, s2, - String.Compare(s1, s2)); + Console.WriteLine($"'{s1}' and '{s2}': {string.Compare(s1, s2)}"); + + s1 = "fork"; s2 = "forks"; + Console.WriteLine($"'{s1}' and '{s2}': {string.Compare(s1, s2)}"); s1 = "mammal"; s2 = "fish"; - Console.WriteLine("'{0}' and '{1}': {2}", s1, s2, - String.Compare(s1, s2)); + Console.WriteLine($"'{s1}' and '{s2}': {string.Compare(s1, s2)}"); // The example displays the following output: // 'car' and 'Car': -1 diff --git a/snippets/csharp/System/String/Compare/Example.cs b/snippets/csharp/System/String/Compare/Example.cs index f2a50dead54..b80d4d96cfd 100644 --- a/snippets/csharp/System/String/Compare/Example.cs +++ b/snippets/csharp/System/String/Compare/Example.cs @@ -12,7 +12,7 @@ public static void Main() int result; // Cultural (linguistic) comparison. - result = String.Compare(string1, string2, new CultureInfo("en-US"), + result = string.Compare(string1, string2, new CultureInfo("en-US"), CompareOptions.None); if (result > 0) relation = "comes after"; @@ -21,11 +21,10 @@ public static void Main() else relation = "comes before"; - Console.WriteLine("'{0}' {1} '{2}'.", - string1, relation, string2); + Console.WriteLine($"'{string1}' {relation} '{string2}'."); // Cultural (linguistic) case-insensitive comparison. - result = String.Compare(string1, string2, new CultureInfo("en-US"), + result = string.Compare(string1, string2, new CultureInfo("en-US"), CompareOptions.IgnoreCase); if (result > 0) relation = "comes after"; @@ -34,11 +33,10 @@ public static void Main() else relation = "comes before"; - Console.WriteLine("'{0}' {1} '{2}'.", - string1, relation, string2); - + Console.WriteLine($"'{string1}' {relation} '{string2}'."); + // Culture-insensitive ordinal comparison. - result = String.CompareOrdinal(string1, string2); + result = string.CompareOrdinal(string1, string2); if (result > 0) relation = "comes after"; else if (result == 0) @@ -46,11 +44,10 @@ public static void Main() else relation = "comes before"; - Console.WriteLine("'{0}' {1} '{2}'.", - string1, relation, string2); + Console.WriteLine($"'{string1}' {relation} '{string2}'."); // The example produces the following output: - // 'brother' comes before 'Brother'. + // 'brother' comes before 'Brother'. // 'brother' is the same as 'Brother'. // 'brother' comes after 'Brother'. } diff --git a/snippets/csharp/System/String/Compare/Example1.cs b/snippets/csharp/System/String/Compare/Example1.cs index c70346e32dd..4208632f68c 100644 --- a/snippets/csharp/System/String/Compare/Example1.cs +++ b/snippets/csharp/System/String/Compare/Example1.cs @@ -19,11 +19,11 @@ public static void Main() int length = Math.Max(name1.Length, name2.Length); Console.WriteLine("Sorted alphabetically by last name:"); - if (String.Compare(name1, index1, name2, index2, length, + if (string.Compare(name1, index1, name2, index2, length, new CultureInfo("en-US"), CompareOptions.IgnoreCase) < 0) - Console.WriteLine("{0}\n{1}", name1, name2); + Console.WriteLine($"{name1}\n{name2}"); else - Console.WriteLine("{0}\n{1}", name2, name1); + Console.WriteLine($"{name2}\n{name1}"); // The example displays the following output: // Sorted alphabetically by last name: diff --git a/snippets/csharp/System/String/Compare/cmpcmp.cs b/snippets/csharp/System/String/Compare/cmpcmp.cs index e1326d072a9..a862ef2ff26 100644 --- a/snippets/csharp/System/String/Compare/cmpcmp.cs +++ b/snippets/csharp/System/String/Compare/cmpcmp.cs @@ -1,20 +1,20 @@ // -// This example demonstrates the +// This example demonstrates the // System.String.Compare(String, String, StringComparison) method. using System; using System.Threading; -class Sample +class Sample { - public static void Main() + public static void Main() { - string intro = "Compare three versions of the letter I using different " + + string intro = "Compare three versions of the letter I using different " + "values of StringComparison."; - // Define an array of strings where each element contains a version of the - // letter I. (An array of strings is used so you can easily modify this - // code example to test additional or different combinations of strings.) + // Define an array of strings where each element contains a version of the + // letter I. (An array of strings is used so you can easily modify this + // code example to test additional or different combinations of strings.) string[] threeIs = new string[3]; // LATIN SMALL LETTER I (U+0069) @@ -24,10 +24,10 @@ public static void Main() // LATIN CAPITAL LETTER I (U+0049) threeIs[2] = "\u0049"; - string[] unicodeNames = + string[] unicodeNames = { - "LATIN SMALL LETTER I (U+0069)", - "LATIN SMALL LETTER DOTLESS I (U+0131)", + "LATIN SMALL LETTER I (U+0069)", + "LATIN SMALL LETTER DOTLESS I (U+0131)", "LATIN CAPITAL LETTER I (U+0049)" }; @@ -46,13 +46,12 @@ public static void Main() // Display the current culture because the culture-specific comparisons // can produce different results with different cultures. - Console.WriteLine( - "The current culture is {0}.\n", Thread.CurrentThread.CurrentCulture.Name); + Console.WriteLine($"The current culture is {Thread.CurrentThread.CurrentCulture.Name}.\n"); - // Determine the relative sort order of three versions of the letter I. + // Determine the relative sort order of three versions of the letter I. foreach (StringComparison sc in scValues) { - Console.WriteLine("StringComparison.{0}:", sc); + Console.WriteLine($"StringComparison.{sc}:"); // LATIN SMALL LETTER I (U+0069) : LATIN SMALL LETTER DOTLESS I (U+0131) Test(0, 1, sc, threeIs, unicodeNames); @@ -74,7 +73,7 @@ protected static void Test( string result = "equal to"; int cmpValue = 0; - cmpValue = String.Compare(testI[x], testI[y], comparison); + cmpValue = string.Compare(testI[x], testI[y], comparison); if (cmpValue < 0) result = "less than"; else if (cmpValue > 0) diff --git a/snippets/csharp/System/String/Compare/comp3.cs b/snippets/csharp/System/String/Compare/comp3.cs index 89664c5dc38..7cef9a0f887 100644 --- a/snippets/csharp/System/String/Compare/comp3.cs +++ b/snippets/csharp/System/String/Compare/comp3.cs @@ -6,18 +6,18 @@ class Sample3 public static void Main() { // - String str1 = "machine"; - String str2 = "device"; - String str; + string str1 = "machine"; + string str2 = "device"; + string str; int result; Console.WriteLine(); - Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); - result = String.Compare(str1, 2, str2, 0, 2); + Console.WriteLine($"str1 = '{str1}', str2 = '{str2}'"); + result = string.Compare(str1, 2, str2, 0, 2); str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(2, 2), str1); - Console.Write("{0} ", str); - Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(0, 2), str2); + Console.Write($"Substring '{str1.Substring(2, 2)}' in '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"substring '{str2.Substring(0, 2)}' in '{str2}'."); /* This example produces the following results: diff --git a/snippets/csharp/System/String/Compare/comp4.cs b/snippets/csharp/System/String/Compare/comp4.cs index d803d385a27..29d2db41492 100644 --- a/snippets/csharp/System/String/Compare/comp4.cs +++ b/snippets/csharp/System/String/Compare/comp4.cs @@ -6,28 +6,28 @@ class Sample4 public static void Main() { // - String str1 = "MACHINE"; - String str2 = "machine"; - String str; + string str1 = "MACHINE"; + string str2 = "machine"; + string str; int result; Console.WriteLine(); - Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); + Console.WriteLine($"str1 = '{str1}', str2 = '{str2}'"); Console.WriteLine("Ignore case:"); - result = String.Compare(str1, 2, str2, 2, 2, true); + result = string.Compare(str1, 2, str2, 2, 2, true); str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(2, 2), str1); - Console.Write("{0} ", str); - Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(2, 2), str2); + Console.Write($"Substring '{str1.Substring(2, 2)}' in '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"substring '{str2.Substring(2, 2)}' in '{str2}'."); Console.WriteLine(); Console.WriteLine("Honor case:"); - result = String.Compare(str1, 2, str2, 2, 2, false); + result = string.Compare(str1, 2, str2, 2, 2, false); str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(2, 2), str1); - Console.Write("{0} ", str); - Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(2, 2), str2); + Console.Write($"Substring '{str1.Substring(2, 2)}' in '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"substring '{str2.Substring(2, 2)}' in '{str2}'."); /* This example produces the following results: diff --git a/snippets/csharp/System/String/Compare/comp5.cs b/snippets/csharp/System/String/Compare/comp5.cs index dbfc689f393..7b63b5266dc 100644 --- a/snippets/csharp/System/String/Compare/comp5.cs +++ b/snippets/csharp/System/String/Compare/comp5.cs @@ -8,27 +8,27 @@ class Sample5 public static void Main() { // 0123456 - String str1 = "MACHINE"; - String str2 = "machine"; - String str; + string str1 = "MACHINE"; + string str2 = "machine"; + string str; int result; Console.WriteLine(); - Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); + Console.WriteLine($"str1 = '{str1}', str2 = '{str2}'"); Console.WriteLine("Ignore case, Turkish culture:"); - result = String.Compare(str1, 4, str2, 4, 2, true, new CultureInfo("tr-TR")); + result = string.Compare(str1, 4, str2, 4, 2, true, new CultureInfo("tr-TR")); str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(4, 2), str1); - Console.Write("{0} ", str); - Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(4, 2), str2); + Console.Write($"Substring '{str1.Substring(4, 2)}' in '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"substring '{str2.Substring(4, 2)}' in '{str2}'."); Console.WriteLine(); Console.WriteLine("Ignore case, invariant culture:"); - result = String.Compare(str1, 4, str2, 4, 2, true, CultureInfo.InvariantCulture); + result = string.Compare(str1, 4, str2, 4, 2, true, CultureInfo.InvariantCulture); str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(4, 2), str1); - Console.Write("{0} ", str); - Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(4, 2), str2); + Console.Write($"Substring '{str1.Substring(4, 2)}' in '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"substring '{str2.Substring(4, 2)}' in '{str2}'."); } } /* diff --git a/snippets/csharp/System/String/Compare/compare02.cs b/snippets/csharp/System/String/Compare/compare02.cs index d9335e5a87d..4492e2bbbba 100644 --- a/snippets/csharp/System/String/Compare/compare02.cs +++ b/snippets/csharp/System/String/Compare/compare02.cs @@ -6,24 +6,19 @@ static void Main() { // // Create upper-case characters from their Unicode code units. - String stringUpper = "\x0041\x0042\x0043"; + string stringUpper = "\x0041\x0042\x0043"; // Create lower-case characters from their Unicode code units. - String stringLower = "\x0061\x0062\x0063"; + string stringLower = "\x0061\x0062\x0063"; // Display the strings. - Console.WriteLine("Comparing '{0}' and '{1}':", - stringUpper, stringLower); + Console.WriteLine($"Comparing '{stringUpper}' and '{stringLower}':"); // Compare the uppercased strings; the result is true. - Console.WriteLine("The Strings are equal when capitalized? {0}", - String.Compare(stringUpper.ToUpper(), stringLower.ToUpper()) == 0 - ? "true" : "false"); + Console.WriteLine($"The Strings are equal when capitalized? {(string.Compare(stringUpper.ToUpper(), stringLower.ToUpper()) == 0 ? "true" : "false")}"); // The previous method call is equivalent to this Compare method, which ignores case. - Console.WriteLine("The Strings are equal when case is ignored? {0}", - String.Compare(stringUpper, stringLower, true) == 0 - ? "true" : "false" ); + Console.WriteLine($"The Strings are equal when case is ignored? {(string.Compare(stringUpper, stringLower, true) == 0 ? "true" : "false")}"); // The example displays the following output: // Comparing 'ABC' and 'abc': diff --git a/snippets/csharp/System/String/Compare/compare21.cs b/snippets/csharp/System/String/Compare/compare21.cs index d121700e920..d98cd894d54 100644 --- a/snippets/csharp/System/String/Compare/compare21.cs +++ b/snippets/csharp/System/String/Compare/compare21.cs @@ -8,8 +8,7 @@ public static void Main() string s1 = "ani\u00ADmal"; string s2 = "animal"; - Console.WriteLine("Comparison of '{0}' and '{1}': {2}", - s1, s2, String.Compare(s1, s2)); + Console.WriteLine($"Comparison of '{s1}' and '{s2}': {string.Compare(s1, s2)}"); // The example displays the following output: // Comparison of 'ani-mal' and 'animal': 0 diff --git a/snippets/csharp/System/String/Compare/compare22.cs b/snippets/csharp/System/String/Compare/compare22.cs index f13a647852a..7151355a03e 100644 --- a/snippets/csharp/System/String/Compare/compare22.cs +++ b/snippets/csharp/System/String/Compare/compare22.cs @@ -8,8 +8,7 @@ public static void Main() string s1 = "Ani\u00ADmal"; string s2 = "animal"; - Console.WriteLine("Comparison of '{0}' and '{1}': {2}", - s1, s2, String.Compare(s1, s2, true)); + Console.WriteLine($"Comparison of '{s1}' and '{s2}': {string.Compare(s1, s2, true)}"); // The example displays the following output: // Comparison of 'Ani-mal' and 'animal': 0 diff --git a/snippets/csharp/System/String/Compare/compare23.cs b/snippets/csharp/System/String/Compare/compare23.cs index 43f6d172e58..f110fe34f96 100644 --- a/snippets/csharp/System/String/Compare/compare23.cs +++ b/snippets/csharp/System/String/Compare/compare23.cs @@ -8,10 +8,8 @@ public static void Main() // string s1 = "Ani\u00ADmal"; string s2 = "animal"; - - Console.WriteLine("Comparison of '{0}' and '{1}': {2}", - s1, s2, String.Compare(s1, s2, true, - CultureInfo.InvariantCulture)); + + Console.WriteLine($"Comparison of '{s1}' and '{s2}': {string.Compare(s1, s2, true, CultureInfo.InvariantCulture)}"); // The example displays the following output: // Comparison of 'Ani-mal' and 'animal': 0 diff --git a/snippets/csharp/System/String/Compare/remarks.cs b/snippets/csharp/System/String/Compare/remarks.cs index 54a9ce78435..4ecab74e919 100644 --- a/snippets/csharp/System/String/Compare/remarks.cs +++ b/snippets/csharp/System/String/Compare/remarks.cs @@ -1,22 +1,16 @@ using System; -using System.Globalization; + public class Remarks { - public static void Main() - { - Console.WriteLine("Hi!"); - } + public static void Main() => Console.WriteLine("Hi!"); } // System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32) public class CompareSample1_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -24,10 +18,7 @@ static bool IsFileURI(String path) public class CompareSample1_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -35,10 +26,7 @@ static bool IsFileURI(String path) public class CompareSample2_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -46,10 +34,7 @@ static bool IsFileURI(String path) public class CompareSample2_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -58,10 +43,7 @@ static bool IsFileURI(String path) public class CompareSample3_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -70,10 +52,7 @@ static bool IsFileURI(String path) public class CompareSample3_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -82,10 +61,7 @@ static bool IsFileURI(String path) public class CompareSample4_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -94,10 +70,7 @@ static bool IsFileURI(String path) public class CompareSample4_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -105,10 +78,7 @@ static bool IsFileURI(String path) public class CompareSample5_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -116,10 +86,7 @@ static bool IsFileURI(String path) public class CompareSample5_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -127,10 +94,7 @@ static bool IsFileURI(String path) public class CompareSample6_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -138,10 +102,7 @@ static bool IsFileURI(String path) public class CompareSample6_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -149,10 +110,7 @@ static bool IsFileURI(String path) public class CompareSample7_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -160,10 +118,7 @@ static bool IsFileURI(String path) public class CompareSample7_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } @@ -171,10 +126,7 @@ static bool IsFileURI(String path) public class CompareSample8_1 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, true) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, true) == 0); // } @@ -182,9 +134,6 @@ static bool IsFileURI(String path) public class CompareSample8_2 { // - static bool IsFileURI(String path) - { - return (String.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); - } + static bool IsFileURI(string path) => (string.Compare(path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0); // } diff --git a/snippets/csharp/System/String/Compare/string.comp4.cs b/snippets/csharp/System/String/Compare/string.comp4.cs index 27c263c562f..1715fdc11a6 100644 --- a/snippets/csharp/System/String/Compare/string.comp4.cs +++ b/snippets/csharp/System/String/Compare/string.comp4.cs @@ -6,20 +6,20 @@ class Sample0 // public static void Main() { - String str1 = "change"; - String str2 = "dollar"; - String relation; + string str1 = "change"; + string str2 = "dollar"; + string relation; - relation = symbol(String.Compare(str1, str2, false, new CultureInfo("en-US"))); - Console.WriteLine("For en-US: {0} {1} {2}", str1, relation, str2); + relation = symbol(string.Compare(str1, str2, false, new CultureInfo("en-US"))); + Console.WriteLine($"For en-US: {str1} {relation} {str2}"); - relation = symbol(String.Compare(str1, str2, false, new CultureInfo("cs-CZ"))); - Console.WriteLine("For cs-CZ: {0} {1} {2}", str1, relation, str2); + relation = symbol(string.Compare(str1, str2, false, new CultureInfo("cs-CZ"))); + Console.WriteLine($"For cs-CZ: {str1} {relation} {str2}"); } - private static String symbol(int r) + private static string symbol(int r) { - String s = "="; + string s = "="; if (r < 0) s = "<"; else if (r > 0) s = ">"; return s; diff --git a/snippets/csharp/System/String/CompareOrdinal/comp0.cs b/snippets/csharp/System/String/CompareOrdinal/comp0.cs index b0aa972322a..e7355ed29c1 100644 --- a/snippets/csharp/System/String/CompareOrdinal/comp0.cs +++ b/snippets/csharp/System/String/CompareOrdinal/comp0.cs @@ -2,21 +2,23 @@ // Sample for String.CompareOrdinal(String, String) using System; -class Sample { - public static void Main() { - String str1 = "ABCD"; - String str2 = "abcd"; - String str; - int result; +class Sample +{ + public static void Main() + { + string str1 = "ABCD"; + string str2 = "abcd"; + string str; + int result; - Console.WriteLine(); - Console.WriteLine("Compare the numeric values of the corresponding Char objects in each string."); - Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); - result = String.CompareOrdinal(str1, str2); - str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); - Console.Write("String '{0}' is ", str1); - Console.Write("{0} ", str); - Console.WriteLine("String '{0}'.", str2); + Console.WriteLine(); + Console.WriteLine("Compare the numeric values of the corresponding Char objects in each string."); + Console.WriteLine($"str1 = '{str1}', str2 = '{str2}'"); + result = string.CompareOrdinal(str1, str2); + str = ((result < 0) ? "less than" : ((result > 0) ? "greater than" : "equal to")); + Console.Write($"String '{str1}' is "); + Console.Write($"{str} "); + Console.WriteLine($"String '{str2}'."); } } /* @@ -26,4 +28,4 @@ Compare the numeric values of the corresponding Char objects in each string. str1 = 'ABCD', str2 = 'abcd' String 'ABCD' is less than String 'abcd'. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/CompareOrdinal/stringcompareordinal.cs b/snippets/csharp/System/String/CompareOrdinal/stringcompareordinal.cs index 4f7777b9761..beee0b53fc2 100644 --- a/snippets/csharp/System/String/CompareOrdinal/stringcompareordinal.cs +++ b/snippets/csharp/System/String/CompareOrdinal/stringcompareordinal.cs @@ -4,27 +4,27 @@ class Test { - public static void Main(String[] args) - { - String strLow = "abc"; - String strCap = "ABC"; - String result = "equal to "; - int x = 0; - int pos = 1; + public static void Main(string[] args) + { + string strLow = "abc"; + string strCap = "ABC"; + string result = "equal to "; + int x = 0; + int pos = 1; -// The Unicode codepoint for 'b' is greater than the codepoint for 'B'. - x = String.CompareOrdinal(strLow, pos, strCap, pos, 1); - if (x < 0) result = "less than"; - if (x > 0) result = "greater than"; - Console.WriteLine("CompareOrdinal(\"{0}\"[{2}], \"{1}\"[{2}]):", strLow, strCap, pos); - Console.WriteLine(" '{0}' is {1} '{2}'", strLow[pos], result, strCap[pos]); + // The Unicode codepoint for 'b' is greater than the codepoint for 'B'. + x = string.CompareOrdinal(strLow, pos, strCap, pos, 1); + if (x < 0) result = "less than"; + if (x > 0) result = "greater than"; + Console.WriteLine("CompareOrdinal(\"{0}\"[{2}], \"{1}\"[{2}]):", strLow, strCap, pos); + Console.WriteLine($" '{strLow[pos]}' is {result} '{strCap[pos]}'"); -// In U.S. English culture, 'b' is linguistically less than 'B'. - x = String.Compare(strLow, pos, strCap, pos, 1, false, new CultureInfo("en-US")); - if (x < 0) result = "less than"; - else if (x > 0) result = "greater than"; - Console.WriteLine("Compare(\"{0}\"[{2}], \"{1}\"[{2}]):", strLow, strCap, pos); - Console.WriteLine(" '{0}' is {1} '{2}'", strLow[pos], result, strCap[pos]); - } + // In U.S. English culture, 'b' is linguistically less than 'B'. + x = string.Compare(strLow, pos, strCap, pos, 1, false, new CultureInfo("en-US")); + if (x < 0) result = "less than"; + else if (x > 0) result = "greater than"; + Console.WriteLine("Compare(\"{0}\"[{2}], \"{1}\"[{2}]):", strLow, strCap, pos); + Console.WriteLine($" '{strLow[pos]}' is {result} '{strCap[pos]}'"); + } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/CompareTo/Program.cs b/snippets/csharp/System/String/CompareTo/Program.cs new file mode 100644 index 00000000000..93f10cb2416 --- /dev/null +++ b/snippets/csharp/System/String/CompareTo/Program.cs @@ -0,0 +1,4 @@ +Example.Run(); +CompareToStringExample.Run(); +CompareToObjectExample.Run(); +CompareStringsExample.Run(); diff --git a/snippets/csharp/System/String/CompareTo/Project.csproj b/snippets/csharp/System/String/CompareTo/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/CompareTo/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/CompareTo/compareto1.cs b/snippets/csharp/System/String/CompareTo/compareto1.cs index 31bd2bce666..1100bd72a7c 100644 --- a/snippets/csharp/System/String/CompareTo/compareto1.cs +++ b/snippets/csharp/System/String/CompareTo/compareto1.cs @@ -3,14 +3,13 @@ public class Example { - public static void Main() - { - string s1 = "ani\u00ADmal"; - object o1 = "animal"; - - Console.WriteLine("Comparison of '{0}' and '{1}': {2}", - s1, o1, s1.CompareTo(o1)); - } + public static void Run() + { + string s1 = "ani\u00ADmal"; + object o1 = "animal"; + + Console.WriteLine($"Comparison of '{s1}' and '{o1}': {s1.CompareTo(o1)}"); + } } // The example displays the following output: // Comparison of 'ani-mal' and 'animal': 0 diff --git a/snippets/csharp/System/String/CompareTo/compareto2.cs b/snippets/csharp/System/String/CompareTo/compareto2.cs index e45f43f1359..85e8a397519 100644 --- a/snippets/csharp/System/String/CompareTo/compareto2.cs +++ b/snippets/csharp/System/String/CompareTo/compareto2.cs @@ -1,16 +1,15 @@ // using System; -public class Example +public class CompareToStringExample { - public static void Main() - { - string s1 = "ani\u00ADmal"; - string s2 = "animal"; - - Console.WriteLine("Comparison of '{0}' and '{1}': {2}", - s1, s2, s1.CompareTo(s2)); - } + public static void Run() + { + string s1 = "ani\u00ADmal"; + string s2 = "animal"; + + Console.WriteLine($"Comparison of '{s1}' and '{s2}': {s1.CompareTo(s2)}"); + } } // The example displays the following output: // Comparison of 'ani-mal' and 'animal': 0 diff --git a/snippets/csharp/System/String/CompareTo/extostring.cs b/snippets/csharp/System/String/CompareTo/extostring.cs index 625e49d9362..4fa5ee468fc 100644 --- a/snippets/csharp/System/String/CompareTo/extostring.cs +++ b/snippets/csharp/System/String/CompareTo/extostring.cs @@ -2,30 +2,30 @@ using System; public class TestClass -{} +{ } -public class Example +public class CompareToObjectExample { - public static void Main() - { - var test = new TestClass(); - Object[] objectsToCompare = { test, test.ToString(), 123, + public static void Run() + { + var test = new TestClass(); + object[] objectsToCompare = [ test, test.ToString(), 123, 123.ToString(), "some text", - "Some Text" }; - string s = "some text"; - foreach (var objectToCompare in objectsToCompare) { - try { - int i = s.CompareTo(objectToCompare); - Console.WriteLine("Comparing '{0}' with '{1}': {2}", - s, objectToCompare, i); - } - catch (ArgumentException) { - Console.WriteLine("Bad argument: {0} (type {1})", - objectToCompare, - objectToCompare.GetType().Name); - } - } - } + "Some Text" ]; + string s = "some text"; + foreach (object objectToCompare in objectsToCompare) + { + try + { + int i = s.CompareTo(objectToCompare); + Console.WriteLine($"Comparing '{s}' with '{objectToCompare}': {i}"); + } + catch (ArgumentException) + { + Console.WriteLine($"Bad argument: {objectToCompare} (type {objectToCompare.GetType().Name})"); + } + } + } } // The example displays the following output: // Bad argument: TestClass (type TestClass) @@ -34,4 +34,4 @@ public static void Main() // Comparing 'some text' with '123': 1 // Comparing 'some text' with 'some text': 0 // Comparing 'some text' with 'Some Text': -1 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/CompareTo/stringcompareto.cs b/snippets/csharp/System/String/CompareTo/stringcompareto.cs index 2bce361d198..a03dc7fb675 100644 --- a/snippets/csharp/System/String/CompareTo/stringcompareto.cs +++ b/snippets/csharp/System/String/CompareTo/stringcompareto.cs @@ -1,37 +1,37 @@ // using System; -public class Example +public class CompareStringsExample { - public static void Main() - { - string strFirst = "Goodbye"; - string strSecond = "Hello"; - string strThird = "a small string"; - string strFourth = "goodbye"; + public static void Run() + { + string strFirst = "Goodbye"; + string strSecond = "Hello"; + string strThird = "a small string"; + string strFourth = "goodbye"; - // Compare a string to itself. - Console.WriteLine(CompareStrings(strFirst, strFirst)); + // Compare a string to itself. + Console.WriteLine(CompareStrings(strFirst, strFirst)); - Console.WriteLine(CompareStrings(strFirst, strSecond)); - Console.WriteLine(CompareStrings(strFirst, strThird)); + Console.WriteLine(CompareStrings(strFirst, strSecond)); + Console.WriteLine(CompareStrings(strFirst, strThird)); - // Compare a string to another string that varies only by case. - Console.WriteLine(CompareStrings(strFirst, strFourth)); - Console.WriteLine(CompareStrings(strFourth, strFirst)); - } + // Compare a string to another string that varies only by case. + Console.WriteLine(CompareStrings(strFirst, strFourth)); + Console.WriteLine(CompareStrings(strFourth, strFirst)); + } - private static string CompareStrings( string str1, string str2 ) - { - // Compare the values, using the CompareTo method on the first string. - int cmpVal = str1.CompareTo(str2); + private static string CompareStrings(string str1, string str2) + { + // Compare the values, using the CompareTo method on the first string. + int cmpVal = str1.CompareTo(str2); - if (cmpVal == 0) // The strings are the same. - return "The strings occur in the same position in the sort order."; - else if (cmpVal < 0) - return "The first string precedes the second in the sort order."; - else - return "The first string follows the second in the sort order."; + if (cmpVal == 0) // The strings are the same. + return "The strings occur in the same position in the sort order."; + else if (cmpVal < 0) + return "The first string precedes the second in the sort order."; + else + return "The first string follows the second in the sort order."; } } // The example displays the following output: diff --git a/snippets/csharp/System/String/Concat/Concat6.cs b/snippets/csharp/System/String/Concat/Concat6.cs index b8a0afb05fb..921272ddc85 100644 --- a/snippets/csharp/System/String/Concat/Concat6.cs +++ b/snippets/csharp/System/String/Concat/Concat6.cs @@ -1,18 +1,18 @@ // using System; -public class Example +public class ConcatThreeStringsExample { - public static void Main() - { - String s1 = "We went to a bookstore, "; - String s2 = "a movie, "; - String s3 = "and a restaurant."; + public static void Run() + { + string s1 = "We went to a bookstore, "; + string s2 = "a movie, "; + string s3 = "and a restaurant."; - var s = String.Concat(s1, s2, s3); - Console.WriteLine(s); - } + string s = string.Concat(s1, s2, s3); + Console.WriteLine(s); + } } // The example displays the following output: -// We went to a bookstore, a movie, and a restaurant. +// We went to a bookstore, a movie, and a restaurant. // diff --git a/snippets/csharp/System/String/Concat/Program.cs b/snippets/csharp/System/String/Concat/Program.cs new file mode 100644 index 00000000000..fed8c0cab85 --- /dev/null +++ b/snippets/csharp/System/String/Concat/Program.cs @@ -0,0 +1,9 @@ +Example.Run(); +ConcatAlphabetExample.Run(); +ConcatAnimalsExample.Run(); +ConcatScrambleExample.Run(); +ConcatThreeStringsExample.Run(); +stringConcat5.Run(); +ConcatTest.Run(); +ConcatArrayExample.Run(); +ConcatNamesTest.Run(); diff --git a/snippets/csharp/System/String/Concat/Project.csproj b/snippets/csharp/System/String/Concat/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/Concat/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/Concat/concat1.cs b/snippets/csharp/System/String/Concat/concat1.cs index ef899ccee4f..930347b105b 100644 --- a/snippets/csharp/System/String/Concat/concat1.cs +++ b/snippets/csharp/System/String/Concat/concat1.cs @@ -4,35 +4,35 @@ public class Example { - public static void Main() - { - int maxPrime = 100; - IEnumerable primeList = GetPrimes(maxPrime); - Console.WriteLine("Primes less than {0}:", maxPrime); - Console.WriteLine(" {0}", String.Concat(primeList)); - } + public static void Run() + { + int maxPrime = 100; + IEnumerable primeList = GetPrimes(maxPrime); + Console.WriteLine($"Primes less than {maxPrime}:"); + Console.WriteLine($" {string.Concat(primeList)}"); + } - private static IEnumerable GetPrimes(int maxPrime) - { - Array values = Array.CreateInstance(typeof(int), - new int[] { maxPrime - 1}, new int[] { 2 }); - // Use Sieve of Erathsthenes to determine prime numbers. - for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) - { - - if ((int) values.GetValue(ctr) == 1) continue; - - for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) - if (ctr * multiplier <= maxPrime) - values.SetValue(1, ctr * multiplier); - } - - List primes = new List(); - for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) - if ((int) values.GetValue(ctr) == 0) - primes.Add(ctr.ToString() + " "); - return primes; - } + private static IEnumerable GetPrimes(int maxPrime) + { + Array values = Array.CreateInstance(typeof(int), + [maxPrime - 1], [2]); + // Use Sieve of Erathsthenes to determine prime numbers. + for (int ctr = values.GetLowerBound(0); ctr <= (int)Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) + { + + if ((int)values.GetValue(ctr) == 1) continue; + + for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) + if (ctr * multiplier <= maxPrime) + values.SetValue(1, ctr * multiplier); + } + + List primes = new(); + for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) + if ((int)values.GetValue(ctr) == 0) + primes.Add($"{ctr} "); + return primes; + } } // The example displays the following output: // Primes less than 100: diff --git a/snippets/csharp/System/String/Concat/concat2.cs b/snippets/csharp/System/String/Concat/concat2.cs index 98be0070119..8cc4c92c82b 100644 --- a/snippets/csharp/System/String/Concat/concat2.cs +++ b/snippets/csharp/System/String/Concat/concat2.cs @@ -3,23 +3,23 @@ using System.Collections.Generic; using System.Linq; -public class Example +public class ConcatAlphabetExample { - public static void Main() - { - string output = String.Concat( GetAlphabet(true).Where( letter => - letter.CompareTo("M") >= 0)); - Console.WriteLine(output); - } + public static void Run() + { + string output = string.Concat(GetAlphabet(true).Where(letter => + letter.CompareTo("M") >= 0)); + Console.WriteLine(output); + } - private static List GetAlphabet(bool upper) - { - List alphabet = new List(); - int charValue = upper ? 65 : 97; - for (int ctr = 0; ctr <= 25; ctr++) - alphabet.Add(((char)(charValue + ctr)).ToString()); - return alphabet; - } + private static List GetAlphabet(bool upper) + { + List alphabet = new(); + int charValue = upper ? 65 : 97; + for (int ctr = 0; ctr <= 25; ctr++) + alphabet.Add(((char)(charValue + ctr)).ToString()); + return alphabet; + } } // The example displays the following output: // MNOPQRSTUVWXYZ diff --git a/snippets/csharp/System/String/Concat/concat3.cs b/snippets/csharp/System/String/Concat/concat3.cs index f190c57005c..f856ef97a5a 100644 --- a/snippets/csharp/System/String/Concat/concat3.cs +++ b/snippets/csharp/System/String/Concat/concat3.cs @@ -5,33 +5,32 @@ public class Animal { - public string Kind; - public string Order; - - public Animal(string kind, string order) - { - this.Kind = kind; - this.Order = order; - } - - public override string ToString() - { - return this.Kind; - } + public string Kind; + public string Order; + + public Animal(string kind, string order) + { + this.Kind = kind; + this.Order = order; + } + + public override string ToString() => this.Kind; } -public class Example +public class ConcatAnimalsExample { - public static void Main() - { - List animals = new List(); - animals.Add(new Animal("Squirrel", "Rodent")); - animals.Add(new Animal("Gray Wolf", "Carnivora")); - animals.Add(new Animal("Capybara", "Rodent")); - string output = String.Concat(animals.Where( animal => - (animal.Order == "Rodent"))); - Console.WriteLine(output); - } + public static void Run() + { + List animals = new() + { + new Animal("Squirrel", "Rodent"), + new Animal("Gray Wolf", "Carnivora"), + new Animal("Capybara", "Rodent") + }; + string output = string.Concat(animals.Where(animal => + (animal.Order == "Rodent"))); + Console.WriteLine(output); + } } // The example displays the following output: // SquirrelCapybara diff --git a/snippets/csharp/System/String/Concat/concat4.cs b/snippets/csharp/System/String/Concat/concat4.cs index c2ddee888f6..d5bdeca7159 100644 --- a/snippets/csharp/System/String/Concat/concat4.cs +++ b/snippets/csharp/System/String/Concat/concat4.cs @@ -2,42 +2,42 @@ using System; using System.Collections; -public class Example +public class ConcatScrambleExample { - public static void Main() - { - const int WORD_SIZE = 4; - - // Define some 4-letter words to be scrambled. - string[] words = { "home", "food", "game", "rest" }; - // Define two arrays equal to the number of letters in each word. - double[] keys = new double[WORD_SIZE]; - string[] letters = new string[WORD_SIZE]; - // Initialize the random number generator. - Random rnd = new Random(); - - // Scramble each word. - foreach (string word in words) - { - for (int ctr = 0; ctr < word.Length; ctr++) - { - // Populate the array of keys with random numbers. - keys[ctr] = rnd.NextDouble(); - // Assign a letter to the array of letters. - letters[ctr] = word[ctr].ToString(); - } - // Sort the array. - Array.Sort(keys, letters, 0, WORD_SIZE, Comparer.Default); - // Display the scrambled word. - string scrambledWord = String.Concat(letters[0], letters[1], - letters[2], letters[3]); - Console.WriteLine("{0} --> {1}", word, scrambledWord); - } - } + public static void Run() + { + const int WORD_SIZE = 4; + + // Define some 4-letter words to be scrambled. + string[] words = ["home", "food", "game", "rest"]; + // Define two arrays equal to the number of letters in each word. + double[] keys = new double[WORD_SIZE]; + string[] letters = new string[WORD_SIZE]; + // Initialize the random number generator. + Random rnd = new(); + + // Scramble each word. + foreach (string word in words) + { + for (int ctr = 0; ctr < word.Length; ctr++) + { + // Populate the array of keys with random numbers. + keys[ctr] = rnd.NextDouble(); + // Assign a letter to the array of letters. + letters[ctr] = word[ctr].ToString(); + } + // Sort the array. + Array.Sort(keys, letters, 0, WORD_SIZE, Comparer.Default); + // Display the scrambled word. + string scrambledWord = string.Concat(letters[0], letters[1], + letters[2], letters[3]); + Console.WriteLine($"{word} --> {scrambledWord}"); + } + } } // The example displays output like the following: // home --> mheo // food --> oodf // game --> aemg // rest --> trse -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Concat/string.concat5.cs b/snippets/csharp/System/String/Concat/string.concat5.cs index 7f2f7ac1123..ae056927f44 100644 --- a/snippets/csharp/System/String/Concat/string.concat5.cs +++ b/snippets/csharp/System/String/Concat/string.concat5.cs @@ -1,23 +1,25 @@ // using System; -class stringConcat5 { - public static void Main() { - int i = -123; - Object o = i; - Object[] objs = new Object[] {-123, -456, -789}; +class stringConcat5 +{ + public static void Run() + { + int i = -123; + object o = i; + object[] objs = [-123, -456, -789]; - Console.WriteLine("Concatenate 1, 2, and 3 objects:"); - Console.WriteLine("1) {0}", String.Concat(o)); - Console.WriteLine("2) {0}", String.Concat(o, o)); - Console.WriteLine("3) {0}", String.Concat(o, o, o)); + Console.WriteLine("Concatenate 1, 2, and 3 objects:"); + Console.WriteLine($"1) {string.Concat(o)}"); + Console.WriteLine($"2) {string.Concat(o, o)}"); + Console.WriteLine($"3) {string.Concat(o, o, o)}"); - Console.WriteLine("\nConcatenate 4 objects and a variable length parameter list:"); - Console.WriteLine("4) {0}", String.Concat(o, o, o, o)); - Console.WriteLine("5) {0}", String.Concat(o, o, o, o, o)); + Console.WriteLine("\nConcatenate 4 objects and a variable length parameter list:"); + Console.WriteLine($"4) {string.Concat(o, o, o, o)}"); + Console.WriteLine($"5) {string.Concat(o, o, o, o, o)}"); - Console.WriteLine("\nConcatenate a 3-element object array:"); - Console.WriteLine("6) {0}", String.Concat(objs)); + Console.WriteLine("\nConcatenate a 3-element object array:"); + Console.WriteLine($"6) {string.Concat(objs)}"); } } // The example displays the following output: @@ -32,4 +34,4 @@ public static void Main() { // // Concatenate a 3-element object array: // 6) -123-456-789 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Concat/stringconcat1.cs b/snippets/csharp/System/String/Concat/stringconcat1.cs index 3f9b60503d1..f7024531cc7 100644 --- a/snippets/csharp/System/String/Concat/stringconcat1.cs +++ b/snippets/csharp/System/String/Concat/stringconcat1.cs @@ -1,16 +1,18 @@ // using System; -public class ConcatTest { - public static void Main() { +public class ConcatTest +{ + public static void Run() + { // Create a group of objects. - Test1 t1 = new Test1(); - Test2 t2 = new Test2(); + Test1 t1 = new(); + Test2 t2 = new(); int i = 16; string s = "Demonstration"; // Place the objects in an array. - object [] o = { t1, i, t2, s }; + object[] o = [t1, i, t2, s]; // Concatenate the objects together as a string. To do this, // the ToString method of each of the objects is called. @@ -19,10 +21,12 @@ public static void Main() { } // Create two empty test classes. -class Test1 { +class Test1 +{ } -class Test2 { +class Test2 +{ } // The example displays the following output: // Test116Test2Demonstration diff --git a/snippets/csharp/System/String/Concat/stringconcat3.cs b/snippets/csharp/System/String/Concat/stringconcat3.cs index 1bde39eb10b..7ae186d130d 100644 --- a/snippets/csharp/System/String/Concat/stringconcat3.cs +++ b/snippets/csharp/System/String/Concat/stringconcat3.cs @@ -1,13 +1,13 @@ // using System; -public class Example +public class ConcatArrayExample { - public static void Main() + public static void Run() { // Make an array of strings. Note that we have included spaces. - string [] s = { "hello ", "and ", "welcome ", "to ", - "this ", "demo! " }; + string[] s = [ "hello ", "and ", "welcome ", "to ", + "this ", "demo! " ]; // Put all the strings together. Console.WriteLine(string.Concat(s)); diff --git a/snippets/csharp/System/String/Concat/stringconcat4.cs b/snippets/csharp/System/String/Concat/stringconcat4.cs index 3f740f83532..dc51856e25a 100644 --- a/snippets/csharp/System/String/Concat/stringconcat4.cs +++ b/snippets/csharp/System/String/Concat/stringconcat4.cs @@ -1,8 +1,10 @@ // using System; -public class ConcatTest { - public static void Main() { +public class ConcatNamesTest +{ + public static void Run() + { // we want to simply quickly add this person's name together string fName = "Simon"; @@ -16,9 +18,9 @@ public static void Main() { lName = " " + lName.Trim(); // this line simply concatenates the two strings - Console.WriteLine("Welcome to this page, '{0}'!", string.Concat( string.Concat(fName, mName), lName ) ); + Console.WriteLine($"Welcome to this page, '{string.Concat(string.Concat(fName, mName), lName)}'!"); } } // The example displays the following output: // Welcome to this page, 'Simon Jake Harrows'! -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Contains/ContainsExt1.cs b/snippets/csharp/System/String/Contains/ContainsExt1.cs index 7b68c95e12e..c9f4425d353 100644 --- a/snippets/csharp/System/String/Contains/ContainsExt1.cs +++ b/snippets/csharp/System/String/Contains/ContainsExt1.cs @@ -3,44 +3,44 @@ public static class StringExtensions { - public static bool Contains(this String str, String substring, - StringComparison comp) - { + public static bool Contains(this string str, string substring, + StringComparison comp) + { if (substring == null) - throw new ArgumentNullException("substring", + throw new ArgumentNullException("substring", "substring cannot be null."); else if (!Enum.IsDefined(typeof(StringComparison), comp)) throw new ArgumentException("comp is not a member of StringComparison", "comp"); - return str.IndexOf(substring, comp) >= 0; - } + return str.IndexOf(substring, comp) >= 0; + } } // namespace App { -using System; + using System; -public class Example -{ - public static void Main() + public class Example { - // - String s = "This is a string."; - String sub1 = "this"; - Console.WriteLine("Does '{0}' contain '{1}'?", s, sub1); - StringComparison comp = StringComparison.Ordinal; - Console.WriteLine(" {0:G}: {1}", comp, s.Contains(sub1, comp)); + public static void Main() + { + // + string s = "This is a string."; + string sub1 = "this"; + Console.WriteLine($"Does '{s}' contain '{sub1}'?"); + StringComparison comp = StringComparison.Ordinal; + Console.WriteLine($" {comp:G}: {s.Contains(sub1, comp)}"); - comp = StringComparison.OrdinalIgnoreCase; - Console.WriteLine(" {0:G}: {1}", comp, s.Contains(sub1, comp)); + comp = StringComparison.OrdinalIgnoreCase; + Console.WriteLine($" {comp:G}: {s.Contains(sub1, comp)}"); - // The example displays the following output: - // Does 'This is a string.' contain 'this'? - // Ordinal: False - // OrdinalIgnoreCase: True - // + // The example displays the following output: + // Does 'This is a string.' contain 'this'? + // Ordinal: False + // OrdinalIgnoreCase: True + // + } } } -} diff --git a/snippets/csharp/System/String/Contains/cont.cs b/snippets/csharp/System/String/Contains/cont.cs index fa2396b7b2e..3b6b5cace3f 100644 --- a/snippets/csharp/System/String/Contains/cont.cs +++ b/snippets/csharp/System/String/Contains/cont.cs @@ -8,13 +8,12 @@ public static void Main() string s1 = "The quick brown fox jumps over the lazy dog"; string s2 = "fox"; bool b = s1.Contains(s2); - Console.WriteLine("'{0}' is in the string '{1}': {2}", - s2, s1, b); - if (b) { + Console.WriteLine($"'{s2}' is in the string '{s1}': {b}"); + if (b) + { int index = s1.IndexOf(s2); if (index >= 0) - Console.WriteLine("'{0} begins at character position {1}", - s2, index + 1); + Console.WriteLine($"'{s2} begins at character position {index + 1}"); } // This example displays the following output: // 'fox' is in the string 'The quick brown fox jumps over the lazy dog': True diff --git a/snippets/csharp/System/String/CopyTo/stringcopyto.cs b/snippets/csharp/System/String/CopyTo/stringcopyto.cs index ed39c240864..37b57ea6415 100644 --- a/snippets/csharp/System/String/CopyTo/stringcopyto.cs +++ b/snippets/csharp/System/String/CopyTo/stringcopyto.cs @@ -1,30 +1,32 @@ // using System; -public class CopyToTest { - public static void Main() { +public class CopyToTest +{ + public static void Main() + { // Embed an array of characters in a string string strSource = "changed"; - char [] destination = { 'T', 'h', 'e', ' ', 'i', 'n', 'i', 't', 'i', 'a', 'l', ' ', - 'a', 'r', 'r', 'a', 'y' }; + char[] destination = [ 'T', 'h', 'e', ' ', 'i', 'n', 'i', 't', 'i', 'a', 'l', ' ', + 'a', 'r', 'r', 'a', 'y' ]; // Print the char array - Console.WriteLine( destination ); + Console.WriteLine(destination); // Embed the source string in the destination string - strSource.CopyTo ( 0, destination, 4, strSource.Length ); + strSource.CopyTo(0, destination, 4, strSource.Length); // Print the resulting array - Console.WriteLine( destination ); + Console.WriteLine(destination); strSource = "A different string"; // Embed only a section of the source string in the destination - strSource.CopyTo ( 2, destination, 3, 9 ); + strSource.CopyTo(2, destination, 3, 9); // Print the resulting array - Console.WriteLine( destination ); + Console.WriteLine(destination); } } // The example displays the following output: diff --git a/snippets/csharp/System/String/EndsWith/EndsWith1.cs b/snippets/csharp/System/String/EndsWith/EndsWith1.cs index 5b188cc45d9..ad3510bb02f 100644 --- a/snippets/csharp/System/String/EndsWith/EndsWith1.cs +++ b/snippets/csharp/System/String/EndsWith/EndsWith1.cs @@ -3,16 +3,16 @@ public class Example { - public static void Main() - { - String[] strings = { "This is a string.", "Hello!", "Nothing.", - "Yes.", "randomize" }; - foreach (var value in strings) { - bool endsInPeriod = value.EndsWith("."); - Console.WriteLine("'{0}' ends in a period: {1}", - value, endsInPeriod); - } - } + public static void Run() + { + string[] strings = [ "This is a string.", "Hello!", "Nothing.", + "Yes.", "randomize" ]; + foreach (string value in strings) + { + bool endsInPeriod = value.EndsWith("."); + Console.WriteLine($"'{value}' ends in a period: {endsInPeriod}"); + } + } } // The example displays the following output: // 'This is a string.' ends in a period: True diff --git a/snippets/csharp/System/String/EndsWith/Program.cs b/snippets/csharp/System/String/EndsWith/Program.cs new file mode 100644 index 00000000000..5a20e5f7321 --- /dev/null +++ b/snippets/csharp/System/String/EndsWith/Program.cs @@ -0,0 +1,4 @@ +Example.Run(); +EndsWithCultureSample.Run(); +EndsWithComparisonSample.Run(); +EndsWithTest.Run(); diff --git a/snippets/csharp/System/String/EndsWith/Project.csproj b/snippets/csharp/System/String/EndsWith/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/EndsWith/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/EndsWith/ewci.cs b/snippets/csharp/System/String/EndsWith/ewci.cs index d6b248fc191..c0e192e0dc0 100644 --- a/snippets/csharp/System/String/EndsWith/ewci.cs +++ b/snippets/csharp/System/String/EndsWith/ewci.cs @@ -1,14 +1,14 @@ // -// This code example demonstrates the +// This code example demonstrates the // System.String.EndsWith(String, ..., CultureInfo) method. using System; -using System.Threading; + using System.Globalization; -class Sample +class EndsWithCultureSample { - public static void Main() + public static void Run() { string msg1 = "Search for the target string \"{0}\" in the string \"{1}\".\n"; string msg2 = "Using the {0} - \"{1}\" culture:"; @@ -20,9 +20,9 @@ public static void Main() // U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE string capitalARing = "\u00c5"; - // Define a string to search. - // The result of combining the characters LATIN SMALL LETTER A and COMBINING - // RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character + // Define a string to search. + // The result of combining the characters LATIN SMALL LETTER A and COMBINING + // RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character // LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). string xyzARing = "xyz" + "\u0061\u030a"; @@ -30,7 +30,7 @@ public static void Main() Console.WriteLine(msg1, capitalARing, xyzARing); // Search using English-United States culture. - ci = new CultureInfo("en-US"); + ci = new("en-US"); Console.WriteLine(msg2, ci.DisplayName, ci.Name); Console.WriteLine("Case sensitive:"); @@ -43,7 +43,7 @@ public static void Main() Console.WriteLine(); // Search using Swedish-Sweden culture. - ci = new CultureInfo("sv-SE"); + ci = new("sv-SE"); Console.WriteLine(msg2, ci.DisplayName, ci.Name); Console.WriteLine("Case sensitive:"); diff --git a/snippets/csharp/System/String/EndsWith/ewcmp.cs b/snippets/csharp/System/String/EndsWith/ewcmp.cs index f3e592bcd1d..56a1945198c 100644 --- a/snippets/csharp/System/String/EndsWith/ewcmp.cs +++ b/snippets/csharp/System/String/EndsWith/ewcmp.cs @@ -1,36 +1,35 @@ // -// This example demonstrates the +// This example demonstrates the // System.String.EndsWith(String, StringComparison) method. using System; using System.Threading; -class Sample +class EndsWithComparisonSample { - public static void Main() + public static void Run() { string intro = "Determine whether a string ends with another string, " + "using\n different values of StringComparison."; - StringComparison[] scValues = { + StringComparison[] scValues = [ StringComparison.CurrentCulture, StringComparison.CurrentCultureIgnoreCase, StringComparison.InvariantCulture, StringComparison.InvariantCultureIgnoreCase, StringComparison.Ordinal, - StringComparison.OrdinalIgnoreCase }; + StringComparison.OrdinalIgnoreCase ]; Console.WriteLine(intro); // Display the current culture because the culture-specific comparisons // can produce different results with different cultures. - Console.WriteLine("The current culture is {0}.\n", - Thread.CurrentThread.CurrentCulture.Name); - - // Determine whether three versions of the letter I are equal to each other. + Console.WriteLine($"The current culture is {Thread.CurrentThread.CurrentCulture.Name}.\n"); + + // Determine whether three versions of the letter I are equal to each other. foreach (StringComparison sc in scValues) { - Console.WriteLine("StringComparison.{0}:", sc); + Console.WriteLine($"StringComparison.{sc}:"); Test("abcXYZ", "XYZ", sc); Test("abcXYZ", "xyz", sc); Console.WriteLine(); diff --git a/snippets/csharp/System/String/EndsWith/stringendswith.cs b/snippets/csharp/System/String/EndsWith/stringendswith.cs index 9fb10ebeefe..0649ce366c8 100644 --- a/snippets/csharp/System/String/EndsWith/stringendswith.cs +++ b/snippets/csharp/System/String/EndsWith/stringendswith.cs @@ -1,25 +1,27 @@ // using System; -public class EndsWithTest { - public static void Main() { +public class EndsWithTest +{ + public static void Run() + { // process an input file that contains html tags. // this sample checks for multiple tags at the end of the line, rather than simply // removing the last one. // note: HTML markup tags always end in a greater than symbol (>). - string [] strSource = { "This is bold text", "

This is large Text

", + string[] strSource = [ "This is bold text", "

This is large Text

", "This has multiple tags", "This has embedded tags.", - "This line simply ends with a greater than symbol, it should not be modified>" }; + "This line simply ends with a greater than symbol, it should not be modified>" ]; Console.WriteLine("The following lists the items before the ends have been stripped:"); Console.WriteLine("-----------------------------------------------------------------"); // print out the initial array of strings - foreach ( string s in strSource ) - Console.WriteLine( s ); + foreach (string s in strSource) + Console.WriteLine(s); Console.WriteLine(); @@ -27,29 +29,32 @@ public static void Main() { Console.WriteLine("----------------------------------------------------------------"); // print out the array of strings - foreach (var s in strSource) + foreach (string s in strSource) Console.WriteLine(StripEndTags(s)); } - private static string StripEndTags( string item ) { + private static string StripEndTags(string item) + { bool found = false; // try to find a tag at the end of the line using EndsWith - if (item.Trim().EndsWith(">")) { + if (item.Trim().EndsWith(">")) + { // now search for the opening tag... - int lastLocation = item.LastIndexOf( "= 0 ) { + if (lastLocation >= 0) + { found = true; - item = item.Substring( 0, lastLocation ); + item = item.Substring(0, lastLocation); } } if (found) - item = StripEndTags(item); + item = StripEndTags(item); return item; } @@ -70,4 +75,4 @@ private static string StripEndTags( string item ) { // This has multiple tags // This has embedded tags. // This line simply ends with a greater than symbol, it should not be modified> -//
\ No newline at end of file +//
diff --git a/snippets/csharp/System/String/Equals/eqcmp.cs b/snippets/csharp/System/String/Equals/eqcmp.cs index e17f0f0d072..c59ffb10497 100644 --- a/snippets/csharp/System/String/Equals/eqcmp.cs +++ b/snippets/csharp/System/String/Equals/eqcmp.cs @@ -1,79 +1,75 @@ // using System; -class Sample +class Sample { - public static void Main() - { - // Define a string array with the following three "I" characters: - // U+0069, U+0131, and U+0049. - string[] threeIs = { "i", "ı", "I" }; - // Define Type object representing StringComparison type. - Type scType = typeof(StringComparison); - - // Show the current culture (for culture-sensitive string comparisons). - Console.WriteLine("The current culture is {0}.\n", - System.Globalization.CultureInfo.CurrentCulture.Name); - - // Perform comparisons using each StringComparison member. - foreach (string scName in Enum.GetNames(scType)) - { - StringComparison sc = (StringComparison) Enum.Parse(scType, scName); - Console.WriteLine("Comparisons using {0}:", sc); - // Compare each character in character array. - for (int ctr = 0; ctr <= 1; ctr++) - { - string instanceChar = threeIs[ctr]; - for (int innerCtr = ctr + 1; innerCtr <= threeIs.GetUpperBound(0); innerCtr++) + public static void Main() + { + // Define a string array with the following three "I" characters: + // U+0069, U+0131, and U+0049. + string[] threeIs = ["i", "ı", "I"]; + // Define Type object representing StringComparison type. + Type scType = typeof(StringComparison); + + // Show the current culture (for culture-sensitive string comparisons). + Console.WriteLine($"The current culture is {System.Globalization.CultureInfo.CurrentCulture.Name}.\n"); + + // Perform comparisons using each StringComparison member. + foreach (string scName in Enum.GetNames(scType)) + { + StringComparison sc = (StringComparison)Enum.Parse(scType, scName); + Console.WriteLine($"Comparisons using {sc}:"); + // Compare each character in character array. + for (int ctr = 0; ctr <= 1; ctr++) { - string otherChar = threeIs[innerCtr]; - Console.WriteLine("{0} (U+{1}) = {2} (U+{3}): {4}", - instanceChar, Convert.ToInt16(Char.Parse(instanceChar)).ToString("X4"), - otherChar, Convert.ToInt16(Char.Parse(otherChar)).ToString("X4"), - instanceChar.Equals(otherChar, sc)); + string instanceChar = threeIs[ctr]; + for (int innerCtr = ctr + 1; innerCtr <= threeIs.GetUpperBound(0); innerCtr++) + { + string otherChar = threeIs[innerCtr]; + Console.WriteLine($"{instanceChar} (U+{Convert.ToInt16(char.Parse(instanceChar)):X4}) = {otherChar} (U+{Convert.ToInt16(char.Parse(otherChar)):X4}): {instanceChar.Equals(otherChar, sc)}"); + } + Console.WriteLine(); } - Console.WriteLine(); - } - } - } + } + } } // The example displays the following output: // The current culture is en-US. -// +// // Comparisons using CurrentCulture: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): False -// +// // ı (U+0131) = I (U+0049): False -// +// // Comparisons using CurrentCultureIgnoreCase: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): True -// +// // ı (U+0131) = I (U+0049): False -// +// // Comparisons using InvariantCulture: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): False -// +// // ı (U+0131) = I (U+0049): False -// +// // Comparisons using InvariantCultureIgnoreCase: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): True -// +// // ı (U+0131) = I (U+0049): False -// +// // Comparisons using Ordinal: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): False -// +// // ı (U+0131) = I (U+0049): False -// +// // Comparisons using OrdinalIgnoreCase: // i (U+0069) = ı (U+0131): False // i (U+0069) = I (U+0049): True -// +// // ı (U+0131) = I (U+0049): False // // 119 lines diff --git a/snippets/csharp/System/String/Equals/equals.cs b/snippets/csharp/System/String/Equals/equals.cs index b243c862fe2..bb63520f4ed 100644 --- a/snippets/csharp/System/String/Equals/equals.cs +++ b/snippets/csharp/System/String/Equals/equals.cs @@ -9,34 +9,34 @@ class Sample1 { public static void Main() { - StringBuilder sb = new StringBuilder("abcd"); - String str1 = "abcd"; - String str2 = null; - Object o2 = null; + StringBuilder sb = new("abcd"); + string str1 = "abcd"; + string str2 = null; + object o2 = null; Console.WriteLine(); - Console.WriteLine(" * The value of String str1 is '{0}'.", str1); - Console.WriteLine(" * The value of StringBuilder sb is '{0}'.", sb.ToString()); + Console.WriteLine($" * The value of String str1 is '{str1}'."); + Console.WriteLine($" * The value of StringBuilder sb is '{sb}'."); Console.WriteLine(); Console.WriteLine("1a) String.Equals(Object). Object is a StringBuilder, not a String."); - Console.WriteLine(" Is str1 equal to sb?: {0}", str1.Equals(sb)); + Console.WriteLine($" Is str1 equal to sb?: {str1.Equals(sb)}"); Console.WriteLine(); Console.WriteLine("1b) String.Equals(Object). Object is a String."); str2 = sb.ToString(); o2 = str2; - Console.WriteLine(" * The value of Object o2 is '{0}'.", o2); - Console.WriteLine(" Is str1 equal to o2?: {0}", str1.Equals(o2)); + Console.WriteLine($" * The value of Object o2 is '{o2}'."); + Console.WriteLine($" Is str1 equal to o2?: {str1.Equals(o2)}"); Console.WriteLine(); Console.WriteLine(" 2) String.Equals(String)"); - Console.WriteLine(" * The value of String str2 is '{0}'.", str2); - Console.WriteLine(" Is str1 equal to str2?: {0}", str1.Equals(str2)); + Console.WriteLine($" * The value of String str2 is '{str2}'."); + Console.WriteLine($" Is str1 equal to str2?: {str1.Equals(str2)}"); Console.WriteLine(); Console.WriteLine(" 3) String.Equals(String, String)"); - Console.WriteLine(" Is str1 equal to str2?: {0}", String.Equals(str1, str2)); + Console.WriteLine($" Is str1 equal to str2?: {string.Equals(str1, str2)}"); } } /* diff --git a/snippets/csharp/System/String/Equals/equals_ex3.cs b/snippets/csharp/System/String/Equals/equals_ex3.cs index a9ddb4936fa..8bbacdd1ad4 100644 --- a/snippets/csharp/System/String/Equals/equals_ex3.cs +++ b/snippets/csharp/System/String/Equals/equals_ex3.cs @@ -7,21 +7,19 @@ public class Example3 { public static void Main() { - String[] cultureNames = { "en-US", "th-TH", "tr-TR" }; - String[] strings1 = { "a", "i", "case", }; - String[] strings2 = { "a-", "\u0130", "Case" }; + string[] cultureNames = ["en-US", "th-TH", "tr-TR"]; + string[] strings1 = ["a", "i", "case",]; + string[] strings2 = ["a-", "\u0130", "Case"]; StringComparison[] comparisons = (StringComparison[])Enum.GetValues(typeof(StringComparison)); - foreach (var cultureName in cultureNames) + foreach (string cultureName in cultureNames) { Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(cultureName); - Console.WriteLine("Current Culture: {0}", CultureInfo.CurrentCulture.Name); + Console.WriteLine($"Current Culture: {CultureInfo.CurrentCulture.Name}"); for (int ctr = 0; ctr <= strings1.GetUpperBound(0); ctr++) { foreach (var comparison in comparisons) - Console.WriteLine(" {0} = {1} ({2}): {3}", strings1[ctr], - strings2[ctr], comparison, - String.Equals(strings1[ctr], strings2[ctr], comparison)); + Console.WriteLine($" {strings1[ctr]} = {strings2[ctr]} ({comparison}): {string.Equals(strings1[ctr], strings2[ctr], comparison)}"); Console.WriteLine(); } diff --git a/snippets/csharp/System/String/Equals/equalsex1.cs b/snippets/csharp/System/String/Equals/equalsex1.cs index 32d31457361..4aa4470fa6d 100644 --- a/snippets/csharp/System/String/Equals/equalsex1.cs +++ b/snippets/csharp/System/String/Equals/equalsex1.cs @@ -7,13 +7,13 @@ public static void Main() { Console.OutputEncoding = System.Text.Encoding.UTF8; string word = "File"; - string[] others = { word.ToLower(), word, word.ToUpper(), "Fıle" }; + string[] others = [word.ToLower(), word, word.ToUpper(), "Fıle"]; foreach (string other in others) { if (word.Equals(other)) - Console.WriteLine("{0} = {1}", word, other); + Console.WriteLine($"{word} = {other}"); else - Console.WriteLine("{0} {1} {2}", word, '\u2260', other); + Console.WriteLine($"{word} {'\u2260'} {other}"); } } } diff --git a/snippets/csharp/System/String/Format/Example1.cs b/snippets/csharp/System/String/Format/Example1.cs index 1040735cbf8..3bc3b2a042f 100644 --- a/snippets/csharp/System/String/Format/Example1.cs +++ b/snippets/csharp/System/String/Format/Example1.cs @@ -2,24 +2,24 @@ public class Example1 { - public static void Main() - { - // - short[] values= { Int16.MinValue, -27, 0, 1042, Int16.MaxValue }; - Console.WriteLine("{0,10} {1,10}\n", "Decimal", "Hex"); - foreach (short value in values) - { - string formatString = String.Format("{0,10:G}: {0,10:X}", value); - Console.WriteLine(formatString); - } - // The example displays the following output: - // Decimal Hex - // - // -32768: 8000 - // -27: FFE5 - // 0: 0 - // 1042: 412 - // 32767: 7FFF - // - } + public static void Main() + { + // + short[] values = [short.MinValue, -27, 0, 1042, short.MaxValue]; + Console.WriteLine($"{"Decimal",10} {"Hex",10}\n"); + foreach (short value in values) + { + string formatString = string.Format("{0,10:G}: {0,10:X}", value); + Console.WriteLine(formatString); + } + // The example displays the following output: + // Decimal Hex + // + // -32768: 8000 + // -27: FFE5 + // 0: 0 + // 1042: 412 + // 32767: 7FFF + // + } } diff --git a/snippets/csharp/System/String/Format/Example2.cs b/snippets/csharp/System/String/Format/Example2.cs index b33a5f30d9e..1f6eccf8ff3 100644 --- a/snippets/csharp/System/String/Format/Example2.cs +++ b/snippets/csharp/System/String/Format/Example2.cs @@ -1,31 +1,31 @@ using System; -using System.Globalization; + public class Example2 { - public static void Main() - { - // - string[] cultureNames = { "en-US", "fr-FR", "de-DE", "es-ES" }; + public static void Main() + { + // + string[] cultureNames = ["en-US", "fr-FR", "de-DE", "es-ES"]; - DateTime dateToDisplay = new DateTime(2009, 9, 1, 18, 32, 0); - double value = 9164.32; + DateTime dateToDisplay = new(2009, 9, 1, 18, 32, 0); + double value = 9164.32; - Console.WriteLine("Culture Date Value\n"); - foreach (string cultureName in cultureNames) - { - System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo(cultureName); - string output = String.Format(culture, "{0,-11} {1,-35:D} {2:N}", - culture.Name, dateToDisplay, value); - Console.WriteLine(output); - } - // The example displays the following output: - // Culture Date Value - // - // en-US Tuesday, September 01, 2009 9,164.32 - // fr-FR mardi 1 septembre 2009 9 164,32 - // de-DE Dienstag, 1. September 2009 9.164,32 - // es-ES martes, 01 de septiembre de 2009 9.164,32 - // - } + Console.WriteLine("Culture Date Value\n"); + foreach (string cultureName in cultureNames) + { + System.Globalization.CultureInfo culture = new(cultureName); + string output = string.Format(culture, "{0,-11} {1,-35:D} {2:N}", + culture.Name, dateToDisplay, value); + Console.WriteLine(output); + } + // The example displays the following output: + // Culture Date Value + // + // en-US Tuesday, September 01, 2009 9,164.32 + // fr-FR mardi 1 septembre 2009 9 164,32 + // de-DE Dienstag, 1. September 2009 9.164,32 + // es-ES martes, 01 de septiembre de 2009 9.164,32 + // + } } diff --git a/snippets/csharp/System/String/GetEnumerator/getenumerator.cs b/snippets/csharp/System/String/GetEnumerator/getenumerator.cs index 8c75ca9dd1b..384fdeee234 100644 --- a/snippets/csharp/System/String/GetEnumerator/getenumerator.cs +++ b/snippets/csharp/System/String/GetEnumerator/getenumerator.cs @@ -3,41 +3,41 @@ class Example { - public static void Main() - { - EnumerateAndDisplay("Test Case"); - EnumerateAndDisplay("This is a sentence."); - EnumerateAndDisplay("Has\ttwo\ttabs" ); - EnumerateAndDisplay("Two\nnew\nlines"); - } + public static void Main() + { + EnumerateAndDisplay("Test Case"); + EnumerateAndDisplay("This is a sentence."); + EnumerateAndDisplay("Has\ttwo\ttabs"); + EnumerateAndDisplay("Two\nnew\nlines"); + } - static void EnumerateAndDisplay(String phrase) - { - Console.WriteLine("The characters in the string \"{0}\" are:", - phrase); + static void EnumerateAndDisplay(string phrase) + { + Console.WriteLine($"The characters in the string \"{phrase}\" are:"); - int CharCount = 0; - int controlChars = 0; - int alphanumeric = 0; - int punctuation = 0; + int CharCount = 0; + int controlChars = 0; + int alphanumeric = 0; + int punctuation = 0; - foreach (var ch in phrase) { - Console.Write(Char.IsControl(ch) ? $"{ch}" : $"0x{(ushort)ch:X4}"); + foreach (char ch in phrase) + { + Console.Write(char.IsControl(ch) ? $"{ch}" : $"0x{(ushort)ch:X4}"); - if (Char.IsLetterOrDigit(ch)) - alphanumeric++; - else if (Char.IsControl(ch)) - controlChars++; - else if (Char.IsPunctuation(ch)) - punctuation++; - CharCount++; - } + if (char.IsLetterOrDigit(ch)) + alphanumeric++; + else if (char.IsControl(ch)) + controlChars++; + else if (char.IsPunctuation(ch)) + punctuation++; + CharCount++; + } - Console.WriteLine("\n Total characters: {0,3}", CharCount); - Console.WriteLine(" Alphanumeric characters: {0,3}", alphanumeric); - Console.WriteLine(" Punctuation characters: {0,3}", punctuation); - Console.WriteLine(" Control Characters: {0,3}\n", controlChars); - } + Console.WriteLine($"\n Total characters: {CharCount,3}"); + Console.WriteLine($" Alphanumeric characters: {alphanumeric,3}"); + Console.WriteLine($" Punctuation characters: {punctuation,3}"); + Console.WriteLine($" Control Characters: {controlChars,3}\n"); + } } // The example displays the following output: // The characters in the string "Test Case" are: @@ -46,21 +46,21 @@ static void EnumerateAndDisplay(String phrase) // Alphanumeric characters: 8 // Punctuation characters: 0 // Control Characters: 0 -// +// // The characters in the string "This is a sentence." are: // 'T' 'h' 'i' 's' ' ' 'i' 's' ' ' 'a' ' ' 's' 'e' 'n' 't' 'e' 'n' 'c' 'e' '.' // Total characters: 19 // Alphanumeric characters: 15 // Punctuation characters: 1 // Control Characters: 0 -// +// // The characters in the string "Has two tabs" are: // 'H' 'a' 's' '0x0009' 't' 'w' 'o' '0x0009' 't' 'a' 'b' 's' // Total characters: 12 // Alphanumeric characters: 10 // Punctuation characters: 0 // Control Characters: 2 -// +// // The characters in the string "Two // new // lines" are: diff --git a/snippets/csharp/System/String/GetHashCode/gethashcode.cs b/snippets/csharp/System/String/GetHashCode/gethashcode.cs index be0146f6d53..d63cdb3fe0b 100644 --- a/snippets/csharp/System/String/GetHashCode/gethashcode.cs +++ b/snippets/csharp/System/String/GetHashCode/gethashcode.cs @@ -1,30 +1,30 @@ // using System; -class GetHashCode +class GetHashCode { - public static void Main() + public static void Main() { - DisplayHashCode( "" ); - DisplayHashCode( "a" ); - DisplayHashCode( "ab" ); - DisplayHashCode( "abc" ); - DisplayHashCode( "abd" ); - DisplayHashCode( "abe" ); - DisplayHashCode( "abcdef" ); - DisplayHashCode( "abcdeg" ); - DisplayHashCode( "abcdeh" ); - DisplayHashCode( "abcdei" ); - DisplayHashCode( "Abcdeg" ); - DisplayHashCode( "Abcdeh" ); - DisplayHashCode( "Abcdei" ); + DisplayHashCode(""); + DisplayHashCode("a"); + DisplayHashCode("ab"); + DisplayHashCode("abc"); + DisplayHashCode("abd"); + DisplayHashCode("abe"); + DisplayHashCode("abcdef"); + DisplayHashCode("abcdeg"); + DisplayHashCode("abcdeh"); + DisplayHashCode("abcdei"); + DisplayHashCode("Abcdeg"); + DisplayHashCode("Abcdeh"); + DisplayHashCode("Abcdei"); } - static void DisplayHashCode( String Operand ) + static void DisplayHashCode(string Operand) { - int HashCode = Operand.GetHashCode( ); + int HashCode = Operand.GetHashCode(); Console.WriteLine("The hash code for \"{0}\" is: 0x{1:X8}, {1}", - Operand, HashCode ); + Operand, HashCode); } } /* diff --git a/snippets/csharp/System/String/GetHashCode/perdomain.cs b/snippets/csharp/System/String/GetHashCode/perdomain.cs index ab65986cc17..cdf6cd6fef7 100644 --- a/snippets/csharp/System/String/GetHashCode/perdomain.cs +++ b/snippets/csharp/System/String/GetHashCode/perdomain.cs @@ -3,53 +3,39 @@ public class Example { - public static void Main() - { - // Show hash code in current domain. - DisplayString display = new DisplayString(); - display.ShowStringHashCode(); - - // Create a new app domain and show string hash code. - AppDomain domain = AppDomain.CreateDomain("NewDomain"); - var display2 = (DisplayString) domain.CreateInstanceAndUnwrap(typeof(Example).Assembly.FullName, - "DisplayString"); - display2.ShowStringHashCode(); - } + public static void Main() + { + // Show hash code in current domain. + DisplayString display = new(); + display.ShowStringHashCode(); + + // Create a new app domain and show string hash code. + AppDomain domain = AppDomain.CreateDomain("NewDomain"); + var display2 = (DisplayString)domain.CreateInstanceAndUnwrap(typeof(Example).Assembly.FullName, + "DisplayString"); + display2.ShowStringHashCode(); + } } public class DisplayString : MarshalByRefObject { - private String s = "This is a string."; - - public override bool Equals(Object obj) - { - String s2 = obj as String; - if (s2 == null) - return false; - else - return s == s2; - } - - public bool Equals(String str) - { - return s == str; - } - - public override int GetHashCode() - { - return s.GetHashCode(); - } - - public override String ToString() - { - return s; - } - - public void ShowStringHashCode() - { - Console.WriteLine("String '{0}' in domain '{1}': {2:X8}", - s, AppDomain.CurrentDomain.FriendlyName, - s.GetHashCode()); - } + private string s = "This is a string."; + + public override bool Equals(object obj) + { + string s2 = obj as string; + if (s2 == null) + return false; + else + return s == s2; + } + + public bool Equals(string str) => s == str; + + public override int GetHashCode() => s.GetHashCode(); + + public override string ToString() => s; + + public void ShowStringHashCode() => Console.WriteLine($"String '{s}' in domain '{AppDomain.CurrentDomain.FriendlyName}': {s.GetHashCode():X8}"); } //
diff --git a/snippets/csharp/System/String/GetTypeCode/gtc.cs b/snippets/csharp/System/String/GetTypeCode/gtc.cs index c5356ddf9a5..2d70716b99e 100644 --- a/snippets/csharp/System/String/GetTypeCode/gtc.cs +++ b/snippets/csharp/System/String/GetTypeCode/gtc.cs @@ -6,14 +6,13 @@ class Sample { public static void Main() { - String str = "abc"; - TypeCode tc = str.GetTypeCode(); - Console.WriteLine("The type code for '{0}' is {1}, which represents {2}.", - str, tc.ToString("D"), tc.ToString("F")); + string str = "abc"; + TypeCode tc = str.GetTypeCode(); + Console.WriteLine($"The type code for '{str}' is {tc:D}, which represents {tc:F}."); } } /* This example produces the following results: The type code for 'abc' is 18, which represents String. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/IndexOf/Program.cs b/snippets/csharp/System/String/IndexOf/Program.cs new file mode 100644 index 00000000000..b505b064718 --- /dev/null +++ b/snippets/csharp/System/String/IndexOf/Program.cs @@ -0,0 +1,14 @@ +IndexOfIgnorable21Example.Run(); +IndexOfIgnorable22Example.Run(); +IndexOfIgnorable23Example.Run(); +IndexOfIgnorable24Example.Run(); +IndexOfIgnorable25Example.Run(); +IndexOfIgnorable26Example.Run(); +IndexOfCharExample.Run(); +IndexOfCII.Run(); +IndexOfComparisonSample.Run(); +IndexOfCharStartSample.Run(); +IndexOfStringRangeSample.Run(); +IndexOfSimpleExample.Run(); +IndexOfTest.Run(); +IndexOfInsertExample.Run(); diff --git a/snippets/csharp/System/String/IndexOf/Project.csproj b/snippets/csharp/System/String/IndexOf/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/IndexOf/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/IndexOf/ignorable21.cs b/snippets/csharp/System/String/IndexOf/ignorable21.cs index 29b182f331b..b0d6f02fb2d 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable21.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable21.cs @@ -1,9 +1,9 @@ // using System; -public class Example +public class IndexOfIgnorable21Example { - public static void Main() + public static void Run() { string s1 = "ani\u00ADmal"; string s2 = "animal"; diff --git a/snippets/csharp/System/String/IndexOf/ignorable22.cs b/snippets/csharp/System/String/IndexOf/ignorable22.cs index e1180339da9..309de8e989d 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable22.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable22.cs @@ -1,12 +1,12 @@ // using System; -public class Example +public class IndexOfIgnorable22Example { - public static void Main() + public static void Run() { string searchString = "\u00ADm"; - string s1 = "ani\u00ADmal" ; + string s1 = "ani\u00ADmal"; string s2 = "animal"; Console.WriteLine(s1.IndexOf(searchString, 2)); diff --git a/snippets/csharp/System/String/IndexOf/ignorable23.cs b/snippets/csharp/System/String/IndexOf/ignorable23.cs index be4b57bf6f2..ab2ad572ff7 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable23.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable23.cs @@ -1,12 +1,12 @@ // using System; -public class Example +public class IndexOfIgnorable23Example { - public static void Main() + public static void Run() { string searchString = "\u00ADm"; - string s1 = "ani\u00ADmal" ; + string s1 = "ani\u00ADmal"; string s2 = "animal"; Console.WriteLine(s1.IndexOf(searchString, 2, 4)); diff --git a/snippets/csharp/System/String/IndexOf/ignorable24.cs b/snippets/csharp/System/String/IndexOf/ignorable24.cs index c63cb7df854..b3ccc5efb99 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable24.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable24.cs @@ -1,13 +1,13 @@ // using System; -public class Example +public class IndexOfIgnorable24Example { - public static void Main() + public static void Run() { string searchString = "\u00ADm"; - string s1 = "ani\u00ADmal" ; + string s1 = "ani\u00ADmal"; string s2 = "animal"; Console.WriteLine(s1.IndexOf(searchString, 2, 4, StringComparison.CurrentCulture)); diff --git a/snippets/csharp/System/String/IndexOf/ignorable25.cs b/snippets/csharp/System/String/IndexOf/ignorable25.cs index b5d9fafe11a..4113d5dec59 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable25.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable25.cs @@ -1,13 +1,13 @@ // using System; -public class Example +public class IndexOfIgnorable25Example { - public static void Main() + public static void Run() { - + string searchString = "\u00ADm"; - string s1 = "ani\u00ADmal" ; + string s1 = "ani\u00ADmal"; string s2 = "animal"; Console.WriteLine(s1.IndexOf(searchString, 2, StringComparison.CurrentCulture)); diff --git a/snippets/csharp/System/String/IndexOf/ignorable26.cs b/snippets/csharp/System/String/IndexOf/ignorable26.cs index 61944637145..5c39f7f5943 100644 --- a/snippets/csharp/System/String/IndexOf/ignorable26.cs +++ b/snippets/csharp/System/String/IndexOf/ignorable26.cs @@ -1,35 +1,35 @@ // using System; -public class Example +public class IndexOfIgnorable26Example { - public static void Main() + public static void Run() { string s1 = "ani\u00ADmal"; string s2 = "animal"; - + Console.WriteLine("Culture-sensitive comparison:"); // Use culture-sensitive comparison to find the soft hyphen. Console.WriteLine(s1.IndexOf("\u00AD", StringComparison.CurrentCulture)); Console.WriteLine(s2.IndexOf("\u00AD", StringComparison.CurrentCulture)); - + // Use culture-sensitive comparison to find the soft hyphen followed by "n". Console.WriteLine(s1.IndexOf("\u00ADn", StringComparison.CurrentCulture)); Console.WriteLine(s2.IndexOf("\u00ADn", StringComparison.CurrentCulture)); - + // Use culture-sensitive comparison to find the soft hyphen followed by "m". Console.WriteLine(s1.IndexOf("\u00ADm", StringComparison.CurrentCulture)); Console.WriteLine(s2.IndexOf("\u00ADm", StringComparison.CurrentCulture)); - + Console.WriteLine("Ordinal comparison:"); // Use ordinal comparison to find the soft hyphen. Console.WriteLine(s1.IndexOf("\u00AD", StringComparison.Ordinal)); Console.WriteLine(s2.IndexOf("\u00AD", StringComparison.Ordinal)); - + // Use ordinal comparison to find the soft hyphen followed by "n". Console.WriteLine(s1.IndexOf("\u00ADn", StringComparison.Ordinal)); Console.WriteLine(s2.IndexOf("\u00ADn", StringComparison.Ordinal)); - + // Use ordinal comparison to find the soft hyphen followed by "m". Console.WriteLine(s1.IndexOf("\u00ADm", StringComparison.Ordinal)); Console.WriteLine(s2.IndexOf("\u00ADm", StringComparison.Ordinal)); diff --git a/snippets/csharp/System/String/IndexOf/indexof_c.cs b/snippets/csharp/System/String/IndexOf/indexof_c.cs index 2b7c273d005..9151244d7a7 100644 --- a/snippets/csharp/System/String/IndexOf/indexof_c.cs +++ b/snippets/csharp/System/String/IndexOf/indexof_c.cs @@ -1,31 +1,29 @@ using System; -class Example +class IndexOfCharExample { - static void Main() + public static void Run() { // // Create a Unicode string with 5 Greek Alpha characters. - String szGreekAlpha = new String('\u0391',5); + string szGreekAlpha = new('\u0391', 5); // Create a Unicode string with 3 Greek Omega characters. - String szGreekOmega = "\u03A9\u03A9\u03A9"; + string szGreekOmega = "\u03A9\u03A9\u03A9"; - String szGreekLetters = String.Concat(szGreekOmega, szGreekAlpha, + string szGreekLetters = string.Concat(szGreekOmega, szGreekAlpha, szGreekOmega.Clone()); // Display the entire string. - Console.WriteLine("The string: {0}", szGreekLetters); + Console.WriteLine($"The string: {szGreekLetters}"); // The first index of Alpha. int ialpha = szGreekLetters.IndexOf('\u0391'); // The first index of Omega. int iomega = szGreekLetters.IndexOf('\u03A9'); - Console.WriteLine("First occurrence of the Greek letter Alpha: Index {0}", - ialpha); - Console.WriteLine("First occurrence of the Greek letter Omega: Index {0}", - iomega); + Console.WriteLine($"First occurrence of the Greek letter Alpha: Index {ialpha}"); + Console.WriteLine($"First occurrence of the Greek letter Omega: Index {iomega}"); // The example displays the following output: // The string: ΩΩΩΑΑΑΑΑΩΩΩ diff --git a/snippets/csharp/System/String/IndexOf/indexofcii.cs b/snippets/csharp/System/String/IndexOf/indexofcii.cs index ae361791095..3d254bb5853 100644 --- a/snippets/csharp/System/String/IndexOf/indexofcii.cs +++ b/snippets/csharp/System/String/IndexOf/indexofcii.cs @@ -2,60 +2,58 @@ // Example for the String.IndexOf( char, int, int ) method. using System; -class IndexOfCII +class IndexOfCII { - public static void Main() + public static void Run() { - string br1 = + string br1 = "0----+----1----+----2----+----3----+----" + "4----+----5----+----6----+----7"; - string br2 = + string br2 = "0123456789012345678901234567890123456789" + "0123456789012345678901234567890"; - string str = + string str = "ABCDEFGHI abcdefghi ABCDEFGHI abcdefghi " + "ABCDEFGHI abcdefghi ABCDEFGHI"; - Console.WriteLine( + Console.WriteLine( "This example of String.IndexOf( char, int, int )\n" + - "generates the following output." ); - Console.WriteLine( - "{0}{1}{0}{2}{0}{3}{0}", - Environment.NewLine, br1, br2, str ); + "generates the following output."); + Console.WriteLine( + "{0}{1}{0}{2}{0}{3}{0}", + Environment.NewLine, br1, br2, str); - FindAllChar( 'A', str ); - FindAllChar( 'a', str ); - FindAllChar( 'I', str ); - FindAllChar( 'i', str ); - FindAllChar( '@', str ); - FindAllChar( ' ', str ); + FindAllChar('A', str); + FindAllChar('a', str); + FindAllChar('I', str); + FindAllChar('i', str); + FindAllChar('@', str); + FindAllChar(' ', str); } - static void FindAllChar( Char target, String searched ) + static void FindAllChar(char target, string searched) { - Console.Write( - "The character '{0}' occurs at position(s): ", - target ); + Console.Write($"The character '{target}' occurs at position(s): "); - int startIndex = -1; - int hitCount = 0; + int startIndex = -1; + int hitCount = 0; // Search for all occurrences of the target. - while( true ) + while (true) { - startIndex = searched.IndexOf( - target, startIndex + 1, - searched.Length - startIndex - 1 ); + startIndex = searched.IndexOf( + target, startIndex + 1, + searched.Length - startIndex - 1); // Exit the loop if the target is not found. - if( startIndex < 0 ) + if (startIndex < 0) break; - Console.Write( "{0}, ", startIndex ); + Console.Write($"{startIndex}, "); hitCount++; } - Console.WriteLine( "occurrences: {0}", hitCount ); + Console.WriteLine($"occurrences: {hitCount}"); } } diff --git a/snippets/csharp/System/String/IndexOf/iocmp.cs b/snippets/csharp/System/String/IndexOf/iocmp.cs index 27b599505ff..cd332b3dcb0 100644 --- a/snippets/csharp/System/String/IndexOf/iocmp.cs +++ b/snippets/csharp/System/String/IndexOf/iocmp.cs @@ -1,90 +1,87 @@ // -// This code example demonstrates the +// This code example demonstrates the // System.String.IndexOf(String, ..., StringComparison) methods. using System; using System.Threading; -using System.Globalization; -class Sample + +class IndexOfComparisonSample { - public static void Main() + public static void Run() { - string intro = "Find the first occurrence of a character using different " + - "values of StringComparison."; - string resultFmt = "Comparison: {0,-28} Location: {1,3}"; - -// Define a string to search for. -// U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE - string CapitalAWithRing = "\u00c5"; - -// Define a string to search. -// The result of combining the characters LATIN SMALL LETTER A and COMBINING -// RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character -// LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). - string cat = "A Cheshire c" + "\u0061\u030a" + "t"; - - int loc = 0; - StringComparison[] scValues = { + string intro = "Find the first occurrence of a character using different " + + "values of StringComparison."; + string resultFmt = "Comparison: {0,-28} Location: {1,3}"; + + // Define a string to search for. + // U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE + string CapitalAWithRing = "\u00c5"; + + // Define a string to search. + // The result of combining the characters LATIN SMALL LETTER A and COMBINING + // RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character + // LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). + string cat = "A Cheshire c" + "\u0061\u030a" + "t"; + + int loc = 0; + StringComparison[] scValues = [ StringComparison.CurrentCulture, StringComparison.CurrentCultureIgnoreCase, StringComparison.InvariantCulture, StringComparison.InvariantCultureIgnoreCase, StringComparison.Ordinal, - StringComparison.OrdinalIgnoreCase }; - -// Clear the screen and display an introduction. - Console.Clear(); - Console.WriteLine(intro); - -// Display the current culture because culture affects the result. For example, -// try this code example with the "sv-SE" (Swedish-Sweden) culture. - - Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); - Console.WriteLine("The current culture is \"{0}\" - {1}.", - Thread.CurrentThread.CurrentCulture.Name, - Thread.CurrentThread.CurrentCulture.DisplayName); - -// Display the string to search for and the string to search. - Console.WriteLine("Search for the string \"{0}\" in the string \"{1}\"", - CapitalAWithRing, cat); - Console.WriteLine(); - -// Note that in each of the following searches, we look for -// LATIN CAPITAL LETTER A WITH RING ABOVE in a string that contains -// LATIN SMALL LETTER A WITH RING ABOVE. A result value of -1 indicates -// the string was not found. -// Search using different values of StringComparison. Specify the start -// index and count. - - Console.WriteLine("Part 1: Start index and count are specified."); - foreach (StringComparison sc in scValues) + StringComparison.OrdinalIgnoreCase ]; + + // Clear the screen and display an introduction. + Console.Clear(); + Console.WriteLine(intro); + + // Display the current culture because culture affects the result. For example, + // try this code example with the "sv-SE" (Swedish-Sweden) culture. + + Thread.CurrentThread.CurrentCulture = new("en-US"); + Console.WriteLine($"The current culture is \"{Thread.CurrentThread.CurrentCulture.Name}\" - {Thread.CurrentThread.CurrentCulture.DisplayName}."); + + // Display the string to search for and the string to search. + Console.WriteLine($"Search for the string \"{CapitalAWithRing}\" in the string \"{cat}\""); + Console.WriteLine(); + + // Note that in each of the following searches, we look for + // LATIN CAPITAL LETTER A WITH RING ABOVE in a string that contains + // LATIN SMALL LETTER A WITH RING ABOVE. A result value of -1 indicates + // the string was not found. + // Search using different values of StringComparison. Specify the start + // index and count. + + Console.WriteLine("Part 1: Start index and count are specified."); + foreach (StringComparison sc in scValues) { - loc = cat.IndexOf(CapitalAWithRing, 0, cat.Length, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.IndexOf(CapitalAWithRing, 0, cat.Length, sc); + Console.WriteLine(resultFmt, sc, loc); } -// Search using different values of StringComparison. Specify the -// start index. - Console.WriteLine("\nPart 2: Start index is specified."); - foreach (StringComparison sc in scValues) + // Search using different values of StringComparison. Specify the + // start index. + Console.WriteLine("\nPart 2: Start index is specified."); + foreach (StringComparison sc in scValues) { - loc = cat.IndexOf(CapitalAWithRing, 0, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.IndexOf(CapitalAWithRing, 0, sc); + Console.WriteLine(resultFmt, sc, loc); } -// Search using different values of StringComparison. - Console.WriteLine("\nPart 3: Neither start index nor count is specified."); - foreach (StringComparison sc in scValues) + // Search using different values of StringComparison. + Console.WriteLine("\nPart 3: Neither start index nor count is specified."); + foreach (StringComparison sc in scValues) { - loc = cat.IndexOf(CapitalAWithRing, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.IndexOf(CapitalAWithRing, sc); + Console.WriteLine(resultFmt, sc, loc); } } } /* -Note: This code example was executed on a console whose user interface +Note: This code example was executed on a console whose user interface culture is "en-US" (English-United States). This code example produces the following results: @@ -118,4 +115,4 @@ public static void Main() Comparison: OrdinalIgnoreCase Location: -1 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/IndexOf/ixof1.cs b/snippets/csharp/System/String/IndexOf/ixof1.cs index 9433fe653c9..5a2a7decd3e 100644 --- a/snippets/csharp/System/String/IndexOf/ixof1.cs +++ b/snippets/csharp/System/String/IndexOf/ixof1.cs @@ -1,9 +1,9 @@ -// Sample for String.IndexOf(Char, Int32) +// Sample for String.IndexOf(Char, Int32) using System; -class Sample +class IndexOfCharStartSample { - public static void Main() + public static void Run() { // string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+---"; @@ -13,18 +13,18 @@ public static void Main() int at; Console.WriteLine(); - Console.WriteLine("All occurrences of 't' from position 0 to {0}.", str.Length-1); + Console.WriteLine($"All occurrences of 't' from position 0 to {str.Length - 1}."); Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); Console.Write("The letter 't' occurs at position(s): "); at = 0; start = 0; - while((start < str.Length) && (at > -1)) + while ((start < str.Length) && (at > -1)) { at = str.IndexOf('t', start); if (at == -1) break; - Console.Write("{0} ", at); - start = at+1; + Console.Write($"{at} "); + start = at + 1; } Console.WriteLine(); diff --git a/snippets/csharp/System/String/IndexOf/ixof8.cs b/snippets/csharp/System/String/IndexOf/ixof8.cs index cbc10380838..b8ac12b99b8 100644 --- a/snippets/csharp/System/String/IndexOf/ixof8.cs +++ b/snippets/csharp/System/String/IndexOf/ixof8.cs @@ -1,9 +1,9 @@ -// Sample for String.IndexOf(String, Int32, Int32) +// Sample for String.IndexOf(String, Int32, Int32) using System; -class Sample +class IndexOfStringRangeSample { - public static void Main() + public static void Run() { // string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+---"; @@ -15,22 +15,22 @@ public static void Main() int count; end = str.Length; - start = end/2; + start = end / 2; Console.WriteLine(); - Console.WriteLine("All occurrences of 'he' from position {0} to {1}.", start, end-1); + Console.WriteLine($"All occurrences of 'he' from position {start} to {end - 1}."); Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); Console.Write("The string 'he' occurs at position(s): "); count = 0; at = 0; - while((start <= end) && (at > -1)) + while ((start <= end) && (at > -1)) { // start+count must be a position within -str-. count = end - start; at = str.IndexOf("he", start, count); if (at == -1) break; - Console.Write("{0} ", at); - start = at+1; + Console.Write($"{at} "); + start = at + 1; } Console.WriteLine(); diff --git a/snippets/csharp/System/String/IndexOf/simple1.cs b/snippets/csharp/System/String/IndexOf/simple1.cs index f95f43a3db8..e6b7f7695b6 100644 --- a/snippets/csharp/System/String/IndexOf/simple1.cs +++ b/snippets/csharp/System/String/IndexOf/simple1.cs @@ -1,15 +1,14 @@ using System; -public class Example +public class IndexOfSimpleExample { - public static void Main() + public static void Run() { // - String str = "animal"; - String toFind = "n"; + string str = "animal"; + string toFind = "n"; int index = str.IndexOf("n"); - Console.WriteLine("Found '{0}' in '{1}' at position {2}", - toFind, str, index); + Console.WriteLine($"Found '{toFind}' in '{str}' at position {index}"); // The example displays the following output: // Found 'n' in 'animal' at position 1 diff --git a/snippets/csharp/System/String/IndexOf/stringindexof4.cs b/snippets/csharp/System/String/IndexOf/stringindexof4.cs index 041de8858d8..8bac7e8766f 100644 --- a/snippets/csharp/System/String/IndexOf/stringindexof4.cs +++ b/snippets/csharp/System/String/IndexOf/stringindexof4.cs @@ -1,8 +1,10 @@ // using System; -public class IndexOfTest { - public static void Main() { +public class IndexOfTest +{ + public static void Run() + { string strSource = "This is the string which we will perform the search on"; @@ -12,18 +14,22 @@ public static void Main() { int found = 0; int totFinds = 0; - do { + do + { Console.Write("Please enter a search value to look for in the above string (hit Enter to exit) ==> "); strTarget = Console.ReadLine(); - if (strTarget != "") { + if (strTarget != "") + { - for (int i = 0; i < strSource.Length; i++) { + for (int i = 0; i < strSource.Length; i++) + { found = strSource.IndexOf(strTarget, i); - if (found >= 0) { + if (found >= 0) + { totFinds++; i = found; } @@ -42,7 +48,7 @@ public static void Main() { Environment.NewLine, strTarget, totFinds); totFinds = 0; - } while ( true ); + } while (true); } } // diff --git a/snippets/csharp/System/String/IndexOf/stringinsert.cs b/snippets/csharp/System/String/IndexOf/stringinsert.cs index 9fb39e92607..1b99e5b4c99 100644 --- a/snippets/csharp/System/String/IndexOf/stringinsert.cs +++ b/snippets/csharp/System/String/IndexOf/stringinsert.cs @@ -1,14 +1,14 @@ // using System; -public class Example { - public static void Main() +public class IndexOfInsertExample +{ + public static void Run() { string animal1 = "fox"; string animal2 = "dog"; - string strTarget = String.Format("The {0} jumps over the {1}.", - animal1, animal2); + string strTarget = $"The {animal1} jumps over the {animal2}."; Console.WriteLine("The original string is:{0}{1}{0}", Environment.NewLine, strTarget); diff --git a/snippets/csharp/System/String/IndexOfAny/IndexOfAny1.cs b/snippets/csharp/System/String/IndexOfAny/IndexOfAny1.cs index 7e46888284c..1c167ef5e5c 100644 --- a/snippets/csharp/System/String/IndexOfAny/IndexOfAny1.cs +++ b/snippets/csharp/System/String/IndexOfAny/IndexOfAny1.cs @@ -2,22 +2,22 @@ public class Example1 { - public static void Run() - { - // - char[] chars = { 'a', 'e', 'i', 'o', 'u', 'y', - 'A', 'E', 'I', 'O', 'U', 'Y' }; - String s = "The long and winding road..."; - Console.WriteLine($""" + public static void Run() + { + // + char[] chars = [ 'a', 'e', 'i', 'o', 'u', 'y', + 'A', 'E', 'I', 'O', 'U', 'Y' ]; + string s = "The long and winding road..."; + Console.WriteLine($""" The first vowel in '{s}' is found at index {s.IndexOfAny(chars)} """); - // The example displays the following output: - // The first vowel in - // 'The long and winding road...' - // is found at index 2 - // - } + // The example displays the following output: + // The first vowel in + // 'The long and winding road...' + // is found at index 2 + // + } } diff --git a/snippets/csharp/System/String/IndexOfAny/Program.cs b/snippets/csharp/System/String/IndexOfAny/Program.cs index 510edb4cb58..c84db44d8fb 100644 --- a/snippets/csharp/System/String/IndexOfAny/Program.cs +++ b/snippets/csharp/System/String/IndexOfAny/Program.cs @@ -1,8 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; + + + + + namespace Project { diff --git a/snippets/csharp/System/String/Insert/Insert1.cs b/snippets/csharp/System/String/Insert/Insert1.cs index 033b12127ad..d888d8bca49 100644 --- a/snippets/csharp/System/String/Insert/Insert1.cs +++ b/snippets/csharp/System/String/Insert/Insert1.cs @@ -3,13 +3,13 @@ public class Example { - public static void Main() - { - String original = "aaabbb"; - Console.WriteLine("The original string: '{0}'", original); - String modified = original.Insert(3, " "); - Console.WriteLine("The modified string: '{0}'", modified); - } + public static void Main() + { + string original = "aaabbb"; + Console.WriteLine($"The original string: '{original}'"); + string modified = original.Insert(3, " "); + Console.WriteLine($"The modified string: '{modified}'"); + } } // The example displays the following output: // The original string: 'aaabbb' diff --git a/snippets/csharp/System/String/Intern/Intern1.cs b/snippets/csharp/System/String/Intern/Intern1.cs index fa3a57ae33a..685a2fa10e9 100644 --- a/snippets/csharp/System/String/Intern/Intern1.cs +++ b/snippets/csharp/System/String/Intern/Intern1.cs @@ -4,14 +4,14 @@ [assembly: CLSCompliant(true)] public class Class1 { - public static void Main() - { - // - string s1 = "MyTest"; - string s2 = new StringBuilder().Append("My").Append("Test").ToString(); - string s3 = String.Intern(s2); - Console.WriteLine((Object)s2==(Object)s1); // Different references. - Console.WriteLine((Object)s3==(Object)s1); // The same reference. - // - } + public static void Main() + { + // + string s1 = "MyTest"; + string s2 = new StringBuilder().Append("My").Append("Test").ToString(); + string s3 = string.Intern(s2); + Console.WriteLine((object)s2 == (object)s1); // Different references. + Console.WriteLine((object)s3 == (object)s1); // The same reference. + // + } } diff --git a/snippets/csharp/System/String/Intern/string_intern.cs b/snippets/csharp/System/String/Intern/string_intern.cs index 8f14ccb26f7..d177d745c93 100644 --- a/snippets/csharp/System/String/Intern/string_intern.cs +++ b/snippets/csharp/System/String/Intern/string_intern.cs @@ -12,13 +12,13 @@ public static void Main() Console.WriteLine($"s1 == {s1}"); Console.WriteLine($"s2 == {s2}"); Console.WriteLine($"Are s1 and s2 equal in value? {s1 == s2}"); - Console.WriteLine($"Are s1 and s2 the same reference? {Object.ReferenceEquals(s1, s2)}"); + Console.WriteLine($"Are s1 and s2 the same reference? {object.ReferenceEquals(s1, s2)}"); - string i1 = String.Intern(s1); - string i2 = String.Intern(s2); + string i1 = string.Intern(s1); + string i2 = string.Intern(s2); Console.WriteLine($"After interning:"); Console.WriteLine($" Are i1 and i2 equal in value? {i1 == i2}"); - Console.WriteLine($" Are i1 and i2 the same reference? {Object.ReferenceEquals(i1, i2)}"); + Console.WriteLine($" Are i1 and i2 the same reference? {object.ReferenceEquals(i1, i2)}"); } } /* diff --git a/snippets/csharp/System/String/IsInterned/isin.cs b/snippets/csharp/System/String/IsInterned/isin.cs index e7dc8a16d93..7077f417841 100644 --- a/snippets/csharp/System/String/IsInterned/isin.cs +++ b/snippets/csharp/System/String/IsInterned/isin.cs @@ -12,17 +12,17 @@ public static void Main() string s2 = new StringBuilder().Append("My").Append("Test").ToString(); // Neither string is in the intern pool yet. - Console.WriteLine($"Is s1 interned? {String.IsInterned(s1) != null}"); - Console.WriteLine($"Is s2 interned? {String.IsInterned(s2) != null}"); + Console.WriteLine($"Is s1 interned? {string.IsInterned(s1) != null}"); + Console.WriteLine($"Is s2 interned? {string.IsInterned(s2) != null}"); // Intern s1 explicitly. - string i1 = String.Intern(s1); + string i1 = string.Intern(s1); // Now s2 can be found in the intern pool. - string i2 = String.IsInterned(s2); + string i2 = string.IsInterned(s2); Console.WriteLine($"Is s2 interned after interning s1? {i2 != null}"); - Console.WriteLine($"Are i1 and i2 the same reference? {Object.ReferenceEquals(i1, i2)}"); + Console.WriteLine($"Are i1 and i2 the same reference? {object.ReferenceEquals(i1, i2)}"); } } @@ -33,4 +33,4 @@ public static void Main() // Is s2 interned after interning s1? True // Are i1 and i2 the same reference? True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/IsInterned/isinternedex1.cs b/snippets/csharp/System/String/IsInterned/isinternedex1.cs index 71b73869dde..fcc54c72ac7 100644 --- a/snippets/csharp/System/String/IsInterned/isinternedex1.cs +++ b/snippets/csharp/System/String/IsInterned/isinternedex1.cs @@ -3,29 +3,28 @@ public class Example { - public static void Main() - { - string str1 = "a"; - string str2 = str1 + "b"; - string str3 = str2 + "c"; - string[] strings = { "value", "part1" + "_" + "part2", str3, - String.Empty, null }; - foreach (var value in strings) { - if (value == null) continue; - - bool interned = String.IsInterned(value) != null; - if (interned) - Console.WriteLine("'{0}' is in the string intern pool.", - value); - else - Console.WriteLine("'{0}' is not in the string intern pool.", - value); - } - } + public static void Main() + { + string str1 = "a"; + string str2 = str1 + "b"; + string str3 = str2 + "c"; + string[] strings = [ "value", "part1" + "_" + "part2", str3, + string.Empty, null ]; + foreach (string value in strings) + { + if (value == null) continue; + + bool interned = string.IsInterned(value) != null; + if (interned) + Console.WriteLine($"'{value}' is in the string intern pool."); + else + Console.WriteLine($"'{value}' is not in the string intern pool."); + } + } } // The example displays the following output: // 'value' is in the string intern pool. // 'part1_part2' is in the string intern pool. // 'abc' is not in the string intern pool. // '' is in the string intern pool. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/IsNormalized/norm.cs b/snippets/csharp/System/String/IsNormalized/norm.cs index a675445da1b..b8a80b7e51b 100644 --- a/snippets/csharp/System/String/IsNormalized/norm.cs +++ b/snippets/csharp/System/String/IsNormalized/norm.cs @@ -6,79 +6,75 @@ class Example { public static void Main() { - // Character c; combining characters acute and cedilla; character 3/4 - string s1 = new String( new char[] {'\u0063', '\u0301', '\u0327', '\u00BE'}); - string s2 = null; - string divider = new String('-', 80); - divider = String.Concat(Environment.NewLine, divider, Environment.NewLine); - - Show("s1", s1); - Console.WriteLine(); - Console.WriteLine("U+0063 = LATIN SMALL LETTER C"); - Console.WriteLine("U+0301 = COMBINING ACUTE ACCENT"); - Console.WriteLine("U+0327 = COMBINING CEDILLA"); - Console.WriteLine("U+00BE = VULGAR FRACTION THREE QUARTERS"); - Console.WriteLine(divider); - - Console.WriteLine("A1) Is s1 normalized to the default form (Form C)?: {0}", - s1.IsNormalized()); - Console.WriteLine("A2) Is s1 normalized to Form C?: {0}", - s1.IsNormalized(NormalizationForm.FormC)); - Console.WriteLine("A3) Is s1 normalized to Form D?: {0}", - s1.IsNormalized(NormalizationForm.FormD)); - Console.WriteLine("A4) Is s1 normalized to Form KC?: {0}", - s1.IsNormalized(NormalizationForm.FormKC)); - Console.WriteLine("A5) Is s1 normalized to Form KD?: {0}", - s1.IsNormalized(NormalizationForm.FormKD)); - - Console.WriteLine(divider); - - Console.WriteLine("Set string s2 to each normalized form of string s1."); - Console.WriteLine(); - Console.WriteLine("U+1E09 = LATIN SMALL LETTER C WITH CEDILLA AND ACUTE"); - Console.WriteLine("U+0033 = DIGIT THREE"); - Console.WriteLine("U+2044 = FRACTION SLASH"); - Console.WriteLine("U+0034 = DIGIT FOUR"); - Console.WriteLine(divider); - - s2 = s1.Normalize(); - Console.Write("B1) Is s2 normalized to the default form (Form C)?: "); - Console.WriteLine(s2.IsNormalized()); - Show("s2", s2); - Console.WriteLine(); - - s2 = s1.Normalize(NormalizationForm.FormC); - Console.Write("B2) Is s2 normalized to Form C?: "); - Console.WriteLine(s2.IsNormalized(NormalizationForm.FormC)); - Show("s2", s2); - Console.WriteLine(); - - s2 = s1.Normalize(NormalizationForm.FormD); - Console.Write("B3) Is s2 normalized to Form D?: "); - Console.WriteLine(s2.IsNormalized(NormalizationForm.FormD)); - Show("s2", s2); - Console.WriteLine(); - - s2 = s1.Normalize(NormalizationForm.FormKC); - Console.Write("B4) Is s2 normalized to Form KC?: "); - Console.WriteLine(s2.IsNormalized(NormalizationForm.FormKC)); - Show("s2", s2); - Console.WriteLine(); - - s2 = s1.Normalize(NormalizationForm.FormKD); - Console.Write("B5) Is s2 normalized to Form KD?: "); - Console.WriteLine(s2.IsNormalized(NormalizationForm.FormKD)); - Show("s2", s2); - Console.WriteLine(); + // Character c; combining characters acute and cedilla; character 3/4 + string s1 = new(['\u0063', '\u0301', '\u0327', '\u00BE']); + string s2 = null; + string divider = new('-', 80); + divider = string.Concat(Environment.NewLine, divider, Environment.NewLine); + + Show("s1", s1); + Console.WriteLine(); + Console.WriteLine("U+0063 = LATIN SMALL LETTER C"); + Console.WriteLine("U+0301 = COMBINING ACUTE ACCENT"); + Console.WriteLine("U+0327 = COMBINING CEDILLA"); + Console.WriteLine("U+00BE = VULGAR FRACTION THREE QUARTERS"); + Console.WriteLine(divider); + + Console.WriteLine($"A1) Is s1 normalized to the default form (Form C)?: {s1.IsNormalized()}"); + Console.WriteLine($"A2) Is s1 normalized to Form C?: {s1.IsNormalized(NormalizationForm.FormC)}"); + Console.WriteLine($"A3) Is s1 normalized to Form D?: {s1.IsNormalized(NormalizationForm.FormD)}"); + Console.WriteLine($"A4) Is s1 normalized to Form KC?: {s1.IsNormalized(NormalizationForm.FormKC)}"); + Console.WriteLine($"A5) Is s1 normalized to Form KD?: {s1.IsNormalized(NormalizationForm.FormKD)}"); + + Console.WriteLine(divider); + + Console.WriteLine("Set string s2 to each normalized form of string s1."); + Console.WriteLine(); + Console.WriteLine("U+1E09 = LATIN SMALL LETTER C WITH CEDILLA AND ACUTE"); + Console.WriteLine("U+0033 = DIGIT THREE"); + Console.WriteLine("U+2044 = FRACTION SLASH"); + Console.WriteLine("U+0034 = DIGIT FOUR"); + Console.WriteLine(divider); + + s2 = s1.Normalize(); + Console.Write("B1) Is s2 normalized to the default form (Form C)?: "); + Console.WriteLine(s2.IsNormalized()); + Show("s2", s2); + Console.WriteLine(); + + s2 = s1.Normalize(NormalizationForm.FormC); + Console.Write("B2) Is s2 normalized to Form C?: "); + Console.WriteLine(s2.IsNormalized(NormalizationForm.FormC)); + Show("s2", s2); + Console.WriteLine(); + + s2 = s1.Normalize(NormalizationForm.FormD); + Console.Write("B3) Is s2 normalized to Form D?: "); + Console.WriteLine(s2.IsNormalized(NormalizationForm.FormD)); + Show("s2", s2); + Console.WriteLine(); + + s2 = s1.Normalize(NormalizationForm.FormKC); + Console.Write("B4) Is s2 normalized to Form KC?: "); + Console.WriteLine(s2.IsNormalized(NormalizationForm.FormKC)); + Show("s2", s2); + Console.WriteLine(); + + s2 = s1.Normalize(NormalizationForm.FormKD); + Console.Write("B5) Is s2 normalized to Form KD?: "); + Console.WriteLine(s2.IsNormalized(NormalizationForm.FormKD)); + Show("s2", s2); + Console.WriteLine(); } private static void Show(string title, string s) { - Console.Write("Characters in string {0} = ", title); - foreach(short x in s) { - Console.Write("{0:X4} ", x); - } - Console.WriteLine(); + Console.Write($"Characters in string {title} = "); + foreach (short x in s) + { + Console.Write($"{x:X4} "); + } + Console.WriteLine(); } } /* @@ -126,4 +122,4 @@ Set string s2 to each normalized form of string s1. Characters in string s2 = 0063 0327 0301 0033 2044 0034 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/IsNullOrEmpty/NullString1.cs b/snippets/csharp/System/String/IsNullOrEmpty/NullString1.cs index c9da93895ba..76c0dafd51d 100644 --- a/snippets/csharp/System/String/IsNullOrEmpty/NullString1.cs +++ b/snippets/csharp/System/String/IsNullOrEmpty/NullString1.cs @@ -1,19 +1,19 @@ -using System; +using System; public class Example { public static void Main() { // - String s = null; - + string s = null; + Console.WriteLine($"The value of the string is '{s}'"); - try + try { Console.WriteLine($"String length is {s.Length}"); } - catch (NullReferenceException e) + catch (NullReferenceException e) { Console.WriteLine(e.Message); } @@ -30,11 +30,11 @@ public class Empty public void Test() { // - String s = ""; + string s = ""; Console.WriteLine($"The length of '{s}' is {s.Length}."); // The example displays the following output: - // The length of '' is 0. + // The length of '' is 0. // } } diff --git a/snippets/csharp/System/String/IsNullOrEmpty/inoe.cs b/snippets/csharp/System/String/IsNullOrEmpty/inoe.cs index 004791df431..68c224af75a 100644 --- a/snippets/csharp/System/String/IsNullOrEmpty/inoe.cs +++ b/snippets/csharp/System/String/IsNullOrEmpty/inoe.cs @@ -4,27 +4,27 @@ class Sample { public static void Main() { - // - string s1 = "abcd"; - string s2 = ""; - string s3 = null; + // + string s1 = "abcd"; + string s2 = ""; + string s3 = null; - Console.WriteLine("String s1 {0}.", Test(s1)); - Console.WriteLine("String s2 {0}.", Test(s2)); - Console.WriteLine("String s3 {0}.", Test(s3)); + Console.WriteLine($"String s1 {Test(s1)}."); + Console.WriteLine($"String s2 {Test(s2)}."); + Console.WriteLine($"String s3 {Test(s3)}."); - String Test(string s) - { - if (String.IsNullOrEmpty(s)) - return "is null or empty"; - else - return String.Format("(\"{0}\") is neither null nor empty", s); - } + string Test(string s) + { + if (string.IsNullOrEmpty(s)) + return "is null or empty"; + else + return $"(\"{s}\") is neither null nor empty"; + } - // The example displays the following output: - // String s1 ("abcd") is neither null nor empty. - // String s2 is null or empty. - // String s3 is null or empty. - // + // The example displays the following output: + // String s1 ("abcd") is neither null nor empty. + // String s2 is null or empty. + // String s3 is null or empty. + // } } diff --git a/snippets/csharp/System/String/IsNullOrWhiteSpace/Program.cs b/snippets/csharp/System/String/IsNullOrWhiteSpace/Program.cs new file mode 100644 index 00000000000..a6cb7b07baa --- /dev/null +++ b/snippets/csharp/System/String/IsNullOrWhiteSpace/Program.cs @@ -0,0 +1,2 @@ +IsNullOrWhiteSpaceEquivalentExample.Run(); +IsNullOrWhiteSpaceExample.Run(); diff --git a/snippets/csharp/System/String/IsNullOrWhiteSpace/Project.csproj b/snippets/csharp/System/String/IsNullOrWhiteSpace/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/IsNullOrWhiteSpace/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace.cs b/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace.cs index 0cd03284113..80a4ace4701 100644 --- a/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace.cs +++ b/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace.cs @@ -1,17 +1,14 @@ using System; -public class Example +public class IsNullOrWhiteSpaceEquivalentExample { - public static void Main() - { - Console.WriteLine(ShowCode()); - } + public static void Run() => Console.WriteLine(ShowCode()); - private static bool ShowCode() - { - string value = null; - // - return String.IsNullOrEmpty(value) || value.Trim().Length == 0; - // - } + private static bool ShowCode() + { + string value = null; + // + return string.IsNullOrEmpty(value) || value.Trim().Length == 0; + // + } } diff --git a/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace1.cs b/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace1.cs index 48a2dde44c3..7763fdcb924 100644 --- a/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace1.cs +++ b/snippets/csharp/System/String/IsNullOrWhiteSpace/isnullorwhitespace1.cs @@ -1,16 +1,16 @@ // using System; -public class Example +public class IsNullOrWhiteSpaceExample { - public static void Main() - { - string[] values = { null, String.Empty, "ABCDE", - new String(' ', 20), " \t ", - new String('\u2000', 10) }; - foreach (string value in values) - Console.WriteLine(String.IsNullOrWhiteSpace(value)); - } + public static void Run() + { + string[] values = [ null, string.Empty, "ABCDE", + new string(' ', 20), " \t ", + new string('\u2000', 10) ]; + foreach (string value in values) + Console.WriteLine(string.IsNullOrWhiteSpace(value)); + } } // The example displays the following output: // True @@ -19,4 +19,4 @@ public static void Main() // True // True // True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Join/Program.cs b/snippets/csharp/System/String/Join/Program.cs new file mode 100644 index 00000000000..44d79eafae7 --- /dev/null +++ b/snippets/csharp/System/String/Join/Program.cs @@ -0,0 +1,7 @@ +JoinArrayExample.Run(); +Sample.Run(); +JoinListExample.Run(); +JoinAlphabetExample.Run(); +JoinAnimalsExample.Run(); +JoinEnumerableExample.Run(); +JoinTest.Run(); diff --git a/snippets/csharp/System/String/Join/Project.csproj b/snippets/csharp/System/String/Join/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/Join/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/Join/join1.cs b/snippets/csharp/System/String/Join/join1.cs index 618d055e2bb..12549ff897e 100644 --- a/snippets/csharp/System/String/Join/join1.cs +++ b/snippets/csharp/System/String/Join/join1.cs @@ -2,39 +2,39 @@ using System; using System.Collections.Generic; -public class Example +public class JoinArrayExample { - public static void Main() - { - int maxPrime = 100; - int[] primes = GetPrimes(maxPrime); - Console.WriteLine("Primes less than {0}:", maxPrime); - Console.WriteLine(" {0}", String.Join(" ", primes)); - } + public static void Run() + { + int maxPrime = 100; + int[] primes = GetPrimes(maxPrime); + Console.WriteLine($"Primes less than {maxPrime}:"); + Console.WriteLine($" {string.Join(" ", primes)}"); + } - private static int[] GetPrimes(int maxPrime) - { - Array values = Array.CreateInstance(typeof(int), - new int[] { maxPrime - 1}, new int[] { 2 }); - // Use Sieve of Eratosthenes to determine prime numbers. - for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) - { - - if ((int) values.GetValue(ctr) == 1) continue; - - for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) - if (ctr * multiplier <= maxPrime) - values.SetValue(1, ctr * multiplier); - } - - List primes = new List(); - for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) - if ((int) values.GetValue(ctr) == 0) - primes.Add(ctr); - return primes.ToArray(); - } + private static int[] GetPrimes(int maxPrime) + { + Array values = Array.CreateInstance(typeof(int), + [maxPrime - 1], [2]); + // Use Sieve of Eratosthenes to determine prime numbers. + for (int ctr = values.GetLowerBound(0); ctr <= (int)Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) + { + + if ((int)values.GetValue(ctr) == 1) continue; + + for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) + if (ctr * multiplier <= maxPrime) + values.SetValue(1, ctr * multiplier); + } + + List primes = new(); + for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) + if ((int)values.GetValue(ctr) == 0) + primes.Add(ctr); + return [.. primes]; + } } // The example displays the following output: // Primes less than 100: // 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Join/join2.cs b/snippets/csharp/System/String/Join/join2.cs index 5b2912b9190..92dd8ce00a4 100644 --- a/snippets/csharp/System/String/Join/join2.cs +++ b/snippets/csharp/System/String/Join/join2.cs @@ -3,17 +3,17 @@ class Sample { - public static void Main() + public static void Run() { // - String[] val = {"apple", "orange", "grape", "pear"}; - String sep = ", "; - String result; + string[] val = ["apple", "orange", "grape", "pear"]; + string sep = ", "; + string result; - Console.WriteLine("sep = '{0}'", sep); - Console.WriteLine("val[] = {{'{0}' '{1}' '{2}' '{3}'}}", val[0], val[1], val[2], val[3]); - result = String.Join(sep, val, 1, 2); - Console.WriteLine("String.Join(sep, val, 1, 2) = '{0}'", result); + Console.WriteLine($"sep = '{sep}'"); + Console.WriteLine($"val[] = {{'{val[0]}' '{val[1]}' '{val[2]}' '{val[3]}'}}"); + result = string.Join(sep, val, 1, 2); + Console.WriteLine($"String.Join(sep, val, 1, 2) = '{result}'"); // This example produces the following results: // sep = ', ' diff --git a/snippets/csharp/System/String/Join/join3.cs b/snippets/csharp/System/String/Join/join3.cs index b9fee22660b..5e9a2146b9f 100644 --- a/snippets/csharp/System/String/Join/join3.cs +++ b/snippets/csharp/System/String/Join/join3.cs @@ -2,39 +2,39 @@ using System; using System.Collections.Generic; -public class Example +public class JoinListExample { - public static void Main() - { - int maxPrime = 100; - List primes = GetPrimes(maxPrime); - Console.WriteLine("Primes less than {0}:", maxPrime); - Console.WriteLine(" {0}", String.Join(" ", primes)); - } + public static void Run() + { + int maxPrime = 100; + List primes = GetPrimes(maxPrime); + Console.WriteLine($"Primes less than {maxPrime}:"); + Console.WriteLine($" {string.Join(" ", primes)}"); + } - private static List GetPrimes(int maxPrime) - { - Array values = Array.CreateInstance(typeof(int), - new int[] { maxPrime - 1}, new int[] { 2 }); - // Use Sieve of Eratosthenes to determine prime numbers. - for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) - { - - if ((int) values.GetValue(ctr) == 1) continue; - - for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) - if (ctr * multiplier <= maxPrime) - values.SetValue(1, ctr * multiplier); - } - - List primes = new List(); - for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) - if ((int) values.GetValue(ctr) == 0) - primes.Add(ctr); - return primes; - } + private static List GetPrimes(int maxPrime) + { + Array values = Array.CreateInstance(typeof(int), + [maxPrime - 1], [2]); + // Use Sieve of Eratosthenes to determine prime numbers. + for (int ctr = values.GetLowerBound(0); ctr <= (int)Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) + { + + if ((int)values.GetValue(ctr) == 1) continue; + + for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) + if (ctr * multiplier <= maxPrime) + values.SetValue(1, ctr * multiplier); + } + + List primes = new(); + for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) + if ((int)values.GetValue(ctr) == 0) + primes.Add(ctr); + return primes; + } } // The example displays the following output: // Primes less than 100: // 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 -//
\ No newline at end of file +// diff --git a/snippets/csharp/System/String/Join/join4.cs b/snippets/csharp/System/String/Join/join4.cs index 1eaea09860d..2e9b986dd1b 100644 --- a/snippets/csharp/System/String/Join/join4.cs +++ b/snippets/csharp/System/String/Join/join4.cs @@ -3,24 +3,24 @@ using System.Collections.Generic; using System.Linq; -public class Example +public class JoinAlphabetExample { - public static void Main() - { - string output = String.Join(" ", GetAlphabet(true).Where( letter => - letter.CompareTo("M") >= 0)); - Console.WriteLine(output); - } + public static void Run() + { + string output = string.Join(" ", GetAlphabet(true).Where(letter => + letter.CompareTo("M") >= 0)); + Console.WriteLine(output); + } - private static List GetAlphabet(bool upper) - { - List alphabet = new List(); - int charValue = upper ? 65 : 97; - for (int ctr = 0; ctr <= 25; ctr++) - alphabet.Add(((char)(charValue + ctr)).ToString()); - return alphabet; - } + private static List GetAlphabet(bool upper) + { + List alphabet = new(); + int charValue = upper ? 65 : 97; + for (int ctr = 0; ctr <= 25; ctr++) + alphabet.Add(((char)(charValue + ctr)).ToString()); + return alphabet; + } } // The example displays the following output: // M N O P Q R S T U V W X Y Z -//
\ No newline at end of file +// diff --git a/snippets/csharp/System/String/Join/join5.cs b/snippets/csharp/System/String/Join/join5.cs index 240ee2c40f9..1b4995aca74 100644 --- a/snippets/csharp/System/String/Join/join5.cs +++ b/snippets/csharp/System/String/Join/join5.cs @@ -5,33 +5,32 @@ public class Animal { - public string Kind; - public string Order; - - public Animal(string kind, string order) - { - this.Kind = kind; - this.Order = order; - } - - public override string ToString() - { - return this.Kind; - } + public string Kind; + public string Order; + + public Animal(string kind, string order) + { + this.Kind = kind; + this.Order = order; + } + + public override string ToString() => this.Kind; } -public class Example +public class JoinAnimalsExample { - public static void Main() - { - List animals = new List(); - animals.Add(new Animal("Squirrel", "Rodent")); - animals.Add(new Animal("Gray Wolf", "Carnivora")); - animals.Add(new Animal("Capybara", "Rodent")); - string output = String.Join(" ", animals.Where( animal => - (animal.Order == "Rodent"))); - Console.WriteLine(output); - } + public static void Run() + { + List animals = new() + { + new Animal("Squirrel", "Rodent"), + new Animal("Gray Wolf", "Carnivora"), + new Animal("Capybara", "Rodent") + }; + string output = string.Join(" ", animals.Where(animal => + (animal.Order == "Rodent"))); + Console.WriteLine(output); + } } // The example displays the following output: // Squirrel Capybara diff --git a/snippets/csharp/System/String/Join/join6.cs b/snippets/csharp/System/String/Join/join6.cs index 1e98285e8ba..6f8e34a338a 100644 --- a/snippets/csharp/System/String/Join/join6.cs +++ b/snippets/csharp/System/String/Join/join6.cs @@ -2,39 +2,39 @@ using System; using System.Collections.Generic; -public class Example +public class JoinEnumerableExample { - public static void Main() - { - int maxPrime = 100; - List primes = GetPrimes(maxPrime); - Console.WriteLine("Primes less than {0}:", maxPrime); - Console.WriteLine(" {0}", String.Join(" ", primes)); - } + public static void Run() + { + int maxPrime = 100; + List primes = GetPrimes(maxPrime); + Console.WriteLine($"Primes less than {maxPrime}:"); + Console.WriteLine($" {string.Join(" ", primes)}"); + } - private static List GetPrimes(int maxPrime) - { - Array values = Array.CreateInstance(typeof(int), - new int[] { maxPrime - 1}, new int[] { 2 }); - // Use Sieve of Eratosthenes to determine prime numbers. - for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) - { - - if ((int) values.GetValue(ctr) == 1) continue; - - for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) - if (ctr * multiplier <= maxPrime) - values.SetValue(1, ctr * multiplier); - } - - List primes = new List(); - for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) - if ((int) values.GetValue(ctr) == 0) - primes.Add(ctr); - return primes; - } + private static List GetPrimes(int maxPrime) + { + Array values = Array.CreateInstance(typeof(int), + [maxPrime - 1], [2]); + // Use Sieve of Eratosthenes to determine prime numbers. + for (int ctr = values.GetLowerBound(0); ctr <= (int)Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++) + { + + if ((int)values.GetValue(ctr) == 1) continue; + + for (int multiplier = ctr; multiplier <= maxPrime / 2; multiplier++) + if (ctr * multiplier <= maxPrime) + values.SetValue(1, ctr * multiplier); + } + + List primes = new(); + for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++) + if ((int)values.GetValue(ctr) == 0) + primes.Add(ctr); + return primes; + } } // The example displays the following output: // Primes less than 100: // 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Join/stringjoin.cs b/snippets/csharp/System/String/Join/stringjoin.cs index 1de6bfd4ba8..fc6dfb23fec 100644 --- a/snippets/csharp/System/String/Join/stringjoin.cs +++ b/snippets/csharp/System/String/Join/stringjoin.cs @@ -3,7 +3,7 @@ public class JoinTest { - public static void Main() + public static void Run() { Console.WriteLine(MakeLine(0, 5, ", ")); Console.WriteLine(MakeLine(1, 6, " ")); @@ -13,12 +13,12 @@ public static void Main() private static string MakeLine(int initVal, int multVal, string sep) { - string [] sArr = new string [10]; + string[] sArr = new string[10]; for (int i = initVal; i < initVal + 10; i++) - sArr[i - initVal] = String.Format("{0,-3}", i * multVal); + sArr[i - initVal] = $"{i * multVal,-3}"; - return String.Join(sep, sArr); + return string.Join(sep, sArr); } } // The example displays the following output: @@ -26,4 +26,4 @@ private static string MakeLine(int initVal, int multVal, string sep) // 6 12 18 24 30 36 42 48 54 60 // 81 : 90 : 99 : 108: 117: 126: 135: 144: 153: 162 // 28 < 35 < 42 < 49 < 56 < 63 < 70 < 77 < 84 < 91 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/LastIndexOf_Example.cs b/snippets/csharp/System/String/LastIndexOf/LastIndexOf_Example.cs index 99fb57f04c5..b4838a6ecb2 100644 --- a/snippets/csharp/System/String/LastIndexOf/LastIndexOf_Example.cs +++ b/snippets/csharp/System/String/LastIndexOf/LastIndexOf_Example.cs @@ -4,49 +4,49 @@ public class TestLastIndexOf { - public static void Main() - { - string filename; - - filename = ExtractFilename(@"C:\temp\"); - Console.WriteLine("{0}", String.IsNullOrEmpty(filename) ? "" : filename); - - filename = ExtractFilename(@"C:\temp\delegate.txt"); - Console.WriteLine("{0}", String.IsNullOrEmpty(filename) ? "" : filename); + public static void Run() + { + string filename; - filename = ExtractFilename("delegate.txt"); - Console.WriteLine("{0}", String.IsNullOrEmpty(filename) ? "" : filename); - - filename = ExtractFilename(@"C:\temp\notafile.txt"); - Console.WriteLine("{0}", String.IsNullOrEmpty(filename) ? "" : filename); - } + filename = ExtractFilename(@"C:\temp\"); + Console.WriteLine($"{(string.IsNullOrEmpty(filename) ? "" : filename)}"); - public static string ExtractFilename(string filepath) - { - // If path ends with a "\", it's a path only so return String.Empty. - if (filepath.Trim().EndsWith(@"\")) - return String.Empty; - - // Determine where last backslash is. - int position = filepath.LastIndexOf('\\'); - // If there is no backslash, assume that this is a filename. - if (position == -1) - { - // Determine whether file exists in the current directory. - if (File.Exists(Environment.CurrentDirectory + Path.DirectorySeparatorChar + filepath)) - return filepath; - else - return String.Empty; - } - else - { - // Determine whether file exists using filepath. - if (File.Exists(filepath)) - // Return filename without file path. - return filepath.Substring(position + 1); - else - return String.Empty; - } - } + filename = ExtractFilename(@"C:\temp\delegate.txt"); + Console.WriteLine($"{(string.IsNullOrEmpty(filename) ? "" : filename)}"); + + filename = ExtractFilename("delegate.txt"); + Console.WriteLine($"{(string.IsNullOrEmpty(filename) ? "" : filename)}"); + + filename = ExtractFilename(@"C:\temp\notafile.txt"); + Console.WriteLine($"{(string.IsNullOrEmpty(filename) ? "" : filename)}"); + } + + public static string ExtractFilename(string filepath) + { + // If path ends with a "\", it's a path only so return String.Empty. + if (filepath.Trim().EndsWith(@"\")) + return string.Empty; + + // Determine where last backslash is. + int position = filepath.LastIndexOf('\\'); + // If there is no backslash, assume that this is a filename. + if (position == -1) + { + // Determine whether file exists in the current directory. + if (File.Exists(Environment.CurrentDirectory + Path.DirectorySeparatorChar + filepath)) + return filepath; + else + return string.Empty; + } + else + { + // Determine whether file exists using filepath. + if (File.Exists(filepath)) + // Return filename without file path. + return filepath.Substring(position + 1); + else + return string.Empty; + } + } } // diff --git a/snippets/csharp/System/String/LastIndexOf/Program.cs b/snippets/csharp/System/String/LastIndexOf/Program.cs new file mode 100644 index 00000000000..4834bb32f7e --- /dev/null +++ b/snippets/csharp/System/String/LastIndexOf/Program.cs @@ -0,0 +1,13 @@ +TestLastIndexOf.Run(); +LastIndexOfTagsExample.Run(); +LastIndexOfIgnorable21Example.Run(); +LastIndexOfIgnorable22Example.Run(); +LastIndexOfIgnorable23Example.Run(); +LastIndexOfIgnorable24Example.Run(); +LastIndexOfIgnorable25Example.Run(); +LastIndexOfIgnorable26Example.Run(); +LastIndexOfCharSample.Run(); +LastIndexOfCharRangeSample.Run(); +LastIndexOfStringSample.Run(); +LastIndexOfStringRangeSample.Run(); +LastIndexOfComparisonSample.Run(); diff --git a/snippets/csharp/System/String/LastIndexOf/Project.csproj b/snippets/csharp/System/String/LastIndexOf/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/LastIndexOf/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof21.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof21.cs index 5414e083ae4..0961a734067 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof21.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof21.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable21Example { - public static void Main() + public static void Run() { // string s1 = "ani\u00ADmal"; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof22.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof22.cs index 702370a2c0c..8a3ea8868b0 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof22.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof22.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable22Example { - public static void Main() + public static void Run() { // int position = 0; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof23.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof23.cs index 2a8c70c7bf5..b9b084d12fd 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof23.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof23.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable23Example { - public static void Main() + public static void Run() { // int position = 0; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof24.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof24.cs index c16a2a6a53a..189cb7aa75e 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof24.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof24.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable24Example { - public static void Main() + public static void Run() { // string searchString = "\u00ADm"; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof25.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof25.cs index 5d5af49ef14..cb81ae29475 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof25.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof25.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable25Example { - public static void Main() + public static void Run() { // string searchString = "\u00ADm"; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof26.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof26.cs index a78ec97f8e7..b2d68f94004 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof26.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof26.cs @@ -1,8 +1,8 @@ using System; -public class Example +public class LastIndexOfIgnorable26Example { - public static void Main() + public static void Run() { // string s1 = "ani\u00ADmal"; diff --git a/snippets/csharp/System/String/LastIndexOf/lastindexof_example2.cs b/snippets/csharp/System/String/LastIndexOf/lastindexof_example2.cs index 4a52a79b1dc..61f4299bc15 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastindexof_example2.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastindexof_example2.cs @@ -1,58 +1,58 @@ // using System; -public class Example +public class LastIndexOfTagsExample { - public static void Main() - { - string[] strSource = { "This is bold text", "

This is large Text

", + public static void Run() + { + string[] strSource = [ "This is bold text", "

This is large Text

", "This has multiple tags", "This has embedded tags.", - "This line ends with a greater than symbol and should not be modified>" }; + "This line ends with a greater than symbol and should not be modified>" ]; - // Strip HTML start and end tags from each string if they are present. - foreach (string s in strSource) - { - Console.WriteLine("Before: " + s); - string item = s; - // Use EndsWith to find a tag at the end of the line. - if (item.Trim().EndsWith(">")) - { - // Locate the opening tag. - int endTagStartPosition = item.LastIndexOf("= 0 ) - item = item.Substring(0, endTagStartPosition); - - // Use StartsWith to find the opening tag. - if (item.Trim().StartsWith("<")) + // Strip HTML start and end tags from each string if they are present. + foreach (string s in strSource) + { + Console.WriteLine("Before: " + s); + string item = s; + // Use EndsWith to find a tag at the end of the line. + if (item.Trim().EndsWith(">")) { - // Locate the end of opening tab. - int openTagEndPosition = item.IndexOf(">"); - // Remove the identified section, if it is valid. - if (openTagEndPosition >= 0) - item = item.Substring(openTagEndPosition + 1); - } - } - // Display the trimmed string. - Console.WriteLine("After: " + item); - Console.WriteLine(); - } - } + // Locate the opening tag. + int endTagStartPosition = item.LastIndexOf("= 0) + item = item.Substring(0, endTagStartPosition); + + // Use StartsWith to find the opening tag. + if (item.Trim().StartsWith("<")) + { + // Locate the end of opening tab. + int openTagEndPosition = item.IndexOf(">"); + // Remove the identified section, if it is valid. + if (openTagEndPosition >= 0) + item = item.Substring(openTagEndPosition + 1); + } + } + // Display the trimmed string. + Console.WriteLine("After: " + item); + Console.WriteLine(); + } + } } // The example displays the following output: // Before: This is bold text // After: This is bold text -// +// // Before:

This is large Text

// After: This is large Text -// +// // Before: This has multiple tags // After: This has multiple tags -// +// // Before: This has embedded tags. // After: This has embedded tags. -// +// // Before: This line ends with a greater than symbol and should not be modified> // After: This line ends with a greater than symbol and should not be modified> -//
\ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/lastixof1.cs b/snippets/csharp/System/String/LastIndexOf/lastixof1.cs index fc60630d9c4..5e3e7d2ef0a 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastixof1.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastixof1.cs @@ -2,31 +2,33 @@ // Sample for String.LastIndexOf(Char, Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfCharSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; - start = str.Length-1; - Console.WriteLine("All occurrences of 't' from position {0} to 0.", start); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("The letter 't' occurs at position(s): "); + start = str.Length - 1; + Console.WriteLine($"All occurrences of 't' from position {start} to 0."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write("The letter 't' occurs at position(s): "); - at = 0; - while((start > -1) && (at > -1)) + at = 0; + while ((start > -1) && (at > -1)) { - at = str.LastIndexOf('t', start); - if (at > -1) + at = str.LastIndexOf('t', start); + if (at > -1) { - Console.Write("{0} ", at); - start = at - 1; + Console.Write($"{at} "); + start = at - 1; } } - Console.Write("{0}{0}{0}", Environment.NewLine); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -38,4 +40,4 @@ All occurrences of 't' from position 66 to 0. The letter 't' occurs at position(s): 64 55 44 41 33 11 7 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/lastixof2.cs b/snippets/csharp/System/String/LastIndexOf/lastixof2.cs index 09a23421cc9..4a92d56d2df 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastixof2.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastixof2.cs @@ -2,36 +2,38 @@ // Sample for String.LastIndexOf(Char, Int32, Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfCharRangeSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; - int count; - int end; + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; + int count; + int end; - start = str.Length-1; - end = start/2 - 1; - Console.WriteLine("All occurrences of 't' from position {0} to {1}.", start, end); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("The letter 't' occurs at position(s): "); + start = str.Length - 1; + end = start / 2 - 1; + Console.WriteLine($"All occurrences of 't' from position {start} to {end}."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write("The letter 't' occurs at position(s): "); - count = 0; - at = 0; - while((start > -1) && (at > -1)) + count = 0; + at = 0; + while ((start > -1) && (at > -1)) { - count = start - end; //Count must be within the substring. - at = str.LastIndexOf('t', start, count); - if (at > -1) + count = start - end; //Count must be within the substring. + at = str.LastIndexOf('t', start, count); + if (at > -1) { - Console.Write("{0} ", at); - start = at - 1; + Console.Write($"{at} "); + start = at - 1; } } - Console.Write("{0}{0}{0}", Environment.NewLine); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -45,4 +47,4 @@ All occurrences of 't' from position 66 to 32. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/lastixof7.cs b/snippets/csharp/System/String/LastIndexOf/lastixof7.cs index 8f6333c2009..024ec87be7e 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastixof7.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastixof7.cs @@ -2,31 +2,33 @@ // Sample for String.LastIndexOf(String, Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfStringSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; - start = str.Length-1; - Console.WriteLine("All occurrences of 'he' from position {0} to 0.", start); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("The string 'he' occurs at position(s): "); + start = str.Length - 1; + Console.WriteLine($"All occurrences of 'he' from position {start} to 0."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write("The string 'he' occurs at position(s): "); - at = 0; - while((start > -1) && (at > -1)) + at = 0; + while ((start > -1) && (at > -1)) { - at = str.LastIndexOf("he", start); - if (at > -1) + at = str.LastIndexOf("he", start); + if (at > -1) { - Console.Write("{0} ", at); - start = at - 1; + Console.Write($"{at} "); + start = at - 1; } } - Console.Write("{0}{0}{0}", Environment.NewLine); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -40,4 +42,4 @@ All occurrences of 'he' from position 66 to 0. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/lastixof8.cs b/snippets/csharp/System/String/LastIndexOf/lastixof8.cs index 5870a79733d..f5740de3531 100644 --- a/snippets/csharp/System/String/LastIndexOf/lastixof8.cs +++ b/snippets/csharp/System/String/LastIndexOf/lastixof8.cs @@ -2,36 +2,38 @@ // Sample for String.LastIndexOf(String, Int32, Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfStringRangeSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; - int count; - int end; + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; + int count; + int end; - start = str.Length-1; - end = start/2 - 1; - Console.WriteLine("All occurrences of 'he' from position {0} to {1}.", start, end); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("The string 'he' occurs at position(s): "); + start = str.Length - 1; + end = start / 2 - 1; + Console.WriteLine($"All occurrences of 'he' from position {start} to {end}."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write("The string 'he' occurs at position(s): "); - count = 0; - at = 0; - while((start > -1) && (at > -1)) + count = 0; + at = 0; + while ((start > -1) && (at > -1)) { - count = start - end; //Count must be within the substring. - at = str.LastIndexOf("he", start, count); - if (at > -1) + count = start - end; //Count must be within the substring. + at = str.LastIndexOf("he", start, count); + if (at > -1) { - Console.Write("{0} ", at); - start = at - 1; + Console.Write($"{at} "); + start = at - 1; } } - Console.Write("{0}{0}{0}", Environment.NewLine); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -43,4 +45,4 @@ All occurrences of 'he' from position 66 to 32. The string 'he' occurs at position(s): 56 45 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOf/liocmp.cs b/snippets/csharp/System/String/LastIndexOf/liocmp.cs index 39a9cc84947..8228ecdb874 100644 --- a/snippets/csharp/System/String/LastIndexOf/liocmp.cs +++ b/snippets/csharp/System/String/LastIndexOf/liocmp.cs @@ -1,89 +1,86 @@ // -// This code example demonstrates the +// This code example demonstrates the // System.String.LastIndexOf(String, ..., StringComparison) methods. using System; using System.Threading; -using System.Globalization; -class Sample + +class LastIndexOfComparisonSample { - public static void Main() + public static void Run() { - string intro = "Find the last occurrence of a character using different " + - "values of StringComparison."; - string resultFmt = "Comparison: {0,-28} Location: {1,3}"; - -// Define a string to search for. -// U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE - string CapitalAWithRing = "\u00c5"; - -// Define a string to search. -// The result of combining the characters LATIN SMALL LETTER A and COMBINING -// RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character -// LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). - string cat = "A Cheshire c" + "\u0061\u030a" + "t"; - int loc = 0; - StringComparison[] scValues = { + string intro = "Find the last occurrence of a character using different " + + "values of StringComparison."; + string resultFmt = "Comparison: {0,-28} Location: {1,3}"; + + // Define a string to search for. + // U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE + string CapitalAWithRing = "\u00c5"; + + // Define a string to search. + // The result of combining the characters LATIN SMALL LETTER A and COMBINING + // RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character + // LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). + string cat = "A Cheshire c" + "\u0061\u030a" + "t"; + int loc = 0; + StringComparison[] scValues = [ StringComparison.CurrentCulture, StringComparison.CurrentCultureIgnoreCase, StringComparison.InvariantCulture, StringComparison.InvariantCultureIgnoreCase, StringComparison.Ordinal, - StringComparison.OrdinalIgnoreCase }; - -// Clear the screen and display an introduction. - Console.Clear(); - Console.WriteLine(intro); - -// Display the current culture because culture affects the result. For example, -// try this code example with the "sv-SE" (Swedish-Sweden) culture. - - Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); - Console.WriteLine("The current culture is \"{0}\" - {1}.", - Thread.CurrentThread.CurrentCulture.Name, - Thread.CurrentThread.CurrentCulture.DisplayName); - -// Display the string to search for and the string to search. - Console.WriteLine("Search for the string \"{0}\" in the string \"{1}\"", - CapitalAWithRing, cat); - Console.WriteLine(); - -// Note that in each of the following searches, we look for -// LATIN CAPITAL LETTER A WITH RING ABOVE in a string that contains -// LATIN SMALL LETTER A WITH RING ABOVE. A result value of -1 indicates -// the string was not found. -// Search using different values of StringComparsion. Specify the start -// index and count. - - Console.WriteLine("Part 1: Start index and count are specified."); - foreach (StringComparison sc in scValues) + StringComparison.OrdinalIgnoreCase ]; + + // Clear the screen and display an introduction. + Console.Clear(); + Console.WriteLine(intro); + + // Display the current culture because culture affects the result. For example, + // try this code example with the "sv-SE" (Swedish-Sweden) culture. + + Thread.CurrentThread.CurrentCulture = new("en-US"); + Console.WriteLine($"The current culture is \"{Thread.CurrentThread.CurrentCulture.Name}\" - {Thread.CurrentThread.CurrentCulture.DisplayName}."); + + // Display the string to search for and the string to search. + Console.WriteLine($"Search for the string \"{CapitalAWithRing}\" in the string \"{cat}\""); + Console.WriteLine(); + + // Note that in each of the following searches, we look for + // LATIN CAPITAL LETTER A WITH RING ABOVE in a string that contains + // LATIN SMALL LETTER A WITH RING ABOVE. A result value of -1 indicates + // the string was not found. + // Search using different values of StringComparsion. Specify the start + // index and count. + + Console.WriteLine("Part 1: Start index and count are specified."); + foreach (StringComparison sc in scValues) { - loc = cat.LastIndexOf(CapitalAWithRing, cat.Length-1, cat.Length, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.LastIndexOf(CapitalAWithRing, cat.Length - 1, cat.Length, sc); + Console.WriteLine(resultFmt, sc, loc); } -// Search using different values of StringComparsion. Specify the -// start index. - Console.WriteLine("\nPart 2: Start index is specified."); - foreach (StringComparison sc in scValues) + // Search using different values of StringComparsion. Specify the + // start index. + Console.WriteLine("\nPart 2: Start index is specified."); + foreach (StringComparison sc in scValues) { - loc = cat.LastIndexOf(CapitalAWithRing, cat.Length-1, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.LastIndexOf(CapitalAWithRing, cat.Length - 1, sc); + Console.WriteLine(resultFmt, sc, loc); } -// Search using different values of StringComparsion. - Console.WriteLine("\nPart 3: Neither start index nor count is specified."); - foreach (StringComparison sc in scValues) + // Search using different values of StringComparsion. + Console.WriteLine("\nPart 3: Neither start index nor count is specified."); + foreach (StringComparison sc in scValues) { - loc = cat.LastIndexOf(CapitalAWithRing, sc); - Console.WriteLine(resultFmt, sc, loc); + loc = cat.LastIndexOf(CapitalAWithRing, sc); + Console.WriteLine(resultFmt, sc, loc); } } } /* -Note: This code example was executed on a console whose user interface +Note: This code example was executed on a console whose user interface culture is "en-US" (English-United States). This code example produces the following results: @@ -117,4 +114,4 @@ public static void Main() Comparison: OrdinalIgnoreCase Location: -1 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOfAny/Program.cs b/snippets/csharp/System/String/LastIndexOfAny/Program.cs new file mode 100644 index 00000000000..0ed1a250cee --- /dev/null +++ b/snippets/csharp/System/String/LastIndexOfAny/Program.cs @@ -0,0 +1,3 @@ +LastIndexOfAnySample.Run(); +LastIndexOfAnyStartSample.Run(); +LastIndexOfAnyRangeSample.Run(); diff --git a/snippets/csharp/System/String/LastIndexOfAny/Project.csproj b/snippets/csharp/System/String/LastIndexOfAny/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/LastIndexOfAny/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/LastIndexOfAny/lastixany1.cs b/snippets/csharp/System/String/LastIndexOfAny/lastixany1.cs index 2a7cf5a248c..837d91f059f 100644 --- a/snippets/csharp/System/String/LastIndexOfAny/lastixany1.cs +++ b/snippets/csharp/System/String/LastIndexOfAny/lastixany1.cs @@ -2,28 +2,30 @@ // Sample for String.LastIndexOfAny(Char[]) using System; -class Sample { - public static void Main() { +class LastIndexOfAnySample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; - string target = "is"; - char[] anyOf = target.ToCharArray(); + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; + string target = "is"; + char[] anyOf = target.ToCharArray(); - start = str.Length-1; - Console.WriteLine("The last character occurrence from position {0} to 0.", start); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("A character in '{0}' occurs at position: ", target); + start = str.Length - 1; + Console.WriteLine($"The last character occurrence from position {start} to 0."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write($"A character in '{target}' occurs at position: "); - at = str.LastIndexOfAny(anyOf); - if (at > -1) - Console.Write(at); - else - Console.Write("(not found)"); - Console.Write("{0}{0}{0}", Environment.NewLine); + at = str.LastIndexOfAny(anyOf); + if (at > -1) + Console.Write(at); + else + Console.Write("(not found)"); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -37,4 +39,4 @@ The last character occurrence from position 66 to 0. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOfAny/lastixany2.cs b/snippets/csharp/System/String/LastIndexOfAny/lastixany2.cs index 9dc667f3f92..d3365e029ab 100644 --- a/snippets/csharp/System/String/LastIndexOfAny/lastixany2.cs +++ b/snippets/csharp/System/String/LastIndexOfAny/lastixany2.cs @@ -2,28 +2,30 @@ // Sample for String.LastIndexOfAny(Char[], Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfAnyStartSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; - string target = "is"; - char[] anyOf = target.ToCharArray(); + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; + string target = "is"; + char[] anyOf = target.ToCharArray(); - start = (str.Length-1)/2; - Console.WriteLine("The last character occurrence from position {0} to 0.", start); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("A character in '{0}' occurs at position: ", target); + start = (str.Length - 1) / 2; + Console.WriteLine($"The last character occurrence from position {start} to 0."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write($"A character in '{target}' occurs at position: "); - at = str.LastIndexOfAny(anyOf, start); - if (at > -1) - Console.Write(at); - else - Console.Write("(not found)"); - Console.Write("{0}{0}{0}", Environment.NewLine); + at = str.LastIndexOfAny(anyOf, start); + if (at > -1) + Console.Write(at); + else + Console.Write("(not found)"); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -37,4 +39,4 @@ The last character occurrence from position 33 to 0. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/LastIndexOfAny/lastixany3.cs b/snippets/csharp/System/String/LastIndexOfAny/lastixany3.cs index 6d469b914b0..693f05ef2d4 100644 --- a/snippets/csharp/System/String/LastIndexOfAny/lastixany3.cs +++ b/snippets/csharp/System/String/LastIndexOfAny/lastixany3.cs @@ -2,30 +2,32 @@ // Sample for String.LastIndexOfAny(Char[], Int32, Int32) using System; -class Sample { - public static void Main() { +class LastIndexOfAnyRangeSample +{ + public static void Run() + { - string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; - string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; - string str = "Now is the time for all good men to come to the aid of their party."; - int start; - int at; - int count; - string target = "aid"; - char[] anyOf = target.ToCharArray(); + string br1 = "0----+----1----+----2----+----3----+----4----+----5----+----6----+-"; + string br2 = "0123456789012345678901234567890123456789012345678901234567890123456"; + string str = "Now is the time for all good men to come to the aid of their party."; + int start; + int at; + int count; + string target = "aid"; + char[] anyOf = target.ToCharArray(); - start = ((str.Length-1)*2)/3; - count = (str.Length-1)/3; - Console.WriteLine("The last character occurrence from position {0} for {1} characters.", start, count); - Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); - Console.Write("A character in '{0}' occurs at position: ", target); + start = ((str.Length - 1) * 2) / 3; + count = (str.Length - 1) / 3; + Console.WriteLine($"The last character occurrence from position {start} for {count} characters."); + Console.WriteLine("{1}{0}{2}{0}{3}{0}", Environment.NewLine, br1, br2, str); + Console.Write($"A character in '{target}' occurs at position: "); - at = str.LastIndexOfAny(anyOf, start, count); - if (at > -1) - Console.Write(at); - else - Console.Write("(not found)"); - Console.Write("{0}{0}{0}", Environment.NewLine); + at = str.LastIndexOfAny(anyOf, start, count); + if (at > -1) + Console.Write(at); + else + Console.Write("(not found)"); + Console.Write("{0}{0}{0}", Environment.NewLine); } } /* @@ -37,4 +39,4 @@ public static void Main() { A character in 'aid' occurs at position: 27 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Length/length.cs b/snippets/csharp/System/String/Length/length.cs index 943ec2dc761..f5b68edd556 100644 --- a/snippets/csharp/System/String/Length/length.cs +++ b/snippets/csharp/System/String/Length/length.cs @@ -6,11 +6,11 @@ public static void Main() { // string str = "abcdefg"; - Console.WriteLine("1) The length of '{0}' is {1}", str, str.Length); - Console.WriteLine("2) The length of '{0}' is {1}", "xyz", "xyz".Length); + Console.WriteLine($"1) The length of '{str}' is {str.Length}"); + Console.WriteLine($"2) The length of '{"xyz"}' is {"xyz".Length}"); int length = str.Length; - Console.WriteLine("3) The length of '{0}' is {1}", str, length); + Console.WriteLine($"3) The length of '{str}' is {length}"); // This example displays the following output: // 1) The length of 'abcdefg' is 7 diff --git a/snippets/csharp/System/String/Overview/System.String.Class.cs b/snippets/csharp/System/String/Overview/System.String.Class.cs index d45e146c43a..6b311953a7d 100644 --- a/snippets/csharp/System/String/Overview/System.String.Class.cs +++ b/snippets/csharp/System/String/Overview/System.String.Class.cs @@ -1,13 +1,13 @@ using System; -using System.Text; + public class StringClassTest { - public static void Main() - { - // - string characters = "abc\u0000def"; - Console.WriteLine(characters.Length); // Displays 7 - // - } + public static void Main() + { + // + string characters = "abc\u0000def"; + Console.WriteLine(characters.Length); // Displays 7 + // + } } diff --git a/snippets/csharp/System/String/Overview/case1.cs b/snippets/csharp/System/String/Overview/case1.cs index 7bf03f61dbf..2e4209c1a86 100644 --- a/snippets/csharp/System/String/Overview/case1.cs +++ b/snippets/csharp/System/String/Overview/case1.cs @@ -5,51 +5,53 @@ public class Example { - public static void Main() - { - StreamWriter sw = new StreamWriter(@".\case.txt"); - string[] words = { "file", "sıfır", "Dženana" }; - CultureInfo[] cultures = { CultureInfo.InvariantCulture, - new CultureInfo("en-US"), - new CultureInfo("tr-TR") }; + public static void Main() + { + StreamWriter sw = new(@".\case.txt"); + string[] words = ["file", "sıfır", "Dženana"]; + CultureInfo[] cultures = [CultureInfo.InvariantCulture, + new CultureInfo("en-US"), + new CultureInfo("tr-TR")]; - foreach (var word in words) { - sw.WriteLine("{0}:", word); - foreach (var culture in cultures) { - string name = String.IsNullOrEmpty(culture.Name) ? - "Invariant" : culture.Name; - string upperWord = word.ToUpper(culture); - sw.WriteLine(" {0,10}: {1,7} {2, 38}", name, - upperWord, ShowHexValue(upperWord)); - } - sw.WriteLine(); - } - sw.Close(); - } + foreach (string word in words) + { + sw.WriteLine($"{word}:"); + foreach (var culture in cultures) + { + string name = string.IsNullOrEmpty(culture.Name) ? + "Invariant" : culture.Name; + string upperWord = word.ToUpper(culture); + sw.WriteLine($" {name,10}: {upperWord,7} {ShowHexValue(upperWord),38}"); + } + sw.WriteLine(); + } + sw.Close(); + } - private static string ShowHexValue(string s) - { - string retval = null; - foreach (var ch in s) { - byte[] bytes = BitConverter.GetBytes(ch); - retval += String.Format("{0:X2} {1:X2} ", bytes[1], bytes[0]); - } - return retval; - } + private static string ShowHexValue(string s) + { + string retval = null; + foreach (char ch in s) + { + byte[] bytes = BitConverter.GetBytes(ch); + retval += $"{bytes[1]:X2} {bytes[0]:X2} "; + } + return retval; + } } // The example displays the following output: // file: -// Invariant: FILE 00 46 00 49 00 4C 00 45 -// en-US: FILE 00 46 00 49 00 4C 00 45 -// tr-TR: FİLE 00 46 01 30 00 4C 00 45 -// +// Invariant: FILE 00 46 00 49 00 4C 00 45 +// en-US: FILE 00 46 00 49 00 4C 00 45 +// tr-TR: FİLE 00 46 01 30 00 4C 00 45 +// // sıfır: -// Invariant: SıFıR 00 53 01 31 00 46 01 31 00 52 -// en-US: SIFIR 00 53 00 49 00 46 00 49 00 52 -// tr-TR: SIFIR 00 53 00 49 00 46 00 49 00 52 -// +// Invariant: SıFıR 00 53 01 31 00 46 01 31 00 52 +// en-US: SIFIR 00 53 00 49 00 46 00 49 00 52 +// tr-TR: SIFIR 00 53 00 49 00 46 00 49 00 52 +// // Dženana: -// Invariant: DžENANA 01 C5 00 45 00 4E 00 41 00 4E 00 41 -// en-US: DŽENANA 01 C4 00 45 00 4E 00 41 00 4E 00 41 -// tr-TR: DŽENANA 01 C4 00 45 00 4E 00 41 00 4E 00 41 -// +// Invariant: DžENANA 01 C5 00 45 00 4E 00 41 00 4E 00 41 +// en-US: DŽENANA 01 C4 00 45 00 4E 00 41 00 4E 00 41 +// tr-TR: DŽENANA 01 C4 00 45 00 4E 00 41 00 4E 00 41 +// diff --git a/snippets/csharp/System/String/Overview/case2.cs b/snippets/csharp/System/String/Overview/case2.cs index 5e76ba4ba2a..a49b104aec7 100644 --- a/snippets/csharp/System/String/Overview/case2.cs +++ b/snippets/csharp/System/String/Overview/case2.cs @@ -5,38 +5,35 @@ public class Example { - const string disallowed = "file"; - - public static void Main() - { - IsAccessAllowed(@"FILE:\\\c:\users\user001\documents\FinancialInfo.txt"); - } + const string disallowed = "file"; - private static void IsAccessAllowed(String resource) - { - CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), - CultureInfo.CreateSpecificCulture("tr-TR") }; - String scheme = null; - int index = resource.IndexOfAny( new Char[] { '\\', '/' } ); - if (index > 0) - scheme = resource.Substring(0, index - 1); + public static void Main() => IsAccessAllowed(@"FILE:\\\c:\users\user001\documents\FinancialInfo.txt"); - // Change the current culture and perform the comparison. - foreach (var culture in cultures) { - Thread.CurrentThread.CurrentCulture = culture; - Console.WriteLine("Culture: {0}", CultureInfo.CurrentCulture.DisplayName); - Console.WriteLine(resource); - Console.WriteLine("Access allowed: {0}", - ! String.Equals(disallowed, scheme, StringComparison.CurrentCultureIgnoreCase)); - Console.WriteLine(); - } - } + private static void IsAccessAllowed(string resource) + { + CultureInfo[] cultures = [CultureInfo.CreateSpecificCulture("en-US"), + CultureInfo.CreateSpecificCulture("tr-TR")]; + string scheme = null; + int index = resource.IndexOfAny(['\\', '/']); + if (index > 0) + scheme = resource.Substring(0, index - 1); + + // Change the current culture and perform the comparison. + foreach (var culture in cultures) + { + Thread.CurrentThread.CurrentCulture = culture; + Console.WriteLine($"Culture: {CultureInfo.CurrentCulture.DisplayName}"); + Console.WriteLine(resource); + Console.WriteLine($"Access allowed: {!string.Equals(disallowed, scheme, StringComparison.CurrentCultureIgnoreCase)}"); + Console.WriteLine(); + } + } } // The example displays the following output: // Culture: English (United States) // FILE:\\\c:\users\user001\documents\FinancialInfo.txt // Access allowed: False -// +// // Culture: Turkish (Turkey) // FILE:\\\c:\users\user001\documents\FinancialInfo.txt // Access allowed: True diff --git a/snippets/csharp/System/String/Overview/compare11.cs b/snippets/csharp/System/String/Overview/compare11.cs index 6ad8377992b..6408bca1b84 100644 --- a/snippets/csharp/System/String/Overview/compare11.cs +++ b/snippets/csharp/System/String/Overview/compare11.cs @@ -5,12 +5,12 @@ public class Example { - public static void Main() - { - Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US"); - Console.WriteLine(String.Compare("A", "a", StringComparison.CurrentCulture)); - Console.WriteLine(String.Compare("A", "a", StringComparison.Ordinal)); - } + public static void Main() + { + Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US"); + Console.WriteLine(string.Compare("A", "a", StringComparison.CurrentCulture)); + Console.WriteLine(string.Compare("A", "a", StringComparison.Ordinal)); + } } // The example displays the following output: // 1 diff --git a/snippets/csharp/System/String/Overview/compare2.cs b/snippets/csharp/System/String/Overview/compare2.cs index 6a622fd7cf3..f224ef9fc8d 100644 --- a/snippets/csharp/System/String/Overview/compare2.cs +++ b/snippets/csharp/System/String/Overview/compare2.cs @@ -1,62 +1,55 @@ // using System; -using System.Collections; + using System.Collections.Generic; using System.Globalization; - + public class Example { - public static void Main() - { - string[] strings = { "coop", "co-op", "cooperative", - "co\u00ADoperative", "cœur", "coeur" }; - - // Perform a word sort using the current (en-US) culture. - string[] current = new string[strings.Length]; - strings.CopyTo(current, 0); - Array.Sort(current, StringComparer.CurrentCulture); - - // Perform a word sort using the invariant culture. - string[] invariant = new string[strings.Length]; - strings.CopyTo(invariant, 0); - Array.Sort(invariant, StringComparer.InvariantCulture); - - // Perform an ordinal sort. - string[] ordinal = new string[strings.Length]; - strings.CopyTo(ordinal, 0); - Array.Sort(ordinal, StringComparer.Ordinal); - - // Perform a string sort using the current culture. - string[] stringSort = new string[strings.Length]; - strings.CopyTo(stringSort, 0); - Array.Sort(stringSort, new SCompare()); - - // Display array values - Console.WriteLine("{0,13} {1,13} {2,15} {3,13} {4,13}\n", - "Original", "Word Sort", "Invariant Word", - "Ordinal Sort", "String Sort"); - for (int ctr = 0; ctr < strings.Length; ctr++) - Console.WriteLine("{0,13} {1,13} {2,15} {3,13} {4,13}", - strings[ctr], current[ctr], invariant[ctr], - ordinal[ctr], stringSort[ctr] ); - } + public static void Main() + { + string[] strings = ["coop", "co-op", "cooperative", + "co\u00ADoperative", "cœur", "coeur"]; + + // Perform a word sort using the current (en-US) culture. + string[] current = new string[strings.Length]; + strings.CopyTo(current, 0); + Array.Sort(current, StringComparer.CurrentCulture); + + // Perform a word sort using the invariant culture. + string[] invariant = new string[strings.Length]; + strings.CopyTo(invariant, 0); + Array.Sort(invariant, StringComparer.InvariantCulture); + + // Perform an ordinal sort. + string[] ordinal = new string[strings.Length]; + strings.CopyTo(ordinal, 0); + Array.Sort(ordinal, StringComparer.Ordinal); + + // Perform a string sort using the current culture. + string[] stringSort = new string[strings.Length]; + strings.CopyTo(stringSort, 0); + Array.Sort(stringSort, new SCompare()); + + // Display array values + Console.WriteLine($"{"Original",13} {"Word Sort",13} {"Invariant Word",15} {"Ordinal Sort",13} {"String Sort",13}\n"); + for (int ctr = 0; ctr < strings.Length; ctr++) + Console.WriteLine($"{strings[ctr],13} {current[ctr],13} {invariant[ctr],15} {ordinal[ctr],13} {stringSort[ctr],13}"); + } } // IComparer implementation to perform string sort. -internal class SCompare : IComparer +internal class SCompare : IComparer { - public int Compare(string x, string y) - { - return CultureInfo.CurrentCulture.CompareInfo.Compare(x, y, CompareOptions.StringSort); - } + public int Compare(string x, string y) => CultureInfo.CurrentCulture.CompareInfo.Compare(x, y, CompareOptions.StringSort); } // The example displays the following output: // Original Word Sort Invariant Word Ordinal Sort String Sort -// +// // coop cœur cœur co-op co-op // co-op coeur coeur coeur cœur // cooperative coop coop coop coeur // co­operative co-op co-op cooperative coop // cœur cooperative cooperative co­operative cooperative // coeur co­operative co­operative cœur co­operative -// +// diff --git a/snippets/csharp/System/String/Overview/compare3.cs b/snippets/csharp/System/String/Overview/compare3.cs index f09b00e6399..e8e916ed258 100644 --- a/snippets/csharp/System/String/Overview/compare3.cs +++ b/snippets/csharp/System/String/Overview/compare3.cs @@ -3,39 +3,37 @@ public class Example { - public static void Main() - { - // Search for "oe" and "œu" in "œufs" and "oeufs". - string s1 = "œufs"; - string s2 = "oeufs"; - FindInString(s1, "oe", StringComparison.CurrentCulture); - FindInString(s1, "oe", StringComparison.Ordinal); - FindInString(s2, "œu", StringComparison.CurrentCulture); - FindInString(s2, "œu", StringComparison.Ordinal); - Console.WriteLine(); - - string s3 = "co\u00ADoperative"; - FindInString(s3, "\u00AD", StringComparison.CurrentCulture); - FindInString(s3, "\u00AD", StringComparison.Ordinal); - } + public static void Main() + { + // Search for "oe" and "œu" in "œufs" and "oeufs". + string s1 = "œufs"; + string s2 = "oeufs"; + FindInString(s1, "oe", StringComparison.CurrentCulture); + FindInString(s1, "oe", StringComparison.Ordinal); + FindInString(s2, "œu", StringComparison.CurrentCulture); + FindInString(s2, "œu", StringComparison.Ordinal); + Console.WriteLine(); - private static void FindInString(string s, string substring, StringComparison options) - { - int result = s.IndexOf(substring, options); - if (result != -1) - Console.WriteLine("'{0}' found in {1} at position {2}", - substring, s, result); - else - Console.WriteLine("'{0}' not found in {1}", - substring, s); - } + string s3 = "co\u00ADoperative"; + FindInString(s3, "\u00AD", StringComparison.CurrentCulture); + FindInString(s3, "\u00AD", StringComparison.Ordinal); + } + + private static void FindInString(string s, string substring, StringComparison options) + { + int result = s.IndexOf(substring, options); + if (result != -1) + Console.WriteLine($"'{substring}' found in {s} at position {result}"); + else + Console.WriteLine($"'{substring}' not found in {s}"); + } } // The example displays the following output: // 'oe' found in œufs at position 0 // 'oe' not found in œufs // 'œu' found in oeufs at position 0 // 'œu' not found in oeufs -// +// // '­' found in co­operative at position 0 // '­' found in co­operative at position 2 // diff --git a/snippets/csharp/System/String/Overview/compare4.cs b/snippets/csharp/System/String/Overview/compare4.cs index eb56bef05bc..56fa038fe9c 100644 --- a/snippets/csharp/System/String/Overview/compare4.cs +++ b/snippets/csharp/System/String/Overview/compare4.cs @@ -5,49 +5,39 @@ public class CompareStringSample { - public static void Main() - { - string str1 = "Apple"; - string str2 = "Æble"; - string str3 = "AEble"; - - // Set the current culture to Danish in Denmark. - Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK"); - Console.WriteLine("Current culture: {0}", - CultureInfo.CurrentCulture.Name); - Console.WriteLine("Comparison of {0} with {1}: {2}", - str1, str2, String.Compare(str1, str2)); - Console.WriteLine("Comparison of {0} with {1}: {2}\n", - str2, str3, String.Compare(str2, str3)); - - // Set the current culture to English in the U.S. - Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); - Console.WriteLine("Current culture: {0}", - CultureInfo.CurrentCulture.Name); - Console.WriteLine("Comparison of {0} with {1}: {2}", - str1, str2, String.Compare(str1, str2)); - Console.WriteLine("Comparison of {0} with {1}: {2}\n", - str2, str3, String.Compare(str2, str3)); - - // Perform an ordinal comparison. - Console.WriteLine("Ordinal comparison"); - Console.WriteLine("Comparison of {0} with {1}: {2}", - str1, str2, - String.Compare(str1, str2, StringComparison.Ordinal)); - Console.WriteLine("Comparison of {0} with {1}: {2}", - str2, str3, - String.Compare(str2, str3, StringComparison.Ordinal)); - } + public static void Main() + { + string str1 = "Apple"; + string str2 = "Æble"; + string str3 = "AEble"; + + // Set the current culture to Danish in Denmark. + Thread.CurrentThread.CurrentCulture = new("da-DK"); + Console.WriteLine($"Current culture: {CultureInfo.CurrentCulture.Name}"); + Console.WriteLine($"Comparison of {str1} with {str2}: {string.Compare(str1, str2)}"); + Console.WriteLine($"Comparison of {str2} with {str3}: {string.Compare(str2, str3)}\n"); + + // Set the current culture to English in the U.S. + Thread.CurrentThread.CurrentCulture = new("en-US"); + Console.WriteLine($"Current culture: {CultureInfo.CurrentCulture.Name}"); + Console.WriteLine($"Comparison of {str1} with {str2}: {string.Compare(str1, str2)}"); + Console.WriteLine($"Comparison of {str2} with {str3}: {string.Compare(str2, str3)}\n"); + + // Perform an ordinal comparison. + Console.WriteLine("Ordinal comparison"); + Console.WriteLine($"Comparison of {str1} with {str2}: {string.Compare(str1, str2, StringComparison.Ordinal)}"); + Console.WriteLine($"Comparison of {str2} with {str3}: {string.Compare(str2, str3, StringComparison.Ordinal)}"); + } } // The example displays the following output: // Current culture: da-DK // Comparison of Apple with Æble: -1 // Comparison of Æble with AEble: 1 -// +// // Current culture: en-US // Comparison of Apple with Æble: 1 // Comparison of Æble with AEble: 0 -// +// // Ordinal comparison // Comparison of Apple with Æble: -133 // Comparison of Æble with AEble: 133 diff --git a/snippets/csharp/System/String/Overview/equality1.cs b/snippets/csharp/System/String/Overview/equality1.cs index 7f8cf23fca1..aaa04d4b042 100644 --- a/snippets/csharp/System/String/Overview/equality1.cs +++ b/snippets/csharp/System/String/Overview/equality1.cs @@ -5,38 +5,38 @@ public class Example { - public static void Main() - { - Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("tr-TR"); + public static void Main() + { + Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("tr-TR"); - string filePath = "file://c:/notes.txt"; - - Console.WriteLine("Culture-sensitive test for equality:"); - if (!TestForEquality(filePath, StringComparison.CurrentCultureIgnoreCase)) - Console.WriteLine("Access to {0} is allowed.", filePath); - else - Console.WriteLine("Access to {0} is not allowed.", filePath); - - Console.WriteLine("\nOrdinal test for equality:"); - if (!TestForEquality(filePath, StringComparison.OrdinalIgnoreCase)) - Console.WriteLine("Access to {0} is allowed.", filePath); - else - Console.WriteLine("Access to {0} is not allowed.", filePath); - } + string filePath = "file://c:/notes.txt"; - private static bool TestForEquality(string str, StringComparison cmp) - { - int position = str.IndexOf("://"); - if (position < 0) return false; + Console.WriteLine("Culture-sensitive test for equality:"); + if (!TestForEquality(filePath, StringComparison.CurrentCultureIgnoreCase)) + Console.WriteLine($"Access to {filePath} is allowed."); + else + Console.WriteLine($"Access to {filePath} is not allowed."); - string substring = str.Substring(0, position); - return substring.Equals("FILE", cmp); - } + Console.WriteLine("\nOrdinal test for equality:"); + if (!TestForEquality(filePath, StringComparison.OrdinalIgnoreCase)) + Console.WriteLine($"Access to {filePath} is allowed."); + else + Console.WriteLine($"Access to {filePath} is not allowed."); + } + + private static bool TestForEquality(string str, StringComparison cmp) + { + int position = str.IndexOf("://"); + if (position < 0) return false; + + string substring = str.Substring(0, position); + return substring.Equals("FILE", cmp); + } } // The example displays the following output: // Culture-sensitive test for equality: // Access to file://c:/notes.txt is allowed. -// +// // Ordinal test for equality: // Access to file://c:/notes.txt is not allowed. // diff --git a/snippets/csharp/System/String/Overview/format1.cs b/snippets/csharp/System/String/Overview/format1.cs index ad80b2938da..4c83842befc 100644 --- a/snippets/csharp/System/String/Overview/format1.cs +++ b/snippets/csharp/System/String/Overview/format1.cs @@ -4,18 +4,17 @@ public class Example { - public static void Main() - { - DateTime date = new DateTime(2011, 3, 1); - CultureInfo[] cultures = { CultureInfo.InvariantCulture, - new CultureInfo("en-US"), - new CultureInfo("fr-FR") }; + public static void Main() + { + DateTime date = new(2011, 3, 1); + CultureInfo[] cultures = [CultureInfo.InvariantCulture, + new CultureInfo("en-US"), + new CultureInfo("fr-FR")]; - foreach (var culture in cultures) - Console.WriteLine("{0,-12} {1}", String.IsNullOrEmpty(culture.Name) ? - "Invariant" : culture.Name, - date.ToString("d", culture)); - } + foreach (var culture in cultures) + Console.WriteLine($"{(string.IsNullOrEmpty(culture.Name) ? + "Invariant" : culture.Name),-12} {date.ToString("d", culture)}"); + } } // The example displays the following output: // Invariant 03/01/2011 diff --git a/snippets/csharp/System/String/Overview/grapheme1.cs b/snippets/csharp/System/String/Overview/grapheme1.cs index a4e04a0b855..75b13221c72 100644 --- a/snippets/csharp/System/String/Overview/grapheme1.cs +++ b/snippets/csharp/System/String/Overview/grapheme1.cs @@ -1,31 +1,28 @@ // using System; -using System.Globalization; + using System.IO; public class Example { - public static void Main() - { - StreamWriter sw = new StreamWriter(@".\graphemes.txt"); - string grapheme = "\u0061\u0308"; - sw.WriteLine(grapheme); - - string singleChar = "\u00e4"; - sw.WriteLine(singleChar); - - sw.WriteLine("{0} = {1} (Culture-sensitive): {2}", grapheme, singleChar, - String.Equals(grapheme, singleChar, - StringComparison.CurrentCulture)); - sw.WriteLine("{0} = {1} (Ordinal): {2}", grapheme, singleChar, - String.Equals(grapheme, singleChar, - StringComparison.Ordinal)); - sw.WriteLine("{0} = {1} (Normalized Ordinal): {2}", grapheme, singleChar, - String.Equals(grapheme.Normalize(), - singleChar.Normalize(), - StringComparison.Ordinal)); - sw.Close(); - } + public static void Main() + { + StreamWriter sw = new(@".\graphemes.txt"); + string grapheme = "\u0061\u0308"; + sw.WriteLine(grapheme); + + string singleChar = "\u00e4"; + sw.WriteLine(singleChar); + + sw.WriteLine($"{grapheme} = {singleChar} (Culture-sensitive): {string.Equals(grapheme, singleChar, + StringComparison.CurrentCulture)}"); + sw.WriteLine($"{grapheme} = {singleChar} (Ordinal): {string.Equals(grapheme, singleChar, + StringComparison.Ordinal)}"); + sw.WriteLine($"{grapheme} = {singleChar} (Normalized Ordinal): {string.Equals(grapheme.Normalize(), + singleChar.Normalize(), + StringComparison.Ordinal)}"); + sw.Close(); + } } // The example produces the following output: // ä diff --git a/snippets/csharp/System/String/Overview/immutable.cs b/snippets/csharp/System/String/Overview/immutable.cs index 571d9fd093d..9f99dd02d10 100644 --- a/snippets/csharp/System/String/Overview/immutable.cs +++ b/snippets/csharp/System/String/Overview/immutable.cs @@ -5,21 +5,22 @@ public class Example { - public static void Main() - { - Random rnd = new Random(); - - string str = String.Empty; - StreamWriter sw = new StreamWriter(@".\StringFile.txt", - false, Encoding.Unicode); + public static void Main() + { + Random rnd = new(); - for (int ctr = 0; ctr <= 1000; ctr++) { - str += (char)rnd.Next(1, 0x0530); - if (str.Length % 60 == 0) - str += Environment.NewLine; - } - sw.Write(str); - sw.Close(); - } + string str = string.Empty; + StreamWriter sw = new(@".\StringFile.txt", + false, Encoding.Unicode); + + for (int ctr = 0; ctr <= 1000; ctr++) + { + str += (char)rnd.Next(1, 0x0530); + if (str.Length % 60 == 0) + str += Environment.NewLine; + } + sw.Write(str); + sw.Close(); + } } // diff --git a/snippets/csharp/System/String/Overview/immutable1.cs b/snippets/csharp/System/String/Overview/immutable1.cs index 7acce8bd779..707334e238e 100644 --- a/snippets/csharp/System/String/Overview/immutable1.cs +++ b/snippets/csharp/System/String/Overview/immutable1.cs @@ -5,20 +5,21 @@ public class Example { - public static void Main() - { - Random rnd = new Random(); - StringBuilder sb = new StringBuilder(); - StreamWriter sw = new StreamWriter(@".\StringFile.txt", - false, Encoding.Unicode); + public static void Main() + { + Random rnd = new(); + StringBuilder sb = new(); + StreamWriter sw = new(@".\StringFile.txt", + false, Encoding.Unicode); - for (int ctr = 0; ctr <= 1000; ctr++) { - sb.Append((char)rnd.Next(1, 0x0530)); - if (sb.Length % 60 == 0) - sb.AppendLine(); - } - sw.Write(sb.ToString()); - sw.Close(); - } + for (int ctr = 0; ctr <= 1000; ctr++) + { + sb.Append((char)rnd.Next(1, 0x0530)); + if (sb.Length % 60 == 0) + sb.AppendLine(); + } + sw.Write(sb); + sw.Close(); + } } // diff --git a/snippets/csharp/System/String/Overview/index11.cs b/snippets/csharp/System/String/Overview/index11.cs index ef64e09c306..21a336bf445 100644 --- a/snippets/csharp/System/String/Overview/index11.cs +++ b/snippets/csharp/System/String/Overview/index11.cs @@ -2,23 +2,23 @@ public class Example { - public static void Main() - { - // - string s1 = "This string consists of a single short sentence."; - int nWords = 0; + public static void Main() + { + // + string s1 = "This string consists of a single short sentence."; + int nWords = 0; - s1 = s1.Trim(); - for (int ctr = 0; ctr < s1.Length; ctr++) { - if (Char.IsPunctuation(s1[ctr]) | Char.IsWhiteSpace(s1[ctr])) - nWords++; - } - Console.WriteLine("The sentence\n {0}\nhas {1} words.", - s1, nWords); - // The example displays the following output: - // The sentence - // This string consists of a single short sentence. - // has 8 words. - // - } + s1 = s1.Trim(); + for (int ctr = 0; ctr < s1.Length; ctr++) + { + if (char.IsPunctuation(s1[ctr]) || char.IsWhiteSpace(s1[ctr])) + nWords++; + } + Console.WriteLine($"The sentence\n {s1}\nhas {nWords} words."); + // The example displays the following output: + // The sentence + // This string consists of a single short sentence. + // has 8 words. + // + } } diff --git a/snippets/csharp/System/String/Overview/index2.cs b/snippets/csharp/System/String/Overview/index2.cs index a34063b02e4..1e5633c01a7 100644 --- a/snippets/csharp/System/String/Overview/index2.cs +++ b/snippets/csharp/System/String/Overview/index2.cs @@ -2,23 +2,23 @@ public class Example { - public static void Main() - { - // - string s1 = "This string consists of a single short sentence."; - int nWords = 0; + public static void Main() + { + // + string s1 = "This string consists of a single short sentence."; + int nWords = 0; - s1 = s1.Trim(); - foreach (var ch in s1) { - if (Char.IsPunctuation(ch) | Char.IsWhiteSpace(ch)) - nWords++; - } - Console.WriteLine("The sentence\n {0}\nhas {1} words.", - s1, nWords); - // The example displays the following output: - // The sentence - // This string consists of a single short sentence. - // has 8 words. - // - } + s1 = s1.Trim(); + foreach (char ch in s1) + { + if (char.IsPunctuation(ch) || char.IsWhiteSpace(ch)) + nWords++; + } + Console.WriteLine($"The sentence\n {s1}\nhas {nWords} words."); + // The example displays the following output: + // The sentence + // This string consists of a single short sentence. + // has 8 words. + // + } } diff --git a/snippets/csharp/System/String/Overview/index3.cs b/snippets/csharp/System/String/Overview/index3.cs index e19fee09d03..dffa7527192 100644 --- a/snippets/csharp/System/String/Overview/index3.cs +++ b/snippets/csharp/System/String/Overview/index3.cs @@ -3,74 +3,78 @@ public class Example { - public static void Main() - { - // - // First sentence of The Mystery of the Yellow Room, by Leroux. - string opening = "Ce n'est pas sans une certaine émotion que "+ - "je commence à raconter ici les aventures " + - "extraordinaires de Joseph Rouletabille."; - // Character counters. - int nChars = 0; - // Objects to store word count. - List chars = new List(); - List elements = new List(); - - foreach (var ch in opening) { - // Skip the ' character. - if (ch == '\u0027') continue; - - if (Char.IsWhiteSpace(ch) | (Char.IsPunctuation(ch))) { - chars.Add(nChars); - nChars = 0; - } - else { - nChars++; - } - } + public static void Main() + { + // + // First sentence of The Mystery of the Yellow Room, by Leroux. + string opening = "Ce n'est pas sans une certaine émotion que " + + "je commence à raconter ici les aventures " + + "extraordinaires de Joseph Rouletabille."; + // Character counters. + int nChars = 0; + // Objects to store word count. + List chars = new(); + List elements = new(); - System.Globalization.TextElementEnumerator te = - System.Globalization.StringInfo.GetTextElementEnumerator(opening); - while (te.MoveNext()) { - string s = te.GetTextElement(); - // Skip the ' character. - if (s == "\u0027") continue; - if ( String.IsNullOrEmpty(s.Trim()) | (s.Length == 1 && Char.IsPunctuation(Convert.ToChar(s)))) { - elements.Add(nChars); - nChars = 0; - } - else { - nChars++; - } - } + foreach (char ch in opening) + { + // Skip the ' character. + if (ch == '\u0027') continue; - // Display character counts. - Console.WriteLine("{0,6} {1,20} {2,20}", - "Word #", "Char Objects", "Characters"); - for (int ctr = 0; ctr < chars.Count; ctr++) - Console.WriteLine("{0,6} {1,20} {2,20}", - ctr, chars[ctr], elements[ctr]); - // The example displays the following output: - // Word # Char Objects Characters - // 0 2 2 - // 1 4 4 - // 2 3 3 - // 3 4 4 - // 4 3 3 - // 5 8 8 - // 6 8 7 - // 7 3 3 - // 8 2 2 - // 9 8 8 - // 10 2 1 - // 11 8 8 - // 12 3 3 - // 13 3 3 - // 14 9 9 - // 15 15 15 - // 16 2 2 - // 17 6 6 - // 18 12 12 - // - } + if (char.IsWhiteSpace(ch) | (char.IsPunctuation(ch))) + { + chars.Add(nChars); + nChars = 0; + } + else + { + nChars++; + } + } + + System.Globalization.TextElementEnumerator te = + System.Globalization.StringInfo.GetTextElementEnumerator(opening); + while (te.MoveNext()) + { + string s = te.GetTextElement(); + // Skip the ' character. + if (s == "\u0027") continue; + if (string.IsNullOrEmpty(s.Trim()) | (s.Length == 1 && char.IsPunctuation(Convert.ToChar(s)))) + { + elements.Add(nChars); + nChars = 0; + } + else + { + nChars++; + } + } + + // Display character counts. + Console.WriteLine($"{"Word #",6} {"Char Objects",20} {"Characters",20}"); + for (int ctr = 0; ctr < chars.Count; ctr++) + Console.WriteLine($"{ctr,6} {chars[ctr],20} {elements[ctr],20}"); + // The example displays the following output: + // Word # Char Objects Characters + // 0 2 2 + // 1 4 4 + // 2 3 3 + // 3 4 4 + // 4 3 3 + // 5 8 8 + // 6 8 7 + // 7 3 3 + // 8 2 2 + // 9 8 8 + // 10 2 1 + // 11 8 8 + // 12 3 3 + // 13 3 3 + // 14 9 9 + // 15 15 15 + // 16 2 2 + // 17 6 6 + // 18 12 12 + // + } } diff --git a/snippets/csharp/System/String/Overview/normalize1.cs b/snippets/csharp/System/String/Overview/normalize1.cs index 6c17b6d3930..92746c3223f 100644 --- a/snippets/csharp/System/String/Overview/normalize1.cs +++ b/snippets/csharp/System/String/Overview/normalize1.cs @@ -1,92 +1,89 @@ // using System; -using System.Globalization; + using System.IO; using System.Text; public class Example { - private static StreamWriter sw; - - public static void Main() - { - sw = new StreamWriter(@".\TestNorm1.txt"); + private static StreamWriter sw; + + public static void Main() + { + sw = new(@".\TestNorm1.txt"); + + // Define three versions of the same word. + string s1 = "sống"; // create word with U+1ED1 + string s2 = "s\u00F4\u0301ng"; + string s3 = "so\u0302\u0301ng"; + + TestForEquality(s1, s2, s3); + sw.WriteLine(); - // Define three versions of the same word. - string s1 = "sống"; // create word with U+1ED1 - string s2 = "s\u00F4\u0301ng"; - string s3 = "so\u0302\u0301ng"; + // Normalize and compare strings using each normalization form. + foreach (string formName in Enum.GetNames(typeof(NormalizationForm))) + { + sw.WriteLine($"Normalization {formName}:\n"); + NormalizationForm nf = (NormalizationForm)Enum.Parse(typeof(NormalizationForm), formName); + string[] sn = NormalizeStrings(nf, s1, s2, s3); + TestForEquality(sn); + sw.WriteLine("\n"); + } - TestForEquality(s1, s2, s3); - sw.WriteLine(); + sw.Close(); + } - // Normalize and compare strings using each normalization form. - foreach (string formName in Enum.GetNames(typeof(NormalizationForm))) - { - sw.WriteLine("Normalization {0}:\n", formName); - NormalizationForm nf = (NormalizationForm) Enum.Parse(typeof(NormalizationForm), formName); - string[] sn = NormalizeStrings(nf, s1, s2, s3); - TestForEquality(sn); - sw.WriteLine("\n"); - } - - sw.Close(); - } + private static void TestForEquality(params string[] words) + { + for (int ctr = 0; ctr <= words.Length - 2; ctr++) + for (int ctr2 = ctr + 1; ctr2 <= words.Length - 1; ctr2++) + sw.WriteLine($"{words[ctr]} ({ShowBytes(words[ctr])}) = {words[ctr2]} ({ShowBytes(words[ctr2])}): {words[ctr].Equals(words[ctr2], StringComparison.Ordinal)}"); + } - private static void TestForEquality(params string[] words) - { - for (int ctr = 0; ctr <= words.Length - 2; ctr++) - for (int ctr2 = ctr + 1; ctr2 <= words.Length - 1; ctr2++) - sw.WriteLine("{0} ({1}) = {2} ({3}): {4}", - words[ctr], ShowBytes(words[ctr]), - words[ctr2], ShowBytes(words[ctr2]), - words[ctr].Equals(words[ctr2], StringComparison.Ordinal)); - } + private static string ShowBytes(string str) + { + string result = null; + foreach (char ch in str) + result += $"{(ushort)ch:X4} "; + return result.Trim(); + } - private static string ShowBytes(string str) - { - string result = null; - foreach (var ch in str) - result += $"{(ushort)ch:X4} "; - return result.Trim(); - } - - private static string[] NormalizeStrings(NormalizationForm nf, params string[] words) - { - for (int ctr = 0; ctr < words.Length; ctr++) - if (!words[ctr].IsNormalized(nf)) - words[ctr] = words[ctr].Normalize(nf); - return words; - } + private static string[] NormalizeStrings(NormalizationForm nf, params string[] words) + { + for (int ctr = 0; ctr < words.Length; ctr++) + if (!words[ctr].IsNormalized(nf)) + words[ctr] = words[ctr].Normalize(nf); + return words; + } } // The example displays the following output: // sống (0073 1ED1 006E 0067) = sống (0073 00F4 0301 006E 0067): False // sống (0073 1ED1 006E 0067) = sống (0073 006F 0302 0301 006E 0067): False // sống (0073 00F4 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): False -// +// // Normalization FormC: -// +// // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True -// -// +// +// // Normalization FormD: -// +// // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True -// -// +// +// // Normalization FormKC: -// +// // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True // sống (0073 1ED1 006E 0067) = sống (0073 1ED1 006E 0067): True -// -// +// +// // Normalization FormKD: -// +// // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True // sống (0073 006F 0302 0301 006E 0067) = sống (0073 006F 0302 0301 006E 0067): True diff --git a/snippets/csharp/System/String/Overview/nullorempty1.cs b/snippets/csharp/System/String/Overview/nullorempty1.cs index 51921237593..d4d5b07dcfb 100644 --- a/snippets/csharp/System/String/Overview/nullorempty1.cs +++ b/snippets/csharp/System/String/Overview/nullorempty1.cs @@ -3,78 +3,68 @@ public class Example { - public static void Main() - { - TestForIsNullOrEmpty(); - Console.WriteLine("-----"); - TestForIsNullOrEmptyOrWhitespaceOnly(); - } + public static void Main() + { + TestForIsNullOrEmpty(); + Console.WriteLine("-----"); + TestForIsNullOrEmptyOrWhitespaceOnly(); + } - private static void TestForIsNullOrEmpty() - { - string str = ""; - // - if (str == null || str.Equals(String.Empty)) - // - Console.WriteLine("Bad string!"); - else - Console.WriteLine("Good string!"); - } + private static void TestForIsNullOrEmpty() + { + string str = ""; + // + if (str == null || str.Equals(string.Empty)) + // + Console.WriteLine("Bad string!"); + else + Console.WriteLine("Good string!"); + } - private static void TestForIsNullOrEmptyOrWhitespaceOnly() - { - string str = null; - // - if (str == null || str.Equals(String.Empty) || str.Trim().Equals(String.Empty)) - // - Console.WriteLine("Bad string!"); - else - Console.WriteLine("Good string!"); - } + private static void TestForIsNullOrEmptyOrWhitespaceOnly() + { + string str = null; + // + if (str == null || str.Equals(string.Empty) || str.Trim().Equals(string.Empty)) + // + Console.WriteLine("Bad string!"); + else + Console.WriteLine("Good string!"); + } } -public class Temperature : IFormattable +public class Temperature : IFormattable { - double temp; - - public Temperature(double temp) - { - this.temp = temp; - } - - public override string ToString() - { - return this.ToString("G", CultureInfo.CurrentCulture); - } - - public string ToString(string format) - { - return this.ToString(format, CultureInfo.CurrentCulture); - } - - // - public string ToString(string format, IFormatProvider provider) - { - if (String.IsNullOrEmpty(format)) format = "G"; - if (provider == null) provider = CultureInfo.CurrentCulture; - - switch (format.ToUpperInvariant()) - { - // Return degrees in Celsius. - case "G": - case "C": - return temp.ToString("F2", provider) + "°C"; - // Return degrees in Fahrenheit. - case "F": - return (temp * 9 / 5 + 32).ToString("F2", provider) + "°F"; - // Return degrees in Kelvin. - case "K": - return (temp + 273.15).ToString(); - default: - throw new FormatException( - String.Format("The {0} format string is not supported.", - format)); - } - } - // -} \ No newline at end of file + double temp; + + public Temperature(double temp) => this.temp = temp; + + public override string ToString() => this.ToString("G", CultureInfo.CurrentCulture); + + public string ToString(string format) => this.ToString(format, CultureInfo.CurrentCulture); + + // + public string ToString(string format, IFormatProvider provider) + { + if (string.IsNullOrEmpty(format)) format = "G"; + if (provider == null) provider = CultureInfo.CurrentCulture; + + switch (format.ToUpperInvariant()) + { + // Return degrees in Celsius. + case "G": + case "C": + return temp.ToString("F2", provider) + "°C"; + // Return degrees in Fahrenheit. + case "F": + return (temp * 9 / 5 + 32).ToString("F2", provider) + "°F"; + // Return degrees in Kelvin. + case "K": + return (temp + 273.15).ToString(); + default: + throw new FormatException( + $"The {format} format string is not supported."); + } + } + // +} diff --git a/snippets/csharp/System/String/Overview/parse1.cs b/snippets/csharp/System/String/Overview/parse1.cs index 064e1283cf7..d82cc4e413d 100644 --- a/snippets/csharp/System/String/Overview/parse1.cs +++ b/snippets/csharp/System/String/Overview/parse1.cs @@ -4,26 +4,24 @@ public class Example { - public static void Main() - { - string dateString = "07/10/2011"; - CultureInfo[] cultures = { CultureInfo.InvariantCulture, - CultureInfo.CreateSpecificCulture("en-GB"), - CultureInfo.CreateSpecificCulture("en-US") }; - Console.WriteLine("{0,-12} {1,10} {2,8} {3,8}\n", "Date String", "Culture", - "Month", "Day"); - foreach (var culture in cultures) { - DateTime date = DateTime.Parse(dateString, culture); - Console.WriteLine("{0,-12} {1,10} {2,8} {3,8}", dateString, - String.IsNullOrEmpty(culture.Name) ? - "Invariant" : culture.Name, - date.Month, date.Day); - } - } + public static void Main() + { + string dateString = "07/10/2011"; + CultureInfo[] cultures = [CultureInfo.InvariantCulture, + CultureInfo.CreateSpecificCulture("en-GB"), + CultureInfo.CreateSpecificCulture("en-US")]; + Console.WriteLine($"{"Date String",-12} {"Culture",10} {"Month",8} {"Day",8}\n"); + foreach (var culture in cultures) + { + DateTime date = DateTime.Parse(dateString, culture); + Console.WriteLine($"{dateString,-12} {(string.IsNullOrEmpty(culture.Name) ? + "Invariant" : culture.Name),10} {date.Month,8} {date.Day,8}"); + } + } } // The example displays the following output: // Date String Culture Month Day -// +// // 07/10/2011 Invariant 7 10 // 07/10/2011 en-GB 10 7 // 07/10/2011 en-US 7 10 diff --git a/snippets/csharp/System/String/Overview/program.cs b/snippets/csharp/System/String/Overview/program.cs index 57ca343b1e4..d8339b3eda1 100644 --- a/snippets/csharp/System/String/Overview/program.cs +++ b/snippets/csharp/System/String/Overview/program.cs @@ -2,113 +2,113 @@ public class Example { - public static void Main() - { - InstantiateByAssignment(); - Console.WriteLine("-----"); - CallConstructors(); - Console.WriteLine("-----"); - Concatenate(); - Console.WriteLine("-----"); - ExtractString(); - Console.WriteLine("-----"); - Formatting(); - } + public static void Main() + { + InstantiateByAssignment(); + Console.WriteLine("-----"); + CallConstructors(); + Console.WriteLine("-----"); + Concatenate(); + Console.WriteLine("-----"); + ExtractString(); + Console.WriteLine("-----"); + Formatting(); + } - private static void InstantiateByAssignment() - { - // - string string1 = "This is a string created by assignment."; - Console.WriteLine(string1); - string string2a = "The path is C:\\PublicDocuments\\Report1.doc"; - Console.WriteLine(string2a); - string string2b = @"The path is C:\PublicDocuments\Report1.doc"; - Console.WriteLine(string2b); - // The example displays the following output: - // This is a string created by assignment. - // The path is C:\PublicDocuments\Report1.doc - // The path is C:\PublicDocuments\Report1.doc - // - } + private static void InstantiateByAssignment() + { + // + string string1 = "This is a string created by assignment."; + Console.WriteLine(string1); + string string2a = "The path is C:\\PublicDocuments\\Report1.doc"; + Console.WriteLine(string2a); + string string2b = @"The path is C:\PublicDocuments\Report1.doc"; + Console.WriteLine(string2b); + // The example displays the following output: + // This is a string created by assignment. + // The path is C:\PublicDocuments\Report1.doc + // The path is C:\PublicDocuments\Report1.doc + // + } - private static void CallConstructors() - { - // - char[] chars = { 'w', 'o', 'r', 'd' }; - sbyte[] bytes = { 0x41, 0x42, 0x43, 0x44, 0x45, 0x00 }; + private static void CallConstructors() + { + // + char[] chars = ['w', 'o', 'r', 'd']; + sbyte[] bytes = [0x41, 0x42, 0x43, 0x44, 0x45, 0x00]; - // Create a string from a character array. - string string1 = new string(chars); - Console.WriteLine(string1); + // Create a string from a character array. + string string1 = new(chars); + Console.WriteLine(string1); - // Create a string that consists of a character repeated 20 times. - string string2 = new string('c', 20); - Console.WriteLine(string2); + // Create a string that consists of a character repeated 20 times. + string string2 = new('c', 20); + Console.WriteLine(string2); - string stringFromBytes = null; - string stringFromChars = null; - unsafe - { - fixed (sbyte* pbytes = bytes) - { - // Create a string from a pointer to a signed byte array. - stringFromBytes = new string(pbytes); - } - fixed (char* pchars = chars) - { - // Create a string from a pointer to a character array. - stringFromChars = new string(pchars); - } - } - Console.WriteLine(stringFromBytes); - Console.WriteLine(stringFromChars); - // The example displays the following output: - // word - // cccccccccccccccccccc - // ABCDE - // word - // - } + string stringFromBytes = null; + string stringFromChars = null; + unsafe + { + fixed (sbyte* pbytes = bytes) + { + // Create a string from a pointer to a signed byte array. + stringFromBytes = new(pbytes); + } + fixed (char* pchars = chars) + { + // Create a string from a pointer to a character array. + stringFromChars = new(pchars); + } + } + Console.WriteLine(stringFromBytes); + Console.WriteLine(stringFromChars); + // The example displays the following output: + // word + // cccccccccccccccccccc + // ABCDE + // word + // + } - private static void Concatenate() - { - // - string string1 = "Today is " + DateTime.Now.ToString("D") + "."; - Console.WriteLine(string1); + private static void Concatenate() + { + // + string string1 = $"Today is {DateTime.Now:D}."; + Console.WriteLine(string1); - string string2 = "This is one sentence. " + "This is a second. "; - string2 += "This is a third sentence."; - Console.WriteLine(string2); - // The example displays output like the following: - // Today is Tuesday, July 06, 2011. - // This is one sentence. This is a second. This is a third sentence. - // - } + string string2 = "This is one sentence. " + "This is a second. "; + string2 += "This is a third sentence."; + Console.WriteLine(string2); + // The example displays output like the following: + // Today is Tuesday, July 06, 2011. + // This is one sentence. This is a second. This is a third sentence. + // + } - private static void ExtractString() - { - // - string sentence = "This sentence has five words."; - // Extract the second word. - int startPosition = sentence.IndexOf(" ") + 1; - string word2 = sentence.Substring(startPosition, - sentence.IndexOf(" ", startPosition) - startPosition); - Console.WriteLine("Second word: " + word2); - // The example displays the following output: - // Second word: sentence - // - } + private static void ExtractString() + { + // + string sentence = "This sentence has five words."; + // Extract the second word. + int startPosition = sentence.IndexOf(" ") + 1; + string word2 = sentence.Substring(startPosition, + sentence.IndexOf(" ", startPosition) - startPosition); + Console.WriteLine("Second word: " + word2); + // The example displays the following output: + // Second word: sentence + // + } - private static void Formatting() - { - // - DateTime dateAndTime = new DateTime(2011, 7, 6, 7, 32, 0); - double temperature = 68.3; - string result = String.Format("At {0:t} on {0:D}, the temperature was {1:F1} degrees Fahrenheit.", - dateAndTime, temperature); - Console.WriteLine(result); - // The example displays the following output: - // At 7:32 AM on Wednesday, July 06, 2011, the temperature was 68.3 degrees Fahrenheit. - // - } + private static void Formatting() + { + // + DateTime dateAndTime = new(2011, 7, 6, 7, 32, 0); + double temperature = 68.3; + string result = string.Format("At {0:t} on {0:D}, the temperature was {1:F1} degrees Fahrenheit.", + dateAndTime, temperature); + Console.WriteLine(result); + // The example displays the following output: + // At 7:32 AM on Wednesday, July 06, 2011, the temperature was 68.3 degrees Fahrenheit. + // + } } diff --git a/snippets/csharp/System/String/Overview/search1.cs b/snippets/csharp/System/String/Overview/search1.cs index f49f123d156..12585300030 100644 --- a/snippets/csharp/System/String/Overview/search1.cs +++ b/snippets/csharp/System/String/Overview/search1.cs @@ -4,24 +4,23 @@ public class Example { - public static void Main() - { - String[] cultureNames = { "da-DK", "en-US" }; - CompareInfo ci; - String str = "aerial"; - Char ch = 'æ'; // U+00E6 - - Console.Write("Ordinal comparison -- "); - Console.WriteLine("Position of '{0}' in {1}: {2}", ch, str, - str.IndexOf(ch)); - - foreach (var cultureName in cultureNames) { - ci = CultureInfo.CreateSpecificCulture(cultureName).CompareInfo; - Console.Write("{0} cultural comparison -- ", cultureName); - Console.WriteLine("Position of '{0}' in {1}: {2}", ch, str, - ci.IndexOf(str, ch)); - } - } + public static void Main() + { + string[] cultureNames = ["da-DK", "en-US"]; + CompareInfo ci; + string str = "aerial"; + char ch = 'æ'; // U+00E6 + + Console.Write("Ordinal comparison -- "); + Console.WriteLine($"Position of '{ch}' in {str}: {str.IndexOf(ch)}"); + + foreach (string cultureName in cultureNames) + { + ci = CultureInfo.CreateSpecificCulture(cultureName).CompareInfo; + Console.Write($"{cultureName} cultural comparison -- "); + Console.WriteLine($"Position of '{ch}' in {str}: {ci.IndexOf(str, ch)}"); + } + } } // The example displays the following output: // Ordinal comparison -- Position of 'æ' in aerial: -1 diff --git a/snippets/csharp/System/String/Overview/sort1.cs b/snippets/csharp/System/String/Overview/sort1.cs index d982852d438..1cd30508b14 100644 --- a/snippets/csharp/System/String/Overview/sort1.cs +++ b/snippets/csharp/System/String/Overview/sort1.cs @@ -1,44 +1,44 @@ // using System; -using System.Globalization; + using System.Threading; public class ArraySort { - public static void Main(String[] args) - { - // Create and initialize a new array to store the strings. - string[] stringArray = { "Apple", "Æble", "Zebra"}; + public static void Main(string[] args) + { + // Create and initialize a new array to store the strings. + string[] stringArray = ["Apple", "Æble", "Zebra"]; - // Display the values of the array. - Console.WriteLine( "The original string array:"); - PrintIndexAndValues(stringArray); + // Display the values of the array. + Console.WriteLine("The original string array:"); + PrintIndexAndValues(stringArray); - // Set the CurrentCulture to "en-US". - Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); - // Sort the values of the array. - Array.Sort(stringArray); + // Set the CurrentCulture to "en-US". + Thread.CurrentThread.CurrentCulture = new("en-US"); + // Sort the values of the array. + Array.Sort(stringArray); - // Display the values of the array. - Console.WriteLine("After sorting for the culture \"en-US\":"); - PrintIndexAndValues(stringArray); + // Display the values of the array. + Console.WriteLine("After sorting for the culture \"en-US\":"); + PrintIndexAndValues(stringArray); - // Set the CurrentCulture to "da-DK". - Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK"); - // Sort the values of the Array. - Array.Sort(stringArray); + // Set the CurrentCulture to "da-DK". + Thread.CurrentThread.CurrentCulture = new("da-DK"); + // Sort the values of the Array. + Array.Sort(stringArray); - // Display the values of the array. - Console.WriteLine("After sorting for the culture \"da-DK\":"); - PrintIndexAndValues(stringArray); - } - public static void PrintIndexAndValues(string[] myArray) - { - for (int i = myArray.GetLowerBound(0); i <= - myArray.GetUpperBound(0); i++ ) - Console.WriteLine("[{0}]: {1}", i, myArray[i]); - Console.WriteLine(); - } + // Display the values of the array. + Console.WriteLine("After sorting for the culture \"da-DK\":"); + PrintIndexAndValues(stringArray); + } + public static void PrintIndexAndValues(string[] myArray) + { + for (int i = myArray.GetLowerBound(0); i <= + myArray.GetUpperBound(0); i++) + Console.WriteLine($"[{i}]: {myArray[i]}"); + Console.WriteLine(); + } } // The example displays the following output: // The original string array: @@ -55,4 +55,4 @@ public static void PrintIndexAndValues(string[] myArray) // [0]: Apple // [1]: Zebra // [2]: Æble -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Overview/surrogate1.cs b/snippets/csharp/System/String/Overview/surrogate1.cs index 923b60e8845..87d973c2774 100644 --- a/snippets/csharp/System/String/Overview/surrogate1.cs +++ b/snippets/csharp/System/String/Overview/surrogate1.cs @@ -2,19 +2,18 @@ public class Example { - public static void Main() - { - // - string surrogate = "\uD800\uDC03"; - for (int ctr = 0; ctr < surrogate.Length; ctr++) - Console.Write($"U+{(ushort)surrogate[ctr]:X2} "); + public static void Main() + { + // + string surrogate = "\uD800\uDC03"; + for (int ctr = 0; ctr < surrogate.Length; ctr++) + Console.Write($"U+{(ushort)surrogate[ctr]:X2} "); - Console.WriteLine(); - Console.WriteLine(" Is Surrogate Pair: {0}", - Char.IsSurrogatePair(surrogate[0], surrogate[1])); - // The example displays the following output: - // U+D800 U+DC03 - // Is Surrogate Pair: True - // - } + Console.WriteLine(); + Console.WriteLine($" Is Surrogate Pair: {char.IsSurrogatePair(surrogate[0], surrogate[1])}"); + // The example displays the following output: + // U+D800 U+DC03 + // Is Surrogate Pair: True + // + } } diff --git a/snippets/csharp/System/String/PadLeft/Program.cs b/snippets/csharp/System/String/PadLeft/Program.cs new file mode 100644 index 00000000000..a95d98f8dd5 --- /dev/null +++ b/snippets/csharp/System/String/PadLeft/Program.cs @@ -0,0 +1,2 @@ +PadLeftWidthSample.Run(); +PadLeftCharacterSample.Run(); diff --git a/snippets/csharp/System/String/PadLeft/Project.csproj b/snippets/csharp/System/String/PadLeft/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/PadLeft/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/PadLeft/source.cs b/snippets/csharp/System/String/PadLeft/source.cs index 24438db7052..f84af9ba61c 100644 --- a/snippets/csharp/System/String/PadLeft/source.cs +++ b/snippets/csharp/System/String/PadLeft/source.cs @@ -1,13 +1,13 @@ using System; -public class Sample +public class PadLeftWidthSample { - public static void Main() + public static void Run() { - // - string str = "BBQ and Slaw"; - Console.WriteLine(str.PadLeft(15)); // Displays " BBQ and Slaw". - Console.WriteLine(str.PadLeft(5)); // Displays "BBQ and Slaw". - // + // + string str = "BBQ and Slaw"; + Console.WriteLine(str.PadLeft(15)); // Displays " BBQ and Slaw". + Console.WriteLine(str.PadLeft(5)); // Displays "BBQ and Slaw". + // } } diff --git a/snippets/csharp/System/String/PadLeft/source1.cs b/snippets/csharp/System/String/PadLeft/source1.cs index ad388a1e34a..3ccd13369ad 100644 --- a/snippets/csharp/System/String/PadLeft/source1.cs +++ b/snippets/csharp/System/String/PadLeft/source1.cs @@ -1,16 +1,16 @@ // using System; -class Sample +class PadLeftCharacterSample { - public static void Main() - { - string str = "forty-two"; - char pad = '.'; + public static void Run() + { + string str = "forty-two"; + char pad = '.'; - Console.WriteLine(str.PadLeft(15, pad)); - Console.WriteLine(str.PadLeft(2, pad)); - } + Console.WriteLine(str.PadLeft(15, pad)); + Console.WriteLine(str.PadLeft(2, pad)); + } } // The example displays the following output: // ......forty-two diff --git a/snippets/csharp/System/String/PadRight/Program.cs b/snippets/csharp/System/String/PadRight/Program.cs new file mode 100644 index 00000000000..aa9fc72f2f3 --- /dev/null +++ b/snippets/csharp/System/String/PadRight/Program.cs @@ -0,0 +1,2 @@ +PadRightWidthSample.Run(); +PadRightCharacterSample.Run(); diff --git a/snippets/csharp/System/String/PadRight/Project.csproj b/snippets/csharp/System/String/PadRight/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/PadRight/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/PadRight/source.cs b/snippets/csharp/System/String/PadRight/source.cs index 2af784dba15..8c69974086d 100644 --- a/snippets/csharp/System/String/PadRight/source.cs +++ b/snippets/csharp/System/String/PadRight/source.cs @@ -1,20 +1,20 @@ using System; -public class Sample +public class PadRightWidthSample { - public static void Main() - { - // - string str; - str = "BBQ and Slaw"; + public static void Run() + { + // + string str; + str = "BBQ and Slaw"; - Console.Write("|"); - Console.Write(str.PadRight(15)); - Console.WriteLine("|"); // Displays "|BBQ and Slaw |". + Console.Write("|"); + Console.Write(str.PadRight(15)); + Console.WriteLine("|"); // Displays "|BBQ and Slaw |". - Console.Write("|"); - Console.Write(str.PadRight(5)); - Console.WriteLine("|"); // Displays "|BBQ and Slaw|". - // - } + Console.Write("|"); + Console.Write(str.PadRight(5)); + Console.WriteLine("|"); // Displays "|BBQ and Slaw|". + // + } } diff --git a/snippets/csharp/System/String/PadRight/source1.cs b/snippets/csharp/System/String/PadRight/source1.cs index 5f7e6aea9e3..39bcafdaec1 100644 --- a/snippets/csharp/System/String/PadRight/source1.cs +++ b/snippets/csharp/System/String/PadRight/source1.cs @@ -1,15 +1,15 @@ using System; -public class Sample +public class PadRightCharacterSample { - public static void Main() - { - // - string str = "forty-two"; - char pad = '.'; + public static void Run() + { + // + string str = "forty-two"; + char pad = '.'; - Console.WriteLine(str.PadRight(15, pad)); // Displays "forty-two......". - Console.WriteLine(str.PadRight(2, pad)); // Displays "forty-two". - // - } + Console.WriteLine(str.PadRight(15, pad)); // Displays "forty-two......". + Console.WriteLine(str.PadRight(2, pad)); // Displays "forty-two". + // + } } diff --git a/snippets/csharp/System/String/Remove/r.cs b/snippets/csharp/System/String/Remove/r.cs index 6d369b951c0..db2a7d0f085 100644 --- a/snippets/csharp/System/String/Remove/r.cs +++ b/snippets/csharp/System/String/Remove/r.cs @@ -9,9 +9,9 @@ public static void Main() string s = "abc---def"; Console.WriteLine("Index: 012345678"); - Console.WriteLine("1) {0}", s); - Console.WriteLine("2) {0}", s.Remove(3)); - Console.WriteLine("3) {0}", s.Remove(3, 3)); + Console.WriteLine($"1) {s}"); + Console.WriteLine($"2) {s.Remove(3)}"); + Console.WriteLine($"3) {s.Remove(3, 3)}"); } } /* diff --git a/snippets/csharp/System/String/Remove/stringremove.cs b/snippets/csharp/System/String/Remove/stringremove.cs index 303a5bebb35..fa953c02e32 100644 --- a/snippets/csharp/System/String/Remove/stringremove.cs +++ b/snippets/csharp/System/String/Remove/stringremove.cs @@ -8,7 +8,7 @@ public static void Main() string name = "Michelle Violet Banks"; - Console.WriteLine("The entire name is '{0}'", name); + Console.WriteLine($"The entire name is '{name}'"); // Remove the middle name, identified by finding the spaces in the name. int foundS1 = name.IndexOf(" "); @@ -18,7 +18,7 @@ public static void Main() { name = name.Remove(foundS1 + 1, foundS2 - foundS1); - Console.WriteLine("After removing the middle name, we are left with '{0}'", name); + Console.WriteLine($"After removing the middle name, we are left with '{name}'"); } } } diff --git a/snippets/csharp/System/String/Split/basic.cs b/snippets/csharp/System/String/Split/basic.cs index 351c75adca9..dc95e3c2c35 100644 --- a/snippets/csharp/System/String/Split/basic.cs +++ b/snippets/csharp/System/String/Split/basic.cs @@ -10,7 +10,7 @@ public static void Basic1() string s = "Today\tI'm going to school"; string[] subs = s.Split(' ', '\t'); - foreach (var sub in subs) + foreach (string sub in subs) { Console.WriteLine($"Substring: {sub}"); } diff --git a/snippets/csharp/System/String/Split/compiler-resolution.cs b/snippets/csharp/System/String/Split/compiler-resolution.cs index 8f5ba87d080..2b8497c4800 100644 --- a/snippets/csharp/System/String/Split/compiler-resolution.cs +++ b/snippets/csharp/System/String/Split/compiler-resolution.cs @@ -10,7 +10,7 @@ public static void Main6() string value = "This is a short string."; char delimiter = 's'; string[] substrings = value.Split(delimiter); - foreach (var substring in substrings) + foreach (string substring in substrings) Console.WriteLine(substring); // The example displays the following output: diff --git a/snippets/csharp/System/String/Split/intro.cs b/snippets/csharp/System/String/Split/intro.cs index f24bdbcfbd6..b8ad25f46b5 100644 --- a/snippets/csharp/System/String/Split/intro.cs +++ b/snippets/csharp/System/String/Split/intro.cs @@ -11,7 +11,7 @@ public static void Intro1() string[] subs = s.Split(' '); - foreach (var sub in subs) + foreach (string sub in subs) { Console.WriteLine($"Substring: {sub}"); } @@ -34,7 +34,7 @@ public static void Intro2() string[] subs = s.Split(' ', '.'); - foreach (var sub in subs) + foreach (string sub in subs) { Console.WriteLine($"Substring: {sub}"); } @@ -56,11 +56,11 @@ public static void Intro3() { // string s = "You win some. You lose some."; - char[] separators = new char[] { ' ', '.' }; + char[] separators = [' ', '.']; string[] subs = s.Split(separators, StringSplitOptions.RemoveEmptyEntries); - foreach (var sub in subs) + foreach (string sub in subs) { Console.WriteLine($"Substring: {sub}"); } diff --git a/snippets/csharp/System/String/Split/limit.cs b/snippets/csharp/System/String/Split/limit.cs index cbb0a8ad306..44327120100 100644 --- a/snippets/csharp/System/String/Split/limit.cs +++ b/snippets/csharp/System/String/Split/limit.cs @@ -1,4 +1,4 @@ -using System; + namespace Split { diff --git a/snippets/csharp/System/String/Split/options.cs b/snippets/csharp/System/String/Split/options.cs index 964ef4a990b..a499088860c 100644 --- a/snippets/csharp/System/String/Split/options.cs +++ b/snippets/csharp/System/String/Split/options.cs @@ -14,7 +14,7 @@ public static void Main3() Console.WriteLine("1) Split a string delimited by characters:\n"); string s1 = ",ONE,, TWO,, , THREE,,"; - char[] charSeparators = new char[] { ',' }; + char[] charSeparators = [',']; string[] result; Console.WriteLine($"The original string is: \"{s1}\"."); @@ -69,7 +69,7 @@ public static void Main3() "ONE[stop] [stop]" + "TWO [stop][stop] [stop]" + "THREE[stop][stop] "; - string[] stringSeparators = new string[] { "[stop]" }; + string[] stringSeparators = ["[stop]"]; Console.WriteLine($"The original string is: \"{s2}\"."); Console.WriteLine($"The delimiter string is: \"{stringSeparators[0]}\".\n"); @@ -212,7 +212,7 @@ public static void Main4() { // string source = "[stop]ONE[stop][stop]TWO[stop][stop][stop]THREE[stop][stop]"; - string[] stringSeparators = new string[] { "[stop]" }; + string[] stringSeparators = ["[stop]"]; string[] result; // Display the original string and delimiter string. @@ -227,7 +227,7 @@ public static void Main4() Console.Write(" "); foreach (string s in result) { - Console.Write("'{0}' ", String.IsNullOrEmpty(s) ? "<>" : s); + Console.Write($"'{(string.IsNullOrEmpty(s) ? "<>" : s)}' "); } Console.WriteLine(); Console.WriteLine(); @@ -238,7 +238,7 @@ public static void Main4() Console.Write(" "); foreach (string s in result) { - Console.Write("'{0}' ", String.IsNullOrEmpty(s) ? "<>" : s); + Console.Write($"'{(string.IsNullOrEmpty(s) ? "<>" : s)}' "); } Console.WriteLine(); @@ -260,10 +260,10 @@ public static void Main4() public static void Main2() { // - string[] separators = { ",", ".", "!", "?", ";", ":", " " }; + string[] separators = [",", ".", "!", "?", ";", ":", " "]; string value = "The handsome, energetic, young dog was playing with his smaller, more lethargic litter mate."; string[] words = value.Split(separators, StringSplitOptions.RemoveEmptyEntries); - foreach (var word in words) + foreach (string word in words) Console.WriteLine(word); // The example displays the following output: diff --git a/snippets/csharp/System/String/Split/program.cs b/snippets/csharp/System/String/Split/program.cs index a2a14e1af27..1880d18d1d2 100644 --- a/snippets/csharp/System/String/Split/program.cs +++ b/snippets/csharp/System/String/Split/program.cs @@ -1,8 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; + + + + + namespace Split { diff --git a/snippets/csharp/System/String/StartsWith/Program.cs b/snippets/csharp/System/String/StartsWith/Program.cs new file mode 100644 index 00000000000..5541cff96e7 --- /dev/null +++ b/snippets/csharp/System/String/StartsWith/Program.cs @@ -0,0 +1,4 @@ +StartsWithComparisonExample.Run(); +StartsWithInvariantExample.Run(); +StartsWithTagsExample.Run(); +Sample.Run(); diff --git a/snippets/csharp/System/String/StartsWith/Project.csproj b/snippets/csharp/System/String/StartsWith/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/StartsWith/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/StartsWith/StartsWith2.cs b/snippets/csharp/System/String/StartsWith/StartsWith2.cs index 2e3379063b0..08805e435dc 100644 --- a/snippets/csharp/System/String/StartsWith/StartsWith2.cs +++ b/snippets/csharp/System/String/StartsWith/StartsWith2.cs @@ -1,23 +1,19 @@ // using System; -public class Example +public class StartsWithInvariantExample { - public static void Main() - { - String title = "The House of the Seven Gables"; - String searchString = "the"; - StringComparison comparison = StringComparison.InvariantCulture; - Console.WriteLine("'{0}':", title); - Console.WriteLine(" Starts with '{0}' ({1:G} comparison): {2}", - searchString, comparison, - title.StartsWith(searchString, comparison)); + public static void Run() + { + string title = "The House of the Seven Gables"; + string searchString = "the"; + StringComparison comparison = StringComparison.InvariantCulture; + Console.WriteLine($"'{title}':"); + Console.WriteLine($" Starts with '{searchString}' ({comparison:G} comparison): {title.StartsWith(searchString, comparison)}"); - comparison = StringComparison.InvariantCultureIgnoreCase; - Console.WriteLine(" Starts with '{0}' ({1:G} comparison): {2}", - searchString, comparison, - title.StartsWith(searchString, comparison)); - } + comparison = StringComparison.InvariantCultureIgnoreCase; + Console.WriteLine($" Starts with '{searchString}' ({comparison:G} comparison): {title.StartsWith(searchString, comparison)}"); + } } // The example displays the following output: // 'The House of the Seven Gables': diff --git a/snippets/csharp/System/String/StartsWith/startswith1.cs b/snippets/csharp/System/String/StartsWith/startswith1.cs index ff9556bea64..e80576269b4 100644 --- a/snippets/csharp/System/String/StartsWith/startswith1.cs +++ b/snippets/csharp/System/String/StartsWith/startswith1.cs @@ -1,30 +1,27 @@ // using System; -public class Example +public class StartsWithComparisonExample { - public static void Main() - { - string[,] strings = { {"ABCdef", "abc" }, - {"ABCdef", "abc" }, + public static void Run() + { + string[,] strings = { {"ABCdef", "abc" }, + {"ABCdef", "abc" }, {"œil","oe" }, { "læring}", "lae" } }; - for (int ctr1 = strings.GetLowerBound(0); ctr1 <= strings.GetUpperBound(0); ctr1++) - { + for (int ctr1 = strings.GetLowerBound(0); ctr1 <= strings.GetUpperBound(0); ctr1++) + { foreach (string cmpName in Enum.GetNames(typeof(StringComparison))) - { - StringComparison strCmp = (StringComparison) Enum.Parse(typeof(StringComparison), - cmpName); - string instance = strings[ctr1, 0]; - string value = strings[ctr1, 1]; - Console.WriteLine("{0} starts with {1}: {2} ({3} comparison)", - instance, value, - instance.StartsWith(value, strCmp), - strCmp); + { + StringComparison strCmp = (StringComparison)Enum.Parse(typeof(StringComparison), + cmpName); + string instance = strings[ctr1, 0]; + string value = strings[ctr1, 1]; + Console.WriteLine($"{instance} starts with {value}: {instance.StartsWith(value, strCmp)} ({strCmp} comparison)"); } - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output: // ABCdef starts with abc: False (CurrentCulture comparison) @@ -33,25 +30,25 @@ public static void Main() // ABCdef starts with abc: True (InvariantCultureIgnoreCase comparison) // ABCdef starts with abc: False (Ordinal comparison) // ABCdef starts with abc: True (OrdinalIgnoreCase comparison) -// +// // ABCdef starts with abc: False (CurrentCulture comparison) // ABCdef starts with abc: True (CurrentCultureIgnoreCase comparison) // ABCdef starts with abc: False (InvariantCulture comparison) // ABCdef starts with abc: True (InvariantCultureIgnoreCase comparison) // ABCdef starts with abc: False (Ordinal comparison) // ABCdef starts with abc: True (OrdinalIgnoreCase comparison) -// +// // œil starts with oe: True (CurrentCulture comparison) // œil starts with oe: True (CurrentCultureIgnoreCase comparison) // œil starts with oe: True (InvariantCulture comparison) // œil starts with oe: True (InvariantCultureIgnoreCase comparison) // œil starts with oe: False (Ordinal comparison) // œil starts with oe: False (OrdinalIgnoreCase comparison) -// +// // læring} starts with lae: True (CurrentCulture comparison) // læring} starts with lae: True (CurrentCultureIgnoreCase comparison) // læring} starts with lae: True (InvariantCulture comparison) // læring} starts with lae: True (InvariantCultureIgnoreCase comparison) // læring} starts with lae: False (Ordinal comparison) // læring} starts with lae: False (OrdinalIgnoreCase comparison) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/StartsWith/stringstartswith.cs b/snippets/csharp/System/String/StartsWith/stringstartswith.cs index 26240f86501..37c6f275cef 100644 --- a/snippets/csharp/System/String/StartsWith/stringstartswith.cs +++ b/snippets/csharp/System/String/StartsWith/stringstartswith.cs @@ -1,46 +1,49 @@ // using System; -public class Example +public class StartsWithTagsExample { - public static void Main() { - string [] strSource = { "This is bold text", "

This is large Text

", + public static void Run() + { + string[] strSource = [ "This is bold text", "

This is large Text

", "This has multiple tags", "This has embedded tags.", - "" ); - // Remove the tag. - if (lastLocation >= 0) { - item = item.Substring( lastLocation + 1 ); + private static string StripStartTags(string item) + { + // Determine whether a tag begins the string. + if (item.Trim().StartsWith("<")) + { + // Find the closing tag. + int lastLocation = item.IndexOf(">"); + // Remove the tag. + if (lastLocation >= 0) + { + item = item.Substring(lastLocation + 1); - // Remove any additional starting tags. - item = StripStartTags(item); - } - } + // Remove any additional starting tags. + item = StripStartTags(item); + } + } - return item; - } + return item; + } } // The example displays the following output: // The original strings: @@ -58,4 +61,4 @@ private static string StripStartTags(string item) // This has multiple tags
// This has embedded tags.
// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/StartsWith/swci.cs b/snippets/csharp/System/String/StartsWith/swci.cs index a99f88de7ae..84c89bef219 100644 --- a/snippets/csharp/System/String/StartsWith/swci.cs +++ b/snippets/csharp/System/String/StartsWith/swci.cs @@ -1,66 +1,66 @@ // -// This code example demonstrates the +// This code example demonstrates the // System.String.StartsWith(String, ..., CultureInfo) method. using System; -using System.Threading; + using System.Globalization; -class Sample +class Sample { - public static void Main() + public static void Run() { - string msg1 = "Search for the target string \"{0}\" in the string \"{1}\".\n"; - string msg2 = "Using the {0} - \"{1}\" culture:"; - string msg3 = " The string to search ends with the target string: {0}"; - bool result = false; - CultureInfo ci; - -// Define a target string to search for. -// U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE - string capitalARing = "\u00c5"; - -// Define a string to search. -// The result of combining the characters LATIN SMALL LETTER A and COMBINING -// RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character -// LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). - string aRingXYZ = "\u0061\u030a" + "xyz"; - -// Clear the screen and display an introduction. - Console.Clear(); - -// Display the string to search for and the string to search. - Console.WriteLine(msg1, capitalARing, aRingXYZ); - -// Search using English-United States culture. - ci = new CultureInfo("en-US"); - Console.WriteLine(msg2, ci.DisplayName, ci.Name); - - Console.WriteLine("Case sensitive:"); - result = aRingXYZ.StartsWith(capitalARing, false, ci); - Console.WriteLine(msg3, result); - - Console.WriteLine("Case insensitive:"); - result = aRingXYZ.StartsWith(capitalARing, true, ci); - Console.WriteLine(msg3, result); - Console.WriteLine(); - -// Search using Swedish-Sweden culture. - ci = new CultureInfo("sv-SE"); - Console.WriteLine(msg2, ci.DisplayName, ci.Name); - - Console.WriteLine("Case sensitive:"); - result = aRingXYZ.StartsWith(capitalARing, false, ci); - Console.WriteLine(msg3, result); - - Console.WriteLine("Case insensitive:"); - result = aRingXYZ.StartsWith(capitalARing, true, ci); - Console.WriteLine(msg3, result); + string msg1 = "Search for the target string \"{0}\" in the string \"{1}\".\n"; + string msg2 = "Using the {0} - \"{1}\" culture:"; + string msg3 = " The string to search ends with the target string: {0}"; + bool result = false; + CultureInfo ci; + + // Define a target string to search for. + // U+00c5 = LATIN CAPITAL LETTER A WITH RING ABOVE + string capitalARing = "\u00c5"; + + // Define a string to search. + // The result of combining the characters LATIN SMALL LETTER A and COMBINING + // RING ABOVE (U+0061, U+030a) is linguistically equivalent to the character + // LATIN SMALL LETTER A WITH RING ABOVE (U+00e5). + string aRingXYZ = "\u0061\u030a" + "xyz"; + + // Clear the screen and display an introduction. + Console.Clear(); + + // Display the string to search for and the string to search. + Console.WriteLine(msg1, capitalARing, aRingXYZ); + + // Search using English-United States culture. + ci = new("en-US"); + Console.WriteLine(msg2, ci.DisplayName, ci.Name); + + Console.WriteLine("Case sensitive:"); + result = aRingXYZ.StartsWith(capitalARing, false, ci); + Console.WriteLine(msg3, result); + + Console.WriteLine("Case insensitive:"); + result = aRingXYZ.StartsWith(capitalARing, true, ci); + Console.WriteLine(msg3, result); + Console.WriteLine(); + + // Search using Swedish-Sweden culture. + ci = new("sv-SE"); + Console.WriteLine(msg2, ci.DisplayName, ci.Name); + + Console.WriteLine("Case sensitive:"); + result = aRingXYZ.StartsWith(capitalARing, false, ci); + Console.WriteLine(msg3, result); + + Console.WriteLine("Case insensitive:"); + result = aRingXYZ.StartsWith(capitalARing, true, ci); + Console.WriteLine(msg3, result); } } /* -Note: This code example was executed on a console whose user interface +Note: This code example was executed on a console whose user interface culture is "en-US" (English-United States). Search for the target string "Å" in the string "a°xyz". @@ -78,4 +78,4 @@ Using the Swedish (Sweden) - "sv-SE" culture: The string to search ends with the target string: False */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/Substring/Program.cs b/snippets/csharp/System/String/Substring/Program.cs new file mode 100644 index 00000000000..19753f5314c --- /dev/null +++ b/snippets/csharp/System/String/Substring/Program.cs @@ -0,0 +1,6 @@ +Sample.Run(); +SubstringPairsExample.Run(); +SubStringTest.Run(); +SubstringRangeExample.Run(); +SubstringMarkupExample.Run(); +SubstringLengthExample.Run(); diff --git a/snippets/csharp/System/String/Substring/Project.csproj b/snippets/csharp/System/String/Substring/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/Substring/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/Substring/Substring1.cs b/snippets/csharp/System/String/Substring/Substring1.cs index 402eb41815e..fea8525f5f9 100644 --- a/snippets/csharp/System/String/Substring/Substring1.cs +++ b/snippets/csharp/System/String/Substring/Substring1.cs @@ -1,21 +1,19 @@ using System; -public class Example +public class SubstringPairsExample { - public static void Main() + public static void Run() { // - String[] pairs = { "Color1=red", "Color2=green", "Color3=blue", - "Title=Code Repository" }; - foreach (var pair in pairs) + string[] pairs = [ "Color1=red", "Color2=green", "Color3=blue", + "Title=Code Repository" ]; + foreach (string pair in pairs) { int position = pair.IndexOf("="); if (position < 0) continue; - Console.WriteLine("Key: {0}, Value: '{1}'", - pair.Substring(0, position), - pair.Substring(position + 1)); - } + Console.WriteLine($"Key: {pair.Substring(0, position)}, Value: '{pair.Substring(position + 1)}'"); + } // The example displays the following output: // Key: Color1, Value: 'red' diff --git a/snippets/csharp/System/String/Substring/Substring10.cs b/snippets/csharp/System/String/Substring/Substring10.cs index 506c299b6a9..b842eee94ea 100644 --- a/snippets/csharp/System/String/Substring/Substring10.cs +++ b/snippets/csharp/System/String/Substring/Substring10.cs @@ -1,23 +1,23 @@ using System; -public class SubStringTest +public class SubStringTest { - public static void Main() + public static void Run() { // - string [] info = { "Name: Felica Walker", "Title: Mz.", - "Age: 47", "Location: Paris", "Gender: F"}; + string[] info = [ "Name: Felica Walker", "Title: Mz.", + "Age: 47", "Location: Paris", "Gender: F"]; int found = 0; Console.WriteLine("The initial values in the array are:"); foreach (string s in info) Console.WriteLine(s); - Console.WriteLine("\nWe want to retrieve only the key information. That is:"); - foreach (string s in info) + Console.WriteLine("\nWe want to retrieve only the key information. That is:"); + foreach (string s in info) { found = s.IndexOf(": "); - Console.WriteLine(" {0}", s.Substring(found + 2)); + Console.WriteLine($" {s.Substring(found + 2)}"); } // The example displays the following output: @@ -27,7 +27,7 @@ public static void Main() // Age: 47 // Location: Paris // Gender: F - // + // // We want to retrieve only the key information. That is: // Felica Walker // Mz. diff --git a/snippets/csharp/System/String/Substring/Substring2.cs b/snippets/csharp/System/String/Substring/Substring2.cs index acd79845e84..0421cf41a7a 100644 --- a/snippets/csharp/System/String/Substring/Substring2.cs +++ b/snippets/csharp/System/String/Substring/Substring2.cs @@ -1,18 +1,16 @@ using System; -public class Example +public class SubstringRangeExample { - public static void Main() + public static void Run() { // - String s = "aaaaabbbcccccccdd"; - Char charRange = 'b'; + string s = "aaaaabbbcccccccdd"; + char charRange = 'b'; int startIndex = s.IndexOf(charRange); int endIndex = s.LastIndexOf(charRange); int length = endIndex - startIndex + 1; - Console.WriteLine("{0}.Substring({1}, {2}) = {3}", - s, startIndex, length, - s.Substring(startIndex, length)); + Console.WriteLine($"{s}.Substring({startIndex}, {length}) = {s.Substring(startIndex, length)}"); // The example displays the following output: // aaaaabbbcccccccdd.Substring(5, 3) = bbb diff --git a/snippets/csharp/System/String/Substring/Substring3.cs b/snippets/csharp/System/String/Substring/Substring3.cs index 416aec100d2..21c73e29168 100644 --- a/snippets/csharp/System/String/Substring/Substring3.cs +++ b/snippets/csharp/System/String/Substring/Substring3.cs @@ -1,18 +1,18 @@ using System; -public class Example +public class SubstringMarkupExample { - public static void Main() + public static void Run() { // - String s = "extantstill in existence"; - String searchString = ""; + string s = "extantstill in existence"; + string searchString = ""; int startIndex = s.IndexOf(searchString); searchString = "extantstill in existence diff --git a/snippets/csharp/System/String/Substring/Substring4.cs b/snippets/csharp/System/String/Substring/Substring4.cs index 2e53ac13007..9ab1084956c 100644 --- a/snippets/csharp/System/String/Substring/Substring4.cs +++ b/snippets/csharp/System/String/Substring/Substring4.cs @@ -1,14 +1,14 @@ using System; -public class Example +public class SubstringLengthExample { - public static void Main() + public static void Run() { // - String value = "This is a string."; + string value = "This is a string."; int startIndex = 5; int length = 2; - String substring = value.Substring(startIndex, length); + string substring = value.Substring(startIndex, length); Console.WriteLine(substring); // The example displays the following output: diff --git a/snippets/csharp/System/String/Substring/source.cs b/snippets/csharp/System/String/Substring/source.cs index 9d0c99d6bd4..704c7b40266 100644 --- a/snippets/csharp/System/String/Substring/source.cs +++ b/snippets/csharp/System/String/Substring/source.cs @@ -1,30 +1,30 @@ -using System; +using System; public class Sample { - public static void Main() - { - // - string myString = "abc"; - bool test1 = myString.Substring(2, 1).Equals("c"); // This is true. - Console.WriteLine(test1); - bool test2 = string.IsNullOrEmpty(myString.Substring(3, 0)); // This is true. - Console.WriteLine(test2); - try - { - string str3 = myString.Substring(3, 1); // This throws ArgumentOutOfRangeException. - Console.WriteLine(str3); - } - catch (ArgumentOutOfRangeException e) - { - Console.WriteLine(e.Message); - } + public static void Run() + { + // + string myString = "abc"; + bool test1 = myString.Substring(2, 1).Equals("c"); // This is true. + Console.WriteLine(test1); + bool test2 = string.IsNullOrEmpty(myString.Substring(3, 0)); // This is true. + Console.WriteLine(test2); + try + { + string str3 = myString.Substring(3, 1); // This throws ArgumentOutOfRangeException. + Console.WriteLine(str3); + } + catch (ArgumentOutOfRangeException e) + { + Console.WriteLine(e.Message); + } - // The example displays the following output: - // True - // True - // Index and length must refer to a location within the string. - // Parameter name: length - // - } + // The example displays the following output: + // True + // True + // Index and length must refer to a location within the string. + // Parameter name: length + // + } } diff --git a/snippets/csharp/System/String/ToCharArray/ToCharArray1.cs b/snippets/csharp/System/String/ToCharArray/ToCharArray1.cs index eaa4a9ac086..1889b89b6fc 100644 --- a/snippets/csharp/System/String/ToCharArray/ToCharArray1.cs +++ b/snippets/csharp/System/String/ToCharArray/ToCharArray1.cs @@ -3,17 +3,17 @@ public class Example { - public static void Main() - { - string s = "AaBbCcDd"; - char[] chars = s.ToCharArray(); - Console.WriteLine("Original string: {0}", s); - Console.WriteLine("Character array:"); - for (int ctr = 0; ctr < chars.Length; ctr++) - { - Console.WriteLine(" {0}: {1}", ctr, chars[ctr]); - } - } + public static void Main() + { + string s = "AaBbCcDd"; + char[] chars = s.ToCharArray(); + Console.WriteLine($"Original string: {s}"); + Console.WriteLine("Character array:"); + for (int ctr = 0; ctr < chars.Length; ctr++) + { + Console.WriteLine($" {ctr}: {chars[ctr]}"); + } + } } // The example displays the following output: diff --git a/snippets/csharp/System/String/ToCharArray/tocharry1.cs b/snippets/csharp/System/String/ToCharArray/tocharry1.cs index f35b6d2385c..eeb7f76b7ee 100644 --- a/snippets/csharp/System/String/ToCharArray/tocharry1.cs +++ b/snippets/csharp/System/String/ToCharArray/tocharry1.cs @@ -2,18 +2,20 @@ // Sample for String.ToCharArray(Int32, Int32) using System; -class Sample { - public static void Main() { - string str = "012wxyz789"; - char[] arr; +class Sample +{ + public static void Main() + { + string str = "012wxyz789"; + char[] arr; - arr = str.ToCharArray(3, 4); - Console.Write("The letters in '{0}' are: '", str); - Console.Write(arr); - Console.WriteLine("'"); - Console.WriteLine("Each letter in '{0}' is:", str); - foreach (char c in arr) - Console.WriteLine(c); + arr = str.ToCharArray(3, 4); + Console.Write($"The letters in '{str}' are: '"); + Console.Write(arr); + Console.WriteLine("'"); + Console.WriteLine($"Each letter in '{str}' is:"); + foreach (char c in arr) + Console.WriteLine(c); } } /* @@ -25,4 +27,4 @@ public static void Main() { y z */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/ToLower/stringtolower.cs b/snippets/csharp/System/String/ToLower/stringtolower.cs index 29ef7208e9d..2adee0fd49c 100644 --- a/snippets/csharp/System/String/ToLower/stringtolower.cs +++ b/snippets/csharp/System/String/ToLower/stringtolower.cs @@ -1,21 +1,23 @@ // using System; -public class ToLowerTest { - public static void Main() { +public class ToLowerTest +{ + public static void Main() + { - string [] info = {"Name", "Title", "Age", "Location", "Gender"}; + string[] info = ["Name", "Title", "Age", "Location", "Gender"]; Console.WriteLine("The initial values in the array are:"); foreach (string s in info) Console.WriteLine(s); - Console.WriteLine("{0}The lowercase of these values is:", Environment.NewLine); + Console.WriteLine($"{Environment.NewLine}The lowercase of these values is:"); foreach (string s in info) Console.WriteLine(s.ToLower()); - Console.WriteLine("{0}The uppercase of these values is:", Environment.NewLine); + Console.WriteLine($"{Environment.NewLine}The uppercase of these values is:"); foreach (string s in info) Console.WriteLine(s.ToUpper()); diff --git a/snippets/csharp/System/String/ToLower/tolower.cs b/snippets/csharp/System/String/ToLower/tolower.cs index bbb29b0fb76..4c08e859d75 100644 --- a/snippets/csharp/System/String/ToLower/tolower.cs +++ b/snippets/csharp/System/String/ToLower/tolower.cs @@ -8,43 +8,41 @@ class Sample { public static void Main() { - String str1 = "INDIGO"; - // str2 = str1, except each 'I' is '\u0130' (Unicode LATIN CAPITAL I WITH DOT ABOVE). - String str2 = new String(new Char[] {'\u0130', 'N', 'D', '\u0130', 'G', 'O'}); - String str3, str4; - - Console.WriteLine(); - Console.WriteLine("str1 = '{0}'", str1); - - Console.WriteLine(); - Console.WriteLine("str1 is {0} to str2.", - ((0 == String.CompareOrdinal(str1, str2)) ? "equal" : "not equal")); - CodePoints("str1", str1); - CodePoints("str2", str2); - - Console.WriteLine(); - // str3 is a lower case copy of str2, using English-United States culture. - Console.WriteLine("str3 = Lower case copy of str2 using English-United States culture."); - str3 = str2.ToLower(new CultureInfo("en-US", false)); - - // str4 is a lower case copy of str2, using Turkish-Turkey culture. - Console.WriteLine("str4 = Lower case copy of str2 using Turkish-Turkey culture."); - str4 = str2.ToLower(new CultureInfo("tr-TR", false)); - - // Compare the code points in str3 and str4. - Console.WriteLine(); - Console.WriteLine("str3 is {0} to str4.", - ((0 == String.CompareOrdinal(str3, str4)) ? "equal" : "not equal")); - CodePoints("str3", str3); - CodePoints("str4", str4); + string str1 = "INDIGO"; + // str2 = str1, except each 'I' is '\u0130' (Unicode LATIN CAPITAL I WITH DOT ABOVE). + string str2 = new(['\u0130', 'N', 'D', '\u0130', 'G', 'O']); + string str3, str4; + + Console.WriteLine(); + Console.WriteLine($"str1 = '{str1}'"); + + Console.WriteLine(); + Console.WriteLine($"str1 is {((0 == string.CompareOrdinal(str1, str2)) ? "equal" : "not equal")} to str2."); + CodePoints("str1", str1); + CodePoints("str2", str2); + + Console.WriteLine(); + // str3 is a lower case copy of str2, using English-United States culture. + Console.WriteLine("str3 = Lower case copy of str2 using English-United States culture."); + str3 = str2.ToLower(new CultureInfo("en-US", false)); + + // str4 is a lower case copy of str2, using Turkish-Turkey culture. + Console.WriteLine("str4 = Lower case copy of str2 using Turkish-Turkey culture."); + str4 = str2.ToLower(new CultureInfo("tr-TR", false)); + + // Compare the code points in str3 and str4. + Console.WriteLine(); + Console.WriteLine($"str3 is {((0 == string.CompareOrdinal(str3, str4)) ? "equal" : "not equal")} to str4."); + CodePoints("str3", str3); + CodePoints("str4", str4); } - public static void CodePoints(String title, String s) + public static void CodePoints(string title, string s) { - Console.Write("{0}The code points in {1} are: {0}", Environment.NewLine, title); - foreach (ushort u in s) - Console.Write("{0:x4} ", u); - Console.WriteLine(); + Console.Write("{0}The code points in {1} are: {0}", Environment.NewLine, title); + foreach (ushort u in s) + Console.Write($"{u:x4} "); + Console.WriteLine(); } } /* @@ -71,4 +69,4 @@ 0069 006e 0064 0069 0067 006f The code points in str4 are: 0069 006e 0064 0069 0067 006f */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/ToLowerInvariant/tolowerinvariant.cs b/snippets/csharp/System/String/ToLowerInvariant/tolowerinvariant.cs index 6ecbc70c5dc..17689075c97 100644 --- a/snippets/csharp/System/String/ToLowerInvariant/tolowerinvariant.cs +++ b/snippets/csharp/System/String/ToLowerInvariant/tolowerinvariant.cs @@ -3,28 +3,28 @@ public class Example { - public static void Main() - { - string[] words = { "Tuesday", "Salı", "Вторник", "Mardi", - "Τρίτη", "Martes", "יום שלישי", - "الثلاثاء", "วันอังคาร" }; - // Display array in unsorted order. - foreach (string word in words) - Console.WriteLine(word); - Console.WriteLine(); + public static void Main() + { + string[] words = [ "Tuesday", "Salı", "Вторник", "Mardi", + "Τρίτη", "Martes", "יום שלישי", + "الثلاثاء", "วันอังคาร" ]; + // Display array in unsorted order. + foreach (string word in words) + Console.WriteLine(word); + Console.WriteLine(); - // Create parallel array of words by calling ToLowerInvariant. - string[] lowerWords = new string[words.Length]; - for (int ctr = words.GetLowerBound(0); ctr <= words.GetUpperBound(0); ctr++) - lowerWords[ctr] = words[ctr].ToLowerInvariant(); - - // Sort the words array based on the order of lowerWords. - Array.Sort(lowerWords, words, StringComparer.InvariantCulture); - - // Display the sorted array. - foreach (string word in words) - Console.WriteLine(word); - } + // Create parallel array of words by calling ToLowerInvariant. + string[] lowerWords = new string[words.Length]; + for (int ctr = words.GetLowerBound(0); ctr <= words.GetUpperBound(0); ctr++) + lowerWords[ctr] = words[ctr].ToLowerInvariant(); + + // Sort the words array based on the order of lowerWords. + Array.Sort(lowerWords, words, StringComparer.InvariantCulture); + + // Display the sorted array. + foreach (string word in words) + Console.WriteLine(word); + } } // The example displays the following output: // Tuesday @@ -36,7 +36,7 @@ public static void Main() // יום שלישי // الثلاثاء // วันอังคาร -// +// // Mardi // Martes // Salı diff --git a/snippets/csharp/System/String/ToString/string.tostring.cs b/snippets/csharp/System/String/ToString/string.tostring.cs index b5a903fb20d..e8776a2d65f 100644 --- a/snippets/csharp/System/String/ToString/string.tostring.cs +++ b/snippets/csharp/System/String/ToString/string.tostring.cs @@ -1,19 +1,21 @@ // using System; -class stringToString { - public static void Main() { - String str1 = "123"; - String str2 = "abc"; +class stringToString +{ + public static void Main() + { + string str1 = "123"; + string str2 = "abc"; - Console.WriteLine("Original str1: {0}", str1); - Console.WriteLine("Original str2: {0}", str2); - Console.WriteLine("str1 same as str2?: {0}", Object.ReferenceEquals(str1, str2)); + Console.WriteLine($"Original str1: {str1}"); + Console.WriteLine($"Original str2: {str2}"); + Console.WriteLine($"str1 same as str2?: {object.ReferenceEquals(str1, str2)}"); - str2 = str1.ToString(); - Console.WriteLine(); - Console.WriteLine("New str2: {0}", str2); - Console.WriteLine("str1 same as str2?: {0}", Object.ReferenceEquals(str1, str2)); + str2 = str1.ToString(); + Console.WriteLine(); + Console.WriteLine($"New str2: {str2}"); + Console.WriteLine($"str1 same as str2?: {object.ReferenceEquals(str1, str2)}"); } } /* @@ -25,4 +27,4 @@ public static void Main() { New str2: 123 str1 same as str2?: True */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/String/ToUpper/Program.cs b/snippets/csharp/System/String/ToUpper/Program.cs new file mode 100644 index 00000000000..a41aa44bd7f --- /dev/null +++ b/snippets/csharp/System/String/ToUpper/Program.cs @@ -0,0 +1,2 @@ +ToUpperCultureExample.Run(); +ToUpperRangeExample.Run(); diff --git a/snippets/csharp/System/String/ToUpper/Project.csproj b/snippets/csharp/System/String/ToUpper/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/ToUpper/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/ToUpper/ToUpperEx.cs b/snippets/csharp/System/String/ToUpper/ToUpperEx.cs index cf55d2f9448..9579fc4a815 100644 --- a/snippets/csharp/System/String/ToUpper/ToUpperEx.cs +++ b/snippets/csharp/System/String/ToUpper/ToUpperEx.cs @@ -1,25 +1,23 @@ // using System; -public class Example +public class ToUpperRangeExample { - public static void Main() - { - int n = 0; - for (int ctr = 0x20; ctr <= 0x017F; ctr++) { - string string1 = ((char)ctr).ToString(); - string upperString = string1.ToUpper(); - if (string1 != upperString) { - Console.Write(@"{0} (\u+{1}) --> {2} (\u+{3}) ", - string1, - Convert.ToUInt16(string1[0]).ToString("X4"), - upperString, - Convert.ToUInt16(upperString[0]).ToString("X4")); - n++; - if (n % 2 == 0) Console.WriteLine(); - } - } - } + public static void Run() + { + int n = 0; + for (int ctr = 0x20; ctr <= 0x017F; ctr++) + { + string string1 = ((char)ctr).ToString(); + string upperString = string1.ToUpper(); + if (string1 != upperString) + { + Console.Write($"{string1} (\\u+{Convert.ToUInt16(string1[0]):X4}) --> {upperString} (\\u+{Convert.ToUInt16(upperString[0]):X4}) "); + n++; + if (n % 2 == 0) Console.WriteLine(); + } + } + } } // The example displays the following output: // a (\u+0061) --> A (\u+0041) b (\u+0062) --> B (\u+0042) diff --git a/snippets/csharp/System/String/ToUpper/toupper.cs b/snippets/csharp/System/String/ToUpper/toupper.cs index 1e92fd80243..bd17eb38918 100644 --- a/snippets/csharp/System/String/ToUpper/toupper.cs +++ b/snippets/csharp/System/String/ToUpper/toupper.cs @@ -2,33 +2,32 @@ using System; using System.Globalization; -class Example +class ToUpperCultureExample { - public static void Main() + public static void Run() { - string str1 = "indigo"; - string str2, str3; + string str1 = "indigo"; + string str2, str3; - // str2 is an uppercase copy of str1, using English-United States culture. - str2 = str1.ToUpper(new CultureInfo("en-US", false)); + // str2 is an uppercase copy of str1, using English-United States culture. + str2 = str1.ToUpper(new CultureInfo("en-US", false)); - // str3 is an uppercase copy of str1, using Turkish-Turkey culture. - str3 = str1.ToUpper(new CultureInfo("tr-TR", false)); + // str3 is an uppercase copy of str1, using Turkish-Turkey culture. + str3 = str1.ToUpper(new CultureInfo("tr-TR", false)); - // Compare the code points and compare the uppercase strings. - ShowCodePoints("str1", str1); - ShowCodePoints("str2", str2); - ShowCodePoints("str3", str3); - Console.WriteLine("str2 is {0} to str3.", - String.CompareOrdinal(str2, str3) == 0 ? "equal" : "not equal"); + // Compare the code points and compare the uppercase strings. + ShowCodePoints("str1", str1); + ShowCodePoints("str2", str2); + ShowCodePoints("str3", str3); + Console.WriteLine($"str2 is {(string.CompareOrdinal(str2, str3) == 0 ? "equal" : "not equal")} to str3."); } public static void ShowCodePoints(string varName, string s) { - Console.Write("{0} = {1}: ", varName, s); - foreach (ushort u in s) - Console.Write("{0:x4} ", u); - Console.WriteLine(); + Console.Write($"{varName} = {s}: "); + foreach (ushort u in s) + Console.Write($"{u:x4} "); + Console.WriteLine(); } } // This example displays the following output: diff --git a/snippets/csharp/System/String/ToUpperInvariant/toupperinvariant.cs b/snippets/csharp/System/String/ToUpperInvariant/toupperinvariant.cs index 9dce95d3ae0..e7257e08f70 100644 --- a/snippets/csharp/System/String/ToUpperInvariant/toupperinvariant.cs +++ b/snippets/csharp/System/String/ToUpperInvariant/toupperinvariant.cs @@ -4,33 +4,33 @@ public class Example { - public static void Main() - { - string[] words = { "Tuesday", "Salı", "Вторник", "Mardi", - "Τρίτη", "Martes", "יום שלישי", - "الثلاثاء", "วันอังคาร" }; - StreamWriter sw = new StreamWriter(@".\output.txt"); - - // Display array in unsorted order. - foreach (string word in words) - sw.WriteLine(word); + public static void Main() + { + string[] words = [ "Tuesday", "Salı", "Вторник", "Mardi", + "Τρίτη", "Martes", "יום שלישי", + "الثلاثاء", "วันอังคาร" ]; + StreamWriter sw = new(@".\output.txt"); - sw.WriteLine(); + // Display array in unsorted order. + foreach (string word in words) + sw.WriteLine(word); - // Create parallel array of words by calling ToUpperInvariant. - string[] upperWords = new string[words.Length]; - for (int ctr = words.GetLowerBound(0); ctr <= words.GetUpperBound(0); ctr++) - upperWords[ctr] = words[ctr].ToUpperInvariant(); - - // Sort the words array based on the order of upperWords. - Array.Sort(upperWords, words, StringComparer.InvariantCulture); - - // Display the sorted array. - foreach (string word in words) - sw.WriteLine(word); + sw.WriteLine(); - sw.Close(); - } + // Create parallel array of words by calling ToUpperInvariant. + string[] upperWords = new string[words.Length]; + for (int ctr = words.GetLowerBound(0); ctr <= words.GetUpperBound(0); ctr++) + upperWords[ctr] = words[ctr].ToUpperInvariant(); + + // Sort the words array based on the order of upperWords. + Array.Sort(upperWords, words, StringComparer.InvariantCulture); + + // Display the sorted array. + foreach (string word in words) + sw.WriteLine(word); + + sw.Close(); + } } // The example produces the following output: // Tuesday @@ -42,7 +42,7 @@ public static void Main() // יום שלישי // الثلاثاء // วันอังคาร -// +// // Mardi // Martes // Salı diff --git a/snippets/csharp/System/String/Trim/Program.cs b/snippets/csharp/System/String/Trim/Program.cs new file mode 100644 index 00000000000..66a3b1a9e9b --- /dev/null +++ b/snippets/csharp/System/String/Trim/Program.cs @@ -0,0 +1,2 @@ +TrimCharactersExample.Run(); +TrimWhitespaceExample.Run(); diff --git a/snippets/csharp/System/String/Trim/Project.csproj b/snippets/csharp/System/String/Trim/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/Trim/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/Trim/Trim1.cs b/snippets/csharp/System/String/Trim/Trim1.cs index 26691f7a314..9d426873d8b 100644 --- a/snippets/csharp/System/String/Trim/Trim1.cs +++ b/snippets/csharp/System/String/Trim/Trim1.cs @@ -1,14 +1,14 @@ using System; -public class Example +public class TrimCharactersExample { - public static void Main() + public static void Run() { // - char[] charsToTrim = { '*', ' ', '\''}; + char[] charsToTrim = ['*', ' ', '\'']; string banner = "*** Much Ado About Nothing ***"; string result = banner.Trim(charsToTrim); - Console.WriteLine("Trimmed\n {0}\nto\n '{1}'", banner, result); + Console.WriteLine($"Trimmed\n {banner}\nto\n '{result}'"); // The example displays the following output: // Trimmed diff --git a/snippets/csharp/System/String/Trim/Trim2.cs b/snippets/csharp/System/String/Trim/Trim2.cs index 0bdc80fa401..71c9db9e2a5 100644 --- a/snippets/csharp/System/String/Trim/Trim2.cs +++ b/snippets/csharp/System/String/Trim/Trim2.cs @@ -1,24 +1,23 @@ // using System; -public class Example +public class TrimWhitespaceExample { - public static void Main() + public static void Run() { Console.Write("Enter your first name: "); string firstName = Console.ReadLine(); - + Console.Write("Enter your middle name or initial: "); string middleName = Console.ReadLine(); - + Console.Write("Enter your last name: "); string lastName = Console.ReadLine(); - + Console.WriteLine(); - Console.WriteLine("You entered '{0}', '{1}', and '{2}'.", - firstName, middleName, lastName); - - string name = ((firstName.Trim() + " " + middleName.Trim()).Trim() + " " + + Console.WriteLine($"You entered '{firstName}', '{middleName}', and '{lastName}'."); + + string name = ((firstName.Trim() + " " + middleName.Trim()).Trim() + " " + lastName.Trim()).Trim(); Console.WriteLine("The result is " + name + "."); @@ -26,7 +25,7 @@ public static void Main() // Enter your first name: John // Enter your middle name or initial: // Enter your last name: Doe - // + // // You entered ' John ', '', and ' Doe'. // The result is John Doe. } diff --git a/snippets/csharp/System/String/TrimEnd/sample.cs b/snippets/csharp/System/String/TrimEnd/sample.cs index b2afd221a1d..cb6f273dfd9 100644 --- a/snippets/csharp/System/String/TrimEnd/sample.cs +++ b/snippets/csharp/System/String/TrimEnd/sample.cs @@ -10,14 +10,14 @@ public static void Main() // Create a string that will be trimmed. string path = "c:/temp//"; - // Create an array of characters + // Create an array of characters // that represent characters to trim. - char[] charsToTrim = {'/'}; + char[] charsToTrim = ['/']; // Thim the string. string trimmedPath = path.TrimEnd(charsToTrim); - Console.WriteLine("The trimmed value is: {0}.", trimmedPath); + Console.WriteLine($"The trimmed value is: {trimmedPath}."); // Create a string that will be trimmed. string pathWhitespace = "c:/temp/ "; @@ -25,7 +25,7 @@ public static void Main() // Trim white spaces by passing null. string trimmedWhiteSpace = pathWhitespace.TrimEnd(null); - Console.WriteLine("The trimmed value is: {0}.", trimmedWhiteSpace); + Console.WriteLine($"The trimmed value is: {trimmedWhiteSpace}."); // This code example displays the following // to the console: diff --git a/snippets/csharp/System/String/TrimEnd/sample2.cs b/snippets/csharp/System/String/TrimEnd/sample2.cs index 5633c27b470..b8a12116816 100644 --- a/snippets/csharp/System/String/TrimEnd/sample2.cs +++ b/snippets/csharp/System/String/TrimEnd/sample2.cs @@ -2,26 +2,26 @@ public class TrimEnd { - public static void Main() - { - // - string sentence = "The dog had a bone, a ball, and other toys."; - char[] charsToTrim = {',', '.', ' '}; - string[] words = sentence.Split(); - foreach (string word in words) - Console.WriteLine(word.TrimEnd(charsToTrim)); + public static void Main() + { + // + string sentence = "The dog had a bone, a ball, and other toys."; + char[] charsToTrim = [',', '.', ' ']; + string[] words = sentence.Split(); + foreach (string word in words) + Console.WriteLine(word.TrimEnd(charsToTrim)); - // The example displays the following output: - // The - // dog - // had - // a - // bone - // a - // ball - // and - // other - // toys - // - } + // The example displays the following output: + // The + // dog + // had + // a + // bone + // a + // ball + // and + // other + // toys + // + } } diff --git a/snippets/csharp/System/String/TrimStart/Program.cs b/snippets/csharp/System/String/TrimStart/Program.cs new file mode 100644 index 00000000000..ec639d3a19d --- /dev/null +++ b/snippets/csharp/System/String/TrimStart/Program.cs @@ -0,0 +1,2 @@ +TrimExample.Run(); +TrimExample.Run(args); diff --git a/snippets/csharp/System/String/TrimStart/Project.csproj b/snippets/csharp/System/String/TrimStart/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/String/TrimStart/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/String/TrimStart/sample.cs b/snippets/csharp/System/String/TrimStart/sample.cs index a6ad6c030c5..77e49547fef 100644 --- a/snippets/csharp/System/String/TrimStart/sample.cs +++ b/snippets/csharp/System/String/TrimStart/sample.cs @@ -4,9 +4,9 @@ public class TrimExample { // - public static void Main() + public static void Run() { - string[] lines = {"using System;", + string[] lines = ["using System;", "", "public class HelloWorld", "{", @@ -16,20 +16,20 @@ public static void Main() " // to the console.", " Console.WriteLine(\"Hello, World.\");", " }", - "}"}; + "}"]; Console.WriteLine("Before call to StripComments:"); foreach (string line in lines) - Console.WriteLine(" {0}", line); + Console.WriteLine($" {line}"); string[] strippedLines = StripComments(lines); Console.WriteLine("After call to StripComments:"); foreach (string line in strippedLines) - Console.WriteLine(" {0}", line); + Console.WriteLine($" {line}"); } // This code produces the following output to the console: // Before call to StripComments: // using System; - // + // // public class HelloWorld // { // public static void Main() @@ -38,7 +38,7 @@ public static void Main() // // to the console. // Console.WriteLine("Hello, World."); // } - // } + // } // After call to StripComments: // This code displays a simple greeting // to the console. @@ -47,17 +47,17 @@ public static void Main() // public static string[] StripComments(string[] lines) { - List lineList = new List(); + List lineList = new(); foreach (string line in lines) { if (line.TrimStart(' ').StartsWith("//")) lineList.Add(line.TrimStart(' ', '/')); } - return lineList.ToArray(); + return [.. lineList]; } // - public static void Main(string[] args) + public static void Run(string[] args) { // // TrimStart examples @@ -68,9 +68,9 @@ public static void Main(string[] args) string lineAfterTrimStart = string.Empty; // Make it easy to print out and work with all of the examples - string[] lines = { lineWithLeadingSpaces, lineWithLeadingSymbols, lineWithLeadingUnderscores, lineWithLeadingLetters }; + string[] lines = [lineWithLeadingSpaces, lineWithLeadingSymbols, lineWithLeadingUnderscores, lineWithLeadingLetters]; - foreach (var line in lines) + foreach (string line in lines) { Console.WriteLine($"This line has leading characters: {line}"); } @@ -83,19 +83,19 @@ public static void Main(string[] args) // A basic demonstration of TrimStart in action lineAfterTrimStart = lineWithLeadingSpaces.TrimStart(' '); Console.WriteLine($"This is the result after calling TrimStart: {lineAfterTrimStart}"); - // This is the result after calling TrimStart: Hello World! + // This is the result after calling TrimStart: Hello World! // Since TrimStart accepts a character array of leading items to be removed as an argument, - // it's possible to do things like trim multiple pieces of data that each have different + // it's possible to do things like trim multiple pieces of data that each have different // leading characters, - foreach (var lineToEdit in lines) + foreach (string lineToEdit in lines) { Console.WriteLine(lineToEdit.TrimStart(' ', '$', '_', 'x')); } // Result for each: Hello World! - // or handle pieces of data that have multiple kinds of leading characters - var lineToBeTrimmed = "__###__ John Smith"; + // or handle pieces of data that have multiple kinds of leading characters + string lineToBeTrimmed = "__###__ John Smith"; lineAfterTrimStart = lineToBeTrimmed.TrimStart('_', '#', ' '); Console.WriteLine(lineAfterTrimStart); // Result: John Smith diff --git a/snippets/csharp/System/String/op_Equality/equalityop.cs b/snippets/csharp/System/String/op_Equality/equalityop.cs index 774547302c4..7eb30304a97 100644 --- a/snippets/csharp/System/String/op_Equality/equalityop.cs +++ b/snippets/csharp/System/String/op_Equality/equalityop.cs @@ -2,31 +2,29 @@ // Example for the String Equality operator. using System; -class EqualityOp +class EqualityOp { - public static void Main() + public static void Main() { - Console.WriteLine( + Console.WriteLine( "This example of the String Equality operator\n" + - "generates the following output.\n" ); + "generates the following output.\n"); - CompareAndDisplay( "ijkl" ); - CompareAndDisplay( "ABCD" ); - CompareAndDisplay( "abcd" ); + CompareAndDisplay("ijkl"); + CompareAndDisplay("ABCD"); + CompareAndDisplay("abcd"); } - static void CompareAndDisplay( string Comparand ) + static void CompareAndDisplay(string Comparand) { - String Lower = "abcd"; + string Lower = "abcd"; - Console.WriteLine( - "\"{0}\" == \"{1}\" ? {2}", - Lower, Comparand, Lower == Comparand ); + Console.WriteLine($"\"{Lower}\" == \"{Comparand}\" ? {Lower == Comparand}"); } } /* -This example of the String Equality operator +This example of the String Equality operator generates the following output. "abcd" == "ijkl" ? False diff --git a/snippets/csharp/System/String/op_Inequality/inequalityop.cs b/snippets/csharp/System/String/op_Inequality/inequalityop.cs index af9df24bc50..41f5fd78572 100644 --- a/snippets/csharp/System/String/op_Inequality/inequalityop.cs +++ b/snippets/csharp/System/String/op_Inequality/inequalityop.cs @@ -2,26 +2,24 @@ // Example for the String Inequality operator. using System; -class InequalityOp +class InequalityOp { - public static void Main() + public static void Main() { - Console.WriteLine( + Console.WriteLine( "This example of the String Inequality operator\n" + - "generates the following output.\n" ); + "generates the following output.\n"); - CompareAndDisplay( "ijkl" ); - CompareAndDisplay( "ABCD" ); - CompareAndDisplay( "abcd" ); + CompareAndDisplay("ijkl"); + CompareAndDisplay("ABCD"); + CompareAndDisplay("abcd"); } - static void CompareAndDisplay( String Comparand ) + static void CompareAndDisplay(string Comparand) { - String Lower = "abcd"; + string Lower = "abcd"; - Console.WriteLine( - "\"{0}\" != \"{1}\" ? {2}", - Lower, Comparand, Lower != Comparand ); + Console.WriteLine($"\"{Lower}\" != \"{Comparand}\" ? {Lower != Comparand}"); } } diff --git a/snippets/csharp/System/StringComparer/CurrentCulture/CompareObjects.cs b/snippets/csharp/System/StringComparer/CurrentCulture/CompareObjects.cs index 3bfc91e491d..d740f2bb442 100644 --- a/snippets/csharp/System/StringComparer/CurrentCulture/CompareObjects.cs +++ b/snippets/csharp/System/StringComparer/CurrentCulture/CompareObjects.cs @@ -2,33 +2,33 @@ public class StringComparerTest { - public static void Main() - { - StringComparerTest test = new StringComparerTest(); - test.CompareCurrentCultureStringComparer(); - test.CompareCurrentCultureInsensitiveStringComparer(); - } + public static void Main() + { + StringComparerTest test = new(); + test.CompareCurrentCultureStringComparer(); + test.CompareCurrentCultureInsensitiveStringComparer(); + } - // - private void CompareCurrentCultureStringComparer() - { - StringComparer stringComparer1 = StringComparer.CurrentCulture; - StringComparer stringComparer2 = StringComparer.CurrentCulture; - // Displays false - Console.WriteLine(StringComparer.ReferenceEquals(stringComparer1, - stringComparer2)); - } - // + // + private void CompareCurrentCultureStringComparer() + { + StringComparer stringComparer1 = StringComparer.CurrentCulture; + StringComparer stringComparer2 = StringComparer.CurrentCulture; + // Displays false + Console.WriteLine(StringComparer.ReferenceEquals(stringComparer1, + stringComparer2)); + } + // - // - private void CompareCurrentCultureInsensitiveStringComparer() - { - StringComparer stringComparer1, stringComparer2; - stringComparer1 = StringComparer.CurrentCultureIgnoreCase; - stringComparer2 = StringComparer.CurrentCultureIgnoreCase; - // Displays false - Console.WriteLine(StringComparer.ReferenceEquals(stringComparer1, - stringComparer2)); - } - // + // + private void CompareCurrentCultureInsensitiveStringComparer() + { + StringComparer stringComparer1, stringComparer2; + stringComparer1 = StringComparer.CurrentCultureIgnoreCase; + stringComparer2 = StringComparer.CurrentCultureIgnoreCase; + // Displays false + Console.WriteLine(StringComparer.ReferenceEquals(stringComparer1, + stringComparer2)); + } + // } diff --git a/snippets/csharp/System/StringComparer/Overview/omni.cs b/snippets/csharp/System/StringComparer/Overview/omni.cs index c008dab1a26..d4d49884848 100644 --- a/snippets/csharp/System/StringComparer/Overview/omni.cs +++ b/snippets/csharp/System/StringComparer/Overview/omni.cs @@ -1,28 +1,28 @@ // -// This example demonstrates members of the +// This example demonstrates members of the // System.StringComparer class. using System; -using System.Collections; + using System.Collections.Generic; using System.Globalization; using System.Threading; -class Sample +class Sample { - public static void Main() + public static void Main() { // Create a list of string. - List list = new List(); + List list = new(); // Get the tr-TR (Turkish-Turkey) culture. - CultureInfo turkish = new CultureInfo("tr-TR"); + CultureInfo turkish = new("tr-TR"); // Get the culture that is associated with the current thread. CultureInfo thisCulture = Thread.CurrentThread.CurrentCulture; // Get the standard StringComparers. - StringComparer invCmp = StringComparer.InvariantCulture; + StringComparer invCmp = StringComparer.InvariantCulture; StringComparer invICCmp = StringComparer.InvariantCultureIgnoreCase; StringComparer currCmp = StringComparer.CurrentCulture; StringComparer currICCmp = StringComparer.CurrentCultureIgnoreCase; @@ -34,10 +34,10 @@ public static void Main() // Define three strings consisting of different versions of the letter I. // LATIN CAPITAL LETTER I (U+0049) - string capitalLetterI = "I"; + string capitalLetterI = "I"; // LATIN SMALL LETTER I (U+0069) - string smallLetterI = "i"; + string smallLetterI = "i"; // LATIN SMALL LETTER DOTLESS I (U+0131) string smallLetterDotlessI = "\u0131"; @@ -57,7 +57,7 @@ public static void Main() Display(list, "Invariant culture, ignore case..."); // Sort the list using the current culture. - Console.WriteLine("The current culture is \"{0}\".", thisCulture.Name); + Console.WriteLine($"The current culture is \"{thisCulture.Name}\"."); list.Sort(currCmp); Display(list, "Current culture..."); list.Sort(currICCmp); @@ -69,7 +69,7 @@ public static void Main() list.Sort(ordICCmp); Display(list, "Ordinal, ignore case..."); - // Sort the list using the Turkish culture, which treats LATIN SMALL LETTER + // Sort the list using the Turkish culture, which treats LATIN SMALL LETTER // DOTLESS I differently than LATIN SMALL LETTER I. list.Sort(turkICComp); Display(list, "Turkish culture, ignore case..."); @@ -77,14 +77,14 @@ public static void Main() public static void Display(List lst, string title) { - Char c; - int codePoint; + char c; + int codePoint; Console.WriteLine(title); foreach (string s in lst) { c = s[0]; codePoint = Convert.ToInt32(c); - Console.WriteLine("0x{0:x}", codePoint); + Console.WriteLine($"0x{codePoint:x}"); } Console.WriteLine(); } diff --git a/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs b/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs index 5f7e07d328a..0fa5de8cd47 100644 --- a/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs +++ b/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs @@ -31,14 +31,8 @@ static void ProcessRequest(object? requestId) PerformLogging(); } - static void PerformDatabaseOperation() - { - Console.WriteLine($"Thread {Environment.CurrentManagedThreadId}: Processing DB operation for request {_requestId}"); - } + static void PerformDatabaseOperation() => Console.WriteLine($"Thread {Environment.CurrentManagedThreadId}: Processing DB operation for request {_requestId}"); - static void PerformLogging() - { - Console.WriteLine($"Thread {Environment.CurrentManagedThreadId}: Logging request {_requestId}"); - } + static void PerformLogging() => Console.WriteLine($"Thread {Environment.CurrentManagedThreadId}: Logging request {_requestId}"); } // diff --git a/snippets/csharp/System/TimeSpan/.ctor/ctoriii.cs b/snippets/csharp/System/TimeSpan/.ctor/ctoriii.cs index ce9c21fbf34..d52d30cdff5 100644 --- a/snippets/csharp/System/TimeSpan/.ctor/ctoriii.cs +++ b/snippets/csharp/System/TimeSpan/.ctor/ctoriii.cs @@ -5,37 +5,35 @@ class TimeSpanCtorIIIDemo { // Create a TimeSpan object and display its value. - static void CreateTimeSpan( int hours, int minutes, - int seconds ) + static void CreateTimeSpan(int hours, int minutes, + int seconds) { - TimeSpan elapsedTime = - new TimeSpan( hours, minutes, seconds ); + TimeSpan elapsedTime = + new(hours, minutes, seconds); // Format the constructor for display. - string ctor = String.Format( "TimeSpan( {0}, {1}, {2} )", - hours, minutes, seconds); + string ctor = $"TimeSpan( {hours}, {minutes}, {seconds} )"; // Display the constructor and its value. - Console.WriteLine( "{0,-37}{1,16}", - ctor, elapsedTime.ToString( ) ); + Console.WriteLine($"{ctor,-37}{elapsedTime,16}"); } - - static void Main( ) + + static void Main() { Console.WriteLine( "This example of the TimeSpan( int, int, int ) " + - "\nconstructor generates the following output.\n" ); - Console.WriteLine( "{0,-37}{1,16}", "Constructor", "Value" ); - Console.WriteLine( "{0,-37}{1,16}", "-----------", "-----" ); + "\nconstructor generates the following output.\n"); + Console.WriteLine($"{"Constructor",-37}{"Value",16}"); + Console.WriteLine($"{"-----------",-37}{"-----",16}"); - CreateTimeSpan( 10, 20, 30 ); - CreateTimeSpan( -10, 20, 30 ); - CreateTimeSpan( 0, 0, 37230 ); - CreateTimeSpan( 1000, 2000, 3000 ); - CreateTimeSpan( 1000, -2000, -3000 ); - CreateTimeSpan( 999999, 999999, 999999 ); - } -} + CreateTimeSpan(10, 20, 30); + CreateTimeSpan(-10, 20, 30); + CreateTimeSpan(0, 0, 37230); + CreateTimeSpan(1000, 2000, 3000); + CreateTimeSpan(1000, -2000, -3000); + CreateTimeSpan(999999, 999999, 999999); + } +} /* This example of the TimeSpan( int, int, int ) diff --git a/snippets/csharp/System/TimeSpan/.ctor/ctoriiii.cs b/snippets/csharp/System/TimeSpan/.ctor/ctoriiii.cs index f3f6773488f..414722046f1 100644 --- a/snippets/csharp/System/TimeSpan/.ctor/ctoriiii.cs +++ b/snippets/csharp/System/TimeSpan/.ctor/ctoriiii.cs @@ -4,35 +4,33 @@ class Example { // Create a TimeSpan object and display its value. - static void CreateTimeSpan( int days, int hours, - int minutes, int seconds ) + static void CreateTimeSpan(int days, int hours, + int minutes, int seconds) { - TimeSpan elapsedTime = - new TimeSpan( days, hours, minutes, seconds ); + TimeSpan elapsedTime = + new(days, hours, minutes, seconds); // Format the constructor for display. - string ctor = - String.Format( "TimeSpan( {0}, {1}, {2}, {3} )", - days, hours, minutes, seconds); + string ctor = + $"TimeSpan( {days}, {hours}, {minutes}, {seconds} )"; // Display the constructor and its value. - Console.WriteLine( "{0,-44}{1,16}", - ctor, elapsedTime.ToString( ) ); + Console.WriteLine($"{ctor,-44}{elapsedTime,16}"); } - - static void Main( ) + + static void Main() { - Console.WriteLine( "{0,-44}{1,16}", "Constructor", "Value" ); - Console.WriteLine( "{0,-44}{1,16}", "-----------", "-----" ); + Console.WriteLine($"{"Constructor",-44}{"Value",16}"); + Console.WriteLine($"{"-----------",-44}{"-----",16}"); - CreateTimeSpan( 10, 20, 30, 40 ); - CreateTimeSpan( -10, 20, 30, 40 ); - CreateTimeSpan( 0, 0, 0, 937840 ); - CreateTimeSpan( 1000, 2000, 3000, 4000 ); - CreateTimeSpan( 1000, -2000, -3000, -4000 ); - CreateTimeSpan( 999999, 999999, 999999, 999999 ); - } -} + CreateTimeSpan(10, 20, 30, 40); + CreateTimeSpan(-10, 20, 30, 40); + CreateTimeSpan(0, 0, 0, 937840); + CreateTimeSpan(1000, 2000, 3000, 4000); + CreateTimeSpan(1000, -2000, -3000, -4000); + CreateTimeSpan(999999, 999999, 999999, 999999); + } +} // The example displays the following output: // Constructor Value // ----------- ----- diff --git a/snippets/csharp/System/TimeSpan/.ctor/ctoriiiii.cs b/snippets/csharp/System/TimeSpan/.ctor/ctoriiiii.cs index 6b9b823404c..f02ea710383 100644 --- a/snippets/csharp/System/TimeSpan/.ctor/ctoriiiii.cs +++ b/snippets/csharp/System/TimeSpan/.ctor/ctoriiiii.cs @@ -1,43 +1,41 @@ // -// Example of the TimeSpan( int, int, int, int, int ) constructor. +// Example of the TimeSpan( int, int, int, int, int ) constructor. using System; class TimeSpanCtorIIIIIDemo { // Create a TimeSpan object and display its value. - static void CreateTimeSpan( int days, int hours, - int minutes, int seconds, int millisec ) + static void CreateTimeSpan(int days, int hours, + int minutes, int seconds, int millisec) { - TimeSpan elapsedTime = new TimeSpan( - days, hours, minutes, seconds, millisec ); + TimeSpan elapsedTime = new( + days, hours, minutes, seconds, millisec); // Format the constructor for display. - string ctor = - String.Format( "TimeSpan( {0}, {1}, {2}, {3}, {4} )", - days, hours, minutes, seconds, millisec); + string ctor = + $"TimeSpan( {days}, {hours}, {minutes}, {seconds}, {millisec} )"; // Display the constructor and its value. - Console.WriteLine( "{0,-48}{1,24}", - ctor, elapsedTime.ToString( ) ); + Console.WriteLine($"{ctor,-48}{elapsedTime,24}"); } - static void Main( ) + static void Main() { - Console.WriteLine( + Console.WriteLine( "This example of the " + "TimeSpan( int, int, int, int, int ) " + - "\nconstructor generates the following output.\n" ); - Console.WriteLine( "{0,-48}{1,16}", "Constructor", "Value" ); - Console.WriteLine( "{0,-48}{1,16}", "-----------", "-----" ); + "\nconstructor generates the following output.\n"); + Console.WriteLine($"{"Constructor",-48}{"Value",16}"); + Console.WriteLine($"{"-----------",-48}{"-----",16}"); - CreateTimeSpan( 10, 20, 30, 40, 50 ); - CreateTimeSpan( -10, 20, 30, 40, 50 ); - CreateTimeSpan( 0, 0, 0, 0, 937840050 ); - CreateTimeSpan( 1111, 2222, 3333, 4444, 5555 ); - CreateTimeSpan( 1111, -2222, -3333, -4444, -5555 ); - CreateTimeSpan( 99999, 99999, 99999, 99999, 99999 ); - } -} + CreateTimeSpan(10, 20, 30, 40, 50); + CreateTimeSpan(-10, 20, 30, 40, 50); + CreateTimeSpan(0, 0, 0, 0, 937840050); + CreateTimeSpan(1111, 2222, 3333, 4444, 5555); + CreateTimeSpan(1111, -2222, -3333, -4444, -5555); + CreateTimeSpan(99999, 99999, 99999, 99999, 99999); + } +} /* This example of the TimeSpan( int, int, int, int, int ) diff --git a/snippets/csharp/System/TimeSpan/.ctor/ctorl.cs b/snippets/csharp/System/TimeSpan/.ctor/ctorl.cs index acea73f41cf..cae8d36226d 100644 --- a/snippets/csharp/System/TimeSpan/.ctor/ctorl.cs +++ b/snippets/csharp/System/TimeSpan/.ctor/ctorl.cs @@ -5,41 +5,41 @@ class TimeSpanCtorLDemo { // Create a TimeSpan object and display its value. - static void CreateTimeSpan( long ticks ) + static void CreateTimeSpan(long ticks) { - TimeSpan elapsedTime = new TimeSpan( ticks ); + TimeSpan elapsedTime = new(ticks); // Format the constructor for display. - string ctor = String.Format( "TimeSpan( {0} )", ticks ); + string ctor = $"TimeSpan( {ticks} )"; // Pad the end of a TimeSpan string with spaces if // it does not contain milliseconds. - string elapsedStr = elapsedTime.ToString( ); - int pointIndex = elapsedStr.IndexOf( ':' ); + string elapsedStr = elapsedTime.ToString(); + int pointIndex = elapsedStr.IndexOf(':'); - pointIndex = elapsedStr.IndexOf( '.', pointIndex ); - if( pointIndex < 0 ) elapsedStr += " "; + pointIndex = elapsedStr.IndexOf('.', pointIndex); + if (pointIndex < 0) elapsedStr += " "; // Display the constructor and its value. - Console.WriteLine( "{0,-33}{1,24}", ctor, elapsedStr ); + Console.WriteLine($"{ctor,-33}{elapsedStr,24}"); } - - static void Main( ) + + static void Main() { - Console.WriteLine( + Console.WriteLine( "This example of the TimeSpan( long ) constructor " + - "\ngenerates the following output.\n" ); - Console.WriteLine( "{0,-33}{1,16}", "Constructor", "Value" ); - Console.WriteLine( "{0,-33}{1,16}", "-----------", "-----" ); - - CreateTimeSpan( 1 ); - CreateTimeSpan( 999999 ); - CreateTimeSpan( -1000000000000 ); - CreateTimeSpan( 18012202000000 ); - CreateTimeSpan( 999999999999999999 ); - CreateTimeSpan( 1000000000000000000 ); - } -} + "\ngenerates the following output.\n"); + Console.WriteLine($"{"Constructor",-33}{"Value",16}"); + Console.WriteLine($"{"-----------",-33}{"-----",16}"); + + CreateTimeSpan(1); + CreateTimeSpan(999999); + CreateTimeSpan(-1000000000000); + CreateTimeSpan(18012202000000); + CreateTimeSpan(999999999999999999); + CreateTimeSpan(1000000000000000000); + } +} /* This example of the TimeSpan( long ) constructor diff --git a/snippets/csharp/System/TimeSpan/Add/add1.cs b/snippets/csharp/System/TimeSpan/Add/add1.cs index 4d8254b602f..6a30030219b 100644 --- a/snippets/csharp/System/TimeSpan/Add/add1.cs +++ b/snippets/csharp/System/TimeSpan/Add/add1.cs @@ -2,34 +2,34 @@ public class Example { - public static void Main() - { - // - TimeSpan baseTimeSpan = new TimeSpan(1, 12, 15, 16); + public static void Main() + { + // + TimeSpan baseTimeSpan = new(1, 12, 15, 16); - // Create an array of timespan intervals. - TimeSpan[] intervals = { - TimeSpan.FromDays(1.5), - TimeSpan.FromHours(1.5), - TimeSpan.FromMinutes(45), + // Create an array of timespan intervals. + TimeSpan[] intervals = [ + TimeSpan.FromDays(1.5), + TimeSpan.FromHours(1.5), + TimeSpan.FromMinutes(45), TimeSpan.FromMilliseconds(505), - new TimeSpan(1, 17, 32, 20), - new TimeSpan(-8, 30, 0) - }; + new TimeSpan(1, 17, 32, 20), + new TimeSpan(-8, 30, 0) + ]; - // Calculate a new time interval by adding each element to the base interval. - foreach (var interval in intervals) - Console.WriteLine(@"{0,-10:g} {3} {1,15:%d\:hh\:mm\:ss\.ffff} = {2:%d\:hh\:mm\:ss\.ffff}", - baseTimeSpan, interval, baseTimeSpan.Add(interval), - interval < TimeSpan.Zero ? "-" : "+"); + // Calculate a new time interval by adding each element to the base interval. + foreach (var interval in intervals) + Console.WriteLine(@"{0,-10:g} {3} {1,15:%d\:hh\:mm\:ss\.ffff} = {2:%d\:hh\:mm\:ss\.ffff}", + baseTimeSpan, interval, baseTimeSpan.Add(interval), + interval < TimeSpan.Zero ? "-" : "+"); - // The example displays the following output: - // 1:12:15:16 + 1:12:00:00.0000 = 3:00:15:16.0000 - // 1:12:15:16 + 0:01:30:00.0000 = 1:13:45:16.0000 - // 1:12:15:16 + 0:00:45:00.0000 = 1:13:00:16.0000 - // 1:12:15:16 + 0:00:00:00.5050 = 1:12:15:16.5050 - // 1:12:15:16 + 1:17:32:20.0000 = 3:05:47:36.0000 - // 1:12:15:16 - 0:07:30:00.0000 = 1:04:45:16.0000 - // - } + // The example displays the following output: + // 1:12:15:16 + 1:12:00:00.0000 = 3:00:15:16.0000 + // 1:12:15:16 + 0:01:30:00.0000 = 1:13:45:16.0000 + // 1:12:15:16 + 0:00:45:00.0000 = 1:13:00:16.0000 + // 1:12:15:16 + 0:00:00:00.5050 = 1:12:15:16.5050 + // 1:12:15:16 + 1:17:32:20.0000 = 3:05:47:36.0000 + // 1:12:15:16 - 0:07:30:00.0000 = 1:04:45:16.0000 + // + } } diff --git a/snippets/csharp/System/TimeSpan/Compare/compare1.cs b/snippets/csharp/System/TimeSpan/Compare/compare1.cs index 14e10e51a83..0a25d8d21c9 100644 --- a/snippets/csharp/System/TimeSpan/Compare/compare1.cs +++ b/snippets/csharp/System/TimeSpan/Compare/compare1.cs @@ -6,27 +6,25 @@ static void Main() { // // Define a time interval equal to two hours. - TimeSpan baseInterval = new TimeSpan( 2, 0, 0); + TimeSpan baseInterval = new(2, 0, 0); // Define an array of time intervals to compare with // the base interval. - TimeSpan[] spans = { + TimeSpan[] spans = [ TimeSpan.FromSeconds(-2.5), TimeSpan.FromMinutes(20), - TimeSpan.FromHours(1), + TimeSpan.FromHours(1), TimeSpan.FromMinutes(90), - baseInterval, - TimeSpan.FromDays(.5), - TimeSpan.FromDays(1) - }; + baseInterval, + TimeSpan.FromDays(.5), + TimeSpan.FromDays(1) + ]; // Compare the time intervals. - foreach (var span in spans) { - int result = TimeSpan.Compare(baseInterval, span); - Console.WriteLine("{0} {1} {2} (Compare returns {3})", - baseInterval, - result == 1 ? ">" : result == 0 ? "=" : "<", - span, result); + foreach (var span in spans) + { + int result = TimeSpan.Compare(baseInterval, span); + Console.WriteLine($"{baseInterval} {(result == 1 ? ">" : result == 0 ? "=" : "<")} {span} (Compare returns {result})"); } // The example displays the following output: @@ -38,5 +36,5 @@ static void Main() // 02:00:00 < 12:00:00 (Compare returns -1) // 02:00:00 < 1.00:00:00 (Compare returns -1) // - } -} + } +} diff --git a/snippets/csharp/System/TimeSpan/CompareTo/comp_equal.cs b/snippets/csharp/System/TimeSpan/CompareTo/comp_equal.cs index 608e000cca8..3bea5a23db7 100644 --- a/snippets/csharp/System/TimeSpan/CompareTo/comp_equal.cs +++ b/snippets/csharp/System/TimeSpan/CompareTo/comp_equal.cs @@ -1,51 +1,51 @@ // -// Example of the TimeSpan.Compare( TimeSpan, TimeSpan ) and +// Example of the TimeSpan.Compare( TimeSpan, TimeSpan ) and // TimeSpan.Equals( TimeSpan, TimeSpan ) methods. using System; class TSCompareEqualsDemo { - const string dataFmt = "{0,-38}{1}" ; + const string dataFmt = "{0,-38}{1}"; // Compare TimeSpan parameters, and display them with the results. - static void CompareTimeSpans( TimeSpan Left, TimeSpan Right, - string RightText ) + static void CompareTimeSpans(TimeSpan Left, TimeSpan Right, + string RightText) { - Console.WriteLine( ); - Console.WriteLine( dataFmt, "Right: " + RightText, Right ); - Console.WriteLine( dataFmt, "TimeSpan.Equals( Left, Right )", - TimeSpan.Equals( Left, Right ) ); - Console.WriteLine( dataFmt, - "TimeSpan.Compare( Left, Right )", - TimeSpan.Compare( Left, Right ) ); + Console.WriteLine(); + Console.WriteLine(dataFmt, "Right: " + RightText, Right); + Console.WriteLine(dataFmt, "TimeSpan.Equals( Left, Right )", + TimeSpan.Equals(Left, Right)); + Console.WriteLine(dataFmt, + "TimeSpan.Compare( Left, Right )", + TimeSpan.Compare(Left, Right)); } - static void Main( ) + static void Main() { - TimeSpan Left = new TimeSpan( 2, 0, 0 ); + TimeSpan Left = new(2, 0, 0); Console.WriteLine( "This example of the TimeSpan.Equals( TimeSpan, Time" + "Span ) and \nTimeSpan.Compare( TimeSpan, TimeSpan ) " + "methods generates the \nfollowing output by creating " + "several different TimeSpan \nobjects and comparing " + - "them with a 2-hour TimeSpan.\n" ); - Console.WriteLine( dataFmt, "Left: TimeSpan( 2, 0, 0 )", - Left ); + "them with a 2-hour TimeSpan.\n"); + Console.WriteLine(dataFmt, "Left: TimeSpan( 2, 0, 0 )", + Left); // Create objects to compare with a 2-hour TimeSpan. - CompareTimeSpans( Left, new TimeSpan( 0, 120, 0 ), - "TimeSpan( 0, 120, 0 )" ); - CompareTimeSpans( Left, new TimeSpan( 2, 0, 1 ), - "TimeSpan( 2, 0, 1 )" ); - CompareTimeSpans( Left, new TimeSpan( 2, 0, -1 ), + CompareTimeSpans(Left, new TimeSpan(0, 120, 0), + "TimeSpan( 0, 120, 0 )"); + CompareTimeSpans(Left, new TimeSpan(2, 0, 1), + "TimeSpan( 2, 0, 1 )"); + CompareTimeSpans(Left, new TimeSpan(2, 0, -1), "TimeSpan( 2, 0, -1 )"); - CompareTimeSpans( Left, new TimeSpan( 72000000000 ), - "TimeSpan( 72000000000 )" ); - CompareTimeSpans( Left, TimeSpan.FromDays( 1.0 / 12D ), - "TimeSpan.FromDays( 1 / 12 )" ); - } -} + CompareTimeSpans(Left, new TimeSpan(72000000000), + "TimeSpan( 72000000000 )"); + CompareTimeSpans(Left, TimeSpan.FromDays(1.0 / 12D), + "TimeSpan.FromDays( 1 / 12 )"); + } +} /* This example of the TimeSpan.Equals( TimeSpan, TimeSpan ) and @@ -74,5 +74,5 @@ objects and comparing them with a 2-hour TimeSpan. Right: TimeSpan.FromDays( 1 / 12 ) 02:00:00 TimeSpan.Equals( Left, Right ) True TimeSpan.Compare( Left, Right ) 0 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/CompareTo/cto_eq_obj.cs b/snippets/csharp/System/TimeSpan/CompareTo/cto_eq_obj.cs index 81a4f8acf57..0bbf8e67e6e 100644 --- a/snippets/csharp/System/TimeSpan/CompareTo/cto_eq_obj.cs +++ b/snippets/csharp/System/TimeSpan/CompareTo/cto_eq_obj.cs @@ -1,60 +1,57 @@ // -// Example of the TimeSpan.CompareTo( Object ) and +// Example of the TimeSpan.CompareTo( Object ) and // TimeSpan.Equals( Object ) methods. using System; class TSCompToEqualsObjDemo { - // Compare the TimeSpan to the Object parameters, + // Compare the TimeSpan to the Object parameters, // and display the Object parameters with the results. - static void CompTimeSpanToObject( TimeSpan Left, object Right, - string RightText ) + static void CompTimeSpanToObject(TimeSpan Left, object Right, + string RightText) { - Console.WriteLine( "{0,-33}{1}", "Object: " + RightText, - Right ); - Console.WriteLine( "{0,-33}{1}", "Left.Equals( Object )", - Left.Equals( Right ) ); - Console.Write( "{0,-33}", "Left.CompareTo( Object )" ); + Console.WriteLine($"{"Object: " + RightText,-33}{Right}"); + Console.WriteLine($"{"Left.Equals( Object )",-33}{Left.Equals(Right)}"); + Console.Write($"{"Left.CompareTo( Object )",-33}"); // Catch the exception if CompareTo( ) throws one. try { - Console.WriteLine( "{0}\n", Left.CompareTo( Right ) ); + Console.WriteLine($"{Left.CompareTo(Right)}\n"); } - catch( Exception ex ) + catch (Exception ex) { - Console.WriteLine( "Error: {0}\n", ex.Message ); + Console.WriteLine($"Error: {ex.Message}\n"); } } - static void Main( ) + static void Main() { - TimeSpan Left = new TimeSpan( 0, 5, 0 ); + TimeSpan Left = new(0, 5, 0); Console.WriteLine( "This example of the TimeSpan.Equals( Object ) " + "and \nTimeSpan.CompareTo( Object ) methods generates " + "the \nfollowing output by creating several different " + "TimeSpan \nobjects and comparing them with a " + - "5-minute TimeSpan.\n" ); - Console.WriteLine( "{0,-33}{1}\n", - "Left: TimeSpan( 0, 5, 0 )", Left ); + "5-minute TimeSpan.\n"); + Console.WriteLine($"{"Left: TimeSpan( 0, 5, 0 )",-33}{Left}\n"); // Create objects to compare with a 5-minute TimeSpan. - CompTimeSpanToObject( Left, new TimeSpan( 0, 0, 300 ), - "TimeSpan( 0, 0, 300 )" ); - CompTimeSpanToObject( Left, new TimeSpan( 0, 5, 1 ), - "TimeSpan( 0, 5, 1 )" ); - CompTimeSpanToObject( Left, new TimeSpan( 0, 5, -1 ), - "TimeSpan( 0, 5, -1 )" ); - CompTimeSpanToObject( Left, new TimeSpan( 3000000000 ), - "TimeSpan( 3000000000 )" ); - CompTimeSpanToObject( Left, 3000000000L, - "long 3000000000L" ); - CompTimeSpanToObject( Left, "00:05:00", - "string \"00:05:00\"" ); - } -} + CompTimeSpanToObject(Left, new TimeSpan(0, 0, 300), + "TimeSpan( 0, 0, 300 )"); + CompTimeSpanToObject(Left, new TimeSpan(0, 5, 1), + "TimeSpan( 0, 5, 1 )"); + CompTimeSpanToObject(Left, new TimeSpan(0, 5, -1), + "TimeSpan( 0, 5, -1 )"); + CompTimeSpanToObject(Left, new TimeSpan(3000000000), + "TimeSpan( 3000000000 )"); + CompTimeSpanToObject(Left, 3000000000L, + "long 3000000000L"); + CompTimeSpanToObject(Left, "00:05:00", + "string \"00:05:00\""); + } +} /* This example of the TimeSpan.Equals( Object ) and diff --git a/snippets/csharp/System/TimeSpan/Days/properties.cs b/snippets/csharp/System/TimeSpan/Days/properties.cs index 15bf2ff4daa..350b7e65123 100644 --- a/snippets/csharp/System/TimeSpan/Days/properties.cs +++ b/snippets/csharp/System/TimeSpan/Days/properties.cs @@ -6,45 +6,37 @@ class Example static void Main() { // Create and display a TimeSpan value of 1 tick. - Console.Write("\n{0,-45}", "TimeSpan( 1 )"); + Console.Write($"\n{"TimeSpan( 1 )",-45}"); ShowTimeSpanProperties(new TimeSpan(1)); // Create a TimeSpan value with a large number of ticks. - Console.Write("\n{0,-45}", "TimeSpan( 111222333444555 )"); + Console.Write($"\n{"TimeSpan( 111222333444555 )",-45}"); ShowTimeSpanProperties(new TimeSpan(111222333444555)); // This TimeSpan has all fields specified. - Console.Write("\n{0,-45}", "TimeSpan( 10, 20, 30, 40, 50 )"); + Console.Write($"\n{"TimeSpan( 10, 20, 30, 40, 50 )",-45}"); ShowTimeSpanProperties(new TimeSpan(10, 20, 30, 40, 50)); // This TimeSpan has all fields overflowing. - Console.Write("\n{0,-45}", - "TimeSpan( 1111, 2222, 3333, 4444, 5555 )"); + Console.Write($"\n{"TimeSpan( 1111, 2222, 3333, 4444, 5555 )",-45}"); ShowTimeSpanProperties( new TimeSpan(1111, 2222, 3333, 4444, 5555)); // This TimeSpan is based on a number of days. - Console.Write("\n{0,-45}", "FromDays( 20.84745602 )"); - ShowTimeSpanProperties(TimeSpan.FromDays( 20.84745602)); + Console.Write($"\n{"FromDays( 20.84745602 )",-45}"); + ShowTimeSpanProperties(TimeSpan.FromDays(20.84745602)); } - static void ShowTimeSpanProperties( TimeSpan interval ) + static void ShowTimeSpanProperties(TimeSpan interval) { - Console.WriteLine("{0,21}", interval); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N3}", "Days", - interval.Days, "TotalDays", interval.TotalDays); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N3}", "Hours", - interval.Hours, "TotalHours", interval.TotalHours); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N3}", "Minutes", - interval.Minutes, "TotalMinutes", interval.TotalMinutes); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N3}", "Seconds", - interval.Seconds, "TotalSeconds", interval.TotalSeconds); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N3}", "Milliseconds", - interval.Milliseconds, "TotalMilliseconds", - interval.TotalMilliseconds); - Console.WriteLine("{0,-12}{1,8} {2,-18}{3,21:N0}", null, null, - "Ticks", interval.Ticks); - } + Console.WriteLine($"{interval,21}"); + Console.WriteLine($"{"Days",-12}{interval.Days,8} {"TotalDays",-18}{interval.TotalDays,21:N3}"); + Console.WriteLine($"{"Hours",-12}{interval.Hours,8} {"TotalHours",-18}{interval.TotalHours,21:N3}"); + Console.WriteLine($"{"Minutes",-12}{interval.Minutes,8} {"TotalMinutes",-18}{interval.TotalMinutes,21:N3}"); + Console.WriteLine($"{"Seconds",-12}{interval.Seconds,8} {"TotalSeconds",-18}{interval.TotalSeconds,21:N3}"); + Console.WriteLine($"{"Milliseconds",-12}{interval.Milliseconds,8} {"TotalMilliseconds",-18}{interval.TotalMilliseconds,21:N3}"); + Console.WriteLine($"{null,-12}{null,8} {"Ticks",-18}{interval.Ticks,21:N0}"); + } } // The example displays the following output if the current culture is en-US: // TimeSpan( 1 ) 00:00:00.0000001 diff --git a/snippets/csharp/System/TimeSpan/Duration/dura_nega_una.cs b/snippets/csharp/System/TimeSpan/Duration/dura_nega_una.cs index 4e15130925d..2cb69588d73 100644 --- a/snippets/csharp/System/TimeSpan/Duration/dura_nega_una.cs +++ b/snippets/csharp/System/TimeSpan/Duration/dura_nega_una.cs @@ -5,14 +5,14 @@ class DuraNegaUnaryDemo { - const string dataFmt = "{0,22}{1,22}{2,22}" ; + const string dataFmt = "{0,22}{1,22}{2,22}"; - static void ShowDurationNegate( TimeSpan interval ) + static void ShowDurationNegate(TimeSpan interval) { - // Display the TimeSpan value and the results of the + // Display the TimeSpan value and the results of the // Duration and Negate methods. - Console.WriteLine( dataFmt, - interval, interval.Duration( ), interval.Negate( ) ); + Console.WriteLine(dataFmt, + interval, interval.Duration(), interval.Negate()); } static void Main() @@ -21,26 +21,26 @@ static void Main() "This example of TimeSpan.Duration( ), " + "TimeSpan.Negate( ), \nand the TimeSpan Unary " + "Negation and Unary Plus operators \n" + - "generates the following output.\n" ); - Console.WriteLine( dataFmt, - "TimeSpan", "Duration( )", "Negate( )" ); - Console.WriteLine( dataFmt, - "--------", "-----------", "---------" ); + "generates the following output.\n"); + Console.WriteLine(dataFmt, + "TimeSpan", "Duration( )", "Negate( )"); + Console.WriteLine(dataFmt, + "--------", "-----------", "---------"); // Create TimeSpan objects and apply the Unary Negation // and Unary Plus operators to them. - ShowDurationNegate( new TimeSpan( 1 ) ); - ShowDurationNegate( new TimeSpan( -1234567 ) ); - ShowDurationNegate( - + new TimeSpan( 0, 0, 10, -20, -30 ) ); - ShowDurationNegate( - + new TimeSpan( 0, -10, 20, -30, 40 ) ); - ShowDurationNegate( - - new TimeSpan( 1, 10, 20, 40, 160 ) ); - ShowDurationNegate( - - new TimeSpan( -10, -20, -30, -40, -50 ) ); - } -} + ShowDurationNegate(new TimeSpan(1)); + ShowDurationNegate(new TimeSpan(-1234567)); + ShowDurationNegate( + +new TimeSpan(0, 0, 10, -20, -30)); + ShowDurationNegate( + +new TimeSpan(0, -10, 20, -30, 40)); + ShowDurationNegate( + -new TimeSpan(1, 10, 20, 40, 160)); + ShowDurationNegate( + -new TimeSpan(-10, -20, -30, -40, -50)); + } +} /* This example of TimeSpan.Duration( ), TimeSpan.Negate( ), @@ -55,5 +55,5 @@ TimeSpan Duration( ) Negate( ) -09:40:29.9600000 09:40:29.9600000 09:40:29.9600000 -1.10:20:40.1600000 1.10:20:40.1600000 1.10:20:40.1600000 10.20:30:40.0500000 10.20:30:40.0500000 -10.20:30:40.0500000 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/FromDays/System.TimeSpan.FromMinutes.cs b/snippets/csharp/System/TimeSpan/FromDays/System.TimeSpan.FromMinutes.cs index 977271ac7f6..d20af5e45e3 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/System.TimeSpan.FromMinutes.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/System.TimeSpan.FromMinutes.cs @@ -2,53 +2,53 @@ public class Class1 { - public static void Main() - { - Class1 cl1 = new Class1(); - cl1.InstantiateMinutes(); - cl1.InstantiateDays(); - cl1.InstantiateHours(); - cl1.InstantiateMilliseconds(); - cl1.InstantiateSeconds(); - } + public static void Main() + { + Class1 cl1 = new(); + cl1.InstantiateMinutes(); + cl1.InstantiateDays(); + cl1.InstantiateHours(); + cl1.InstantiateMilliseconds(); + cl1.InstantiateSeconds(); + } - private void InstantiateMinutes() - { - // - // The following throws an OverflowException at runtime - TimeSpan maxSpan = TimeSpan.FromMinutes(TimeSpan.MaxValue.TotalMinutes); - // - } + private void InstantiateMinutes() + { + // + // The following throws an OverflowException at runtime + TimeSpan maxSpan = TimeSpan.FromMinutes(TimeSpan.MaxValue.TotalMinutes); + // + } - private void InstantiateDays() - { - // - // The following throws an OverflowException at runtime - TimeSpan maxSpan = TimeSpan.FromDays(TimeSpan.MaxValue.TotalDays); - // - } - - private void InstantiateHours() - { - // - // The following throws an OverflowException at runtime - TimeSpan maxSpan = TimeSpan.FromHours(TimeSpan.MaxValue.TotalHours); - // - } + private void InstantiateDays() + { + // + // The following throws an OverflowException at runtime + TimeSpan maxSpan = TimeSpan.FromDays(TimeSpan.MaxValue.TotalDays); + // + } - private void InstantiateMilliseconds() - { - // - // The following throws an OverflowException at runtime - TimeSpan maxSpan = TimeSpan.FromMilliseconds(TimeSpan.MaxValue.TotalMilliseconds); - // - } + private void InstantiateHours() + { + // + // The following throws an OverflowException at runtime + TimeSpan maxSpan = TimeSpan.FromHours(TimeSpan.MaxValue.TotalHours); + // + } - private void InstantiateSeconds() - { - // - // The following throws an OverflowException at runtime - TimeSpan maxSpan = TimeSpan.FromSeconds(TimeSpan.MaxValue.TotalSeconds); - // - } + private void InstantiateMilliseconds() + { + // + // The following throws an OverflowException at runtime + TimeSpan maxSpan = TimeSpan.FromMilliseconds(TimeSpan.MaxValue.TotalMilliseconds); + // + } + + private void InstantiateSeconds() + { + // + // The following throws an OverflowException at runtime + TimeSpan maxSpan = TimeSpan.FromSeconds(TimeSpan.MaxValue.TotalSeconds); + // + } } diff --git a/snippets/csharp/System/TimeSpan/FromDays/fromdays.cs b/snippets/csharp/System/TimeSpan/FromDays/fromdays.cs index 11c3697cb30..f275ead79cb 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/fromdays.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/fromdays.cs @@ -4,44 +4,42 @@ class FromDaysDemo { - static void GenTimeSpanFromDays( double days ) + static void GenTimeSpanFromDays(double days) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of days. - TimeSpan interval = TimeSpan.FromDays( days ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromDays(days); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", days, timeInterval ); - } + Console.WriteLine($"{days,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromDays( double )\n" + - "generates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromDays", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "--------", "--------" ); + "generates the following output.\n"); + Console.WriteLine($"{"FromDays",21}{"TimeSpan",18}"); + Console.WriteLine($"{"--------",21}{"--------",18}"); - GenTimeSpanFromDays( 0.000000006 ); - GenTimeSpanFromDays( 0.000000017 ); - GenTimeSpanFromDays( 0.000123456 ); - GenTimeSpanFromDays( 1.234567898 ); - GenTimeSpanFromDays( 12345.678987654 ); - GenTimeSpanFromDays( 0.000011574 ); - GenTimeSpanFromDays( 0.000694444 ); - GenTimeSpanFromDays( 0.041666666 ); - GenTimeSpanFromDays( 1 ); - GenTimeSpanFromDays( 20.84745602 ); - } -} + GenTimeSpanFromDays(0.000000006); + GenTimeSpanFromDays(0.000000017); + GenTimeSpanFromDays(0.000123456); + GenTimeSpanFromDays(1.234567898); + GenTimeSpanFromDays(12345.678987654); + GenTimeSpanFromDays(0.000011574); + GenTimeSpanFromDays(0.000694444); + GenTimeSpanFromDays(0.041666666); + GenTimeSpanFromDays(1); + GenTimeSpanFromDays(20.84745602); + } +} /* This example of TimeSpan.FromDays( double ) @@ -59,5 +57,5 @@ FromDays TimeSpan 0.041666666 01:00:00 1 1.00:00:00 20.84745602 20.20:20:20.2000000 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/FromDays/fromhours.cs b/snippets/csharp/System/TimeSpan/FromDays/fromhours.cs index ab7476e372f..9b49c4355d2 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/fromhours.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/fromhours.cs @@ -4,44 +4,42 @@ class FromHoursDemo { - static void GenTimeSpanFromHours( double hours ) + static void GenTimeSpanFromHours(double hours) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of hours. - TimeSpan interval = TimeSpan.FromHours( hours ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromHours(hours); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", hours, timeInterval ); - } + Console.WriteLine($"{hours,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromHours( double )\n" + - "generates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromHours", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "---------", "--------" ); + "generates the following output.\n"); + Console.WriteLine($"{"FromHours",21}{"TimeSpan",18}"); + Console.WriteLine($"{"---------",21}{"--------",18}"); - GenTimeSpanFromHours( 0.0000002 ); - GenTimeSpanFromHours( 0.0000003 ); - GenTimeSpanFromHours( 0.0012345 ); - GenTimeSpanFromHours( 12.3456789 ); - GenTimeSpanFromHours( 123456.7898765 ); - GenTimeSpanFromHours( 0.0002777 ); - GenTimeSpanFromHours( 0.0166666 ); - GenTimeSpanFromHours( 1 ); - GenTimeSpanFromHours( 24 ); - GenTimeSpanFromHours( 500.3389445 ); - } -} + GenTimeSpanFromHours(0.0000002); + GenTimeSpanFromHours(0.0000003); + GenTimeSpanFromHours(0.0012345); + GenTimeSpanFromHours(12.3456789); + GenTimeSpanFromHours(123456.7898765); + GenTimeSpanFromHours(0.0002777); + GenTimeSpanFromHours(0.0166666); + GenTimeSpanFromHours(1); + GenTimeSpanFromHours(24); + GenTimeSpanFromHours(500.3389445); + } +} /* This example of TimeSpan.FromHours( double ) @@ -59,5 +57,5 @@ FromHours TimeSpan 1 01:00:00 24 1.00:00:00 500.3389445 20.20:20:20.2000000 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/FromDays/frommillisec.cs b/snippets/csharp/System/TimeSpan/FromDays/frommillisec.cs index 4c41285c1c0..74c2d5fba34 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/frommillisec.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/frommillisec.cs @@ -4,44 +4,42 @@ class FromMillisecDemo { - static void GenTimeSpanFromMillisec( Double millisec ) + static void GenTimeSpanFromMillisec(double millisec) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of milliseconds. - TimeSpan interval = TimeSpan.FromMilliseconds( millisec ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromMilliseconds(millisec); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", millisec, timeInterval ); - } + Console.WriteLine($"{millisec,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromMilliseconds( " + - "double )\ngenerates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromMilliseconds", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "----------------", "--------" ); + "double )\ngenerates the following output.\n"); + Console.WriteLine($"{"FromMilliseconds",21}{"TimeSpan",18}"); + Console.WriteLine($"{"----------------",21}{"--------",18}"); - GenTimeSpanFromMillisec( 1 ); - GenTimeSpanFromMillisec( 1.5 ); - GenTimeSpanFromMillisec( 12345.6 ); - GenTimeSpanFromMillisec( 123456789.8 ); - GenTimeSpanFromMillisec( 1234567898765.4 ); - GenTimeSpanFromMillisec( 1000 ); - GenTimeSpanFromMillisec( 60000 ); - GenTimeSpanFromMillisec( 3600000 ); - GenTimeSpanFromMillisec( 86400000 ); - GenTimeSpanFromMillisec( 1801220200 ); - } -} + GenTimeSpanFromMillisec(1); + GenTimeSpanFromMillisec(1.5); + GenTimeSpanFromMillisec(12345.6); + GenTimeSpanFromMillisec(123456789.8); + GenTimeSpanFromMillisec(1234567898765.4); + GenTimeSpanFromMillisec(1000); + GenTimeSpanFromMillisec(60000); + GenTimeSpanFromMillisec(3600000); + GenTimeSpanFromMillisec(86400000); + GenTimeSpanFromMillisec(1801220200); + } +} /* This example of TimeSpan.FromMilliseconds( double ) diff --git a/snippets/csharp/System/TimeSpan/FromDays/fromminutes.cs b/snippets/csharp/System/TimeSpan/FromDays/fromminutes.cs index c60b80fa9e9..091b935590a 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/fromminutes.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/fromminutes.cs @@ -4,44 +4,42 @@ class FromMinutesDemo { - static void GenTimeSpanFromMinutes( double minutes ) + static void GenTimeSpanFromMinutes(double minutes) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of minutes. - TimeSpan interval = TimeSpan.FromMinutes( minutes ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromMinutes(minutes); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", minutes, timeInterval ); - } + Console.WriteLine($"{minutes,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromMinutes( double )\n" + - "generates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromMinutes", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "-----------", "--------" ); + "generates the following output.\n"); + Console.WriteLine($"{"FromMinutes",21}{"TimeSpan",18}"); + Console.WriteLine($"{"-----------",21}{"--------",18}"); - GenTimeSpanFromMinutes( 0.00001 ); - GenTimeSpanFromMinutes( 0.00002 ); - GenTimeSpanFromMinutes( 0.12345 ); - GenTimeSpanFromMinutes( 1234.56789 ); - GenTimeSpanFromMinutes( 12345678.98765 ); - GenTimeSpanFromMinutes( 0.01666 ); - GenTimeSpanFromMinutes( 1 ); - GenTimeSpanFromMinutes( 60 ); - GenTimeSpanFromMinutes( 1440 ); - GenTimeSpanFromMinutes( 30020.33667 ); - } -} + GenTimeSpanFromMinutes(0.00001); + GenTimeSpanFromMinutes(0.00002); + GenTimeSpanFromMinutes(0.12345); + GenTimeSpanFromMinutes(1234.56789); + GenTimeSpanFromMinutes(12345678.98765); + GenTimeSpanFromMinutes(0.01666); + GenTimeSpanFromMinutes(1); + GenTimeSpanFromMinutes(60); + GenTimeSpanFromMinutes(1440); + GenTimeSpanFromMinutes(30020.33667); + } +} /* This example of TimeSpan.FromMinutes( double ) @@ -59,5 +57,5 @@ FromMinutes TimeSpan 60 01:00:00 1440 1.00:00:00 30020.33667 20.20:20:20.2000000 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/FromDays/fromseconds.cs b/snippets/csharp/System/TimeSpan/FromDays/fromseconds.cs index 9fbd25c99f6..db0b9746b25 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/fromseconds.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/fromseconds.cs @@ -4,44 +4,42 @@ class FromSecondsDemo { - static void GenTimeSpanFromSeconds( double seconds ) + static void GenTimeSpanFromSeconds(double seconds) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of seconds. - TimeSpan interval = TimeSpan.FromSeconds( seconds ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromSeconds(seconds); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", seconds, timeInterval ); - } + Console.WriteLine($"{seconds,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromSeconds( double )\n" + - "generates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromSeconds", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "-----------", "--------" ); + "generates the following output.\n"); + Console.WriteLine($"{"FromSeconds",21}{"TimeSpan",18}"); + Console.WriteLine($"{"-----------",21}{"--------",18}"); - GenTimeSpanFromSeconds( 0.001 ); - GenTimeSpanFromSeconds( 0.0015 ); - GenTimeSpanFromSeconds( 12.3456 ); - GenTimeSpanFromSeconds( 123456.7898 ); - GenTimeSpanFromSeconds( 1234567898.7654 ); - GenTimeSpanFromSeconds( 1 ); - GenTimeSpanFromSeconds( 60 ); - GenTimeSpanFromSeconds( 3600 ); - GenTimeSpanFromSeconds( 86400 ); - GenTimeSpanFromSeconds( 1801220.2 ); - } -} + GenTimeSpanFromSeconds(0.001); + GenTimeSpanFromSeconds(0.0015); + GenTimeSpanFromSeconds(12.3456); + GenTimeSpanFromSeconds(123456.7898); + GenTimeSpanFromSeconds(1234567898.7654); + GenTimeSpanFromSeconds(1); + GenTimeSpanFromSeconds(60); + GenTimeSpanFromSeconds(3600); + GenTimeSpanFromSeconds(86400); + GenTimeSpanFromSeconds(1801220.2); + } +} /* This example of TimeSpan.FromSeconds( double ) @@ -59,5 +57,5 @@ FromSeconds TimeSpan 3600 01:00:00 86400 1.00:00:00 1801220.2 20.20:20:20.2000000 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/FromDays/fromticks.cs b/snippets/csharp/System/TimeSpan/FromDays/fromticks.cs index 51361c5034e..d12342c7df3 100644 --- a/snippets/csharp/System/TimeSpan/FromDays/fromticks.cs +++ b/snippets/csharp/System/TimeSpan/FromDays/fromticks.cs @@ -4,44 +4,42 @@ class FromTicksDemo { - static void GenTimeSpanFromTicks( long ticks ) + static void GenTimeSpanFromTicks(long ticks) { - // Create a TimeSpan object and TimeSpan string from + // Create a TimeSpan object and TimeSpan string from // a number of ticks. - TimeSpan interval = TimeSpan.FromTicks( ticks ); - string timeInterval = interval.ToString( ); + TimeSpan interval = TimeSpan.FromTicks(ticks); + string timeInterval = interval.ToString(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,21}{1,26}", ticks, timeInterval ); - } + Console.WriteLine($"{ticks,21}{timeInterval,26}"); + } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.FromTicks( long )\n" + - "generates the following output.\n" ); - Console.WriteLine( "{0,21}{1,18}", - "FromTicks", "TimeSpan" ); - Console.WriteLine( "{0,21}{1,18}", - "---------", "--------" ); + "generates the following output.\n"); + Console.WriteLine($"{"FromTicks",21}{"TimeSpan",18}"); + Console.WriteLine($"{"---------",21}{"--------",18}"); - GenTimeSpanFromTicks( 1 ); - GenTimeSpanFromTicks( 12345 ); - GenTimeSpanFromTicks( 123456789 ); - GenTimeSpanFromTicks( 1234567898765 ); - GenTimeSpanFromTicks( 12345678987654321 ); - GenTimeSpanFromTicks( 10000000 ); - GenTimeSpanFromTicks( 600000000 ); - GenTimeSpanFromTicks( 36000000000 ); - GenTimeSpanFromTicks( 864000000000 ); - GenTimeSpanFromTicks( 18012202000000 ); - } -} + GenTimeSpanFromTicks(1); + GenTimeSpanFromTicks(12345); + GenTimeSpanFromTicks(123456789); + GenTimeSpanFromTicks(1234567898765); + GenTimeSpanFromTicks(12345678987654321); + GenTimeSpanFromTicks(10000000); + GenTimeSpanFromTicks(600000000); + GenTimeSpanFromTicks(36000000000); + GenTimeSpanFromTicks(864000000000); + GenTimeSpanFromTicks(18012202000000); + } +} /* This example of TimeSpan.FromTicks( long ) diff --git a/snippets/csharp/System/TimeSpan/GetHashCode/hashcode.cs b/snippets/csharp/System/TimeSpan/GetHashCode/hashcode.cs index 09bbdfd2983..d801da32c6c 100644 --- a/snippets/csharp/System/TimeSpan/GetHashCode/hashcode.cs +++ b/snippets/csharp/System/TimeSpan/GetHashCode/hashcode.cs @@ -4,53 +4,51 @@ class GetHashCode { - static void DisplayHashCode( TimeSpan interval ) + static void DisplayHashCode(TimeSpan interval) { - // Create a hash code and a string representation of + // Create a hash code and a string representation of // the TimeSpan parameter. - string timeInterval = interval.ToString( ); - int hashCode = interval.GetHashCode( ); + string timeInterval = interval.ToString(); + int hashCode = interval.GetHashCode(); - // Pad the end of the TimeSpan string with spaces if it + // Pad the end of the TimeSpan string with spaces if it // does not contain milliseconds. - int pIndex = timeInterval.IndexOf( ':' ); - pIndex = timeInterval.IndexOf( '.', pIndex ); - if( pIndex < 0 ) timeInterval += " "; + int pIndex = timeInterval.IndexOf(':'); + pIndex = timeInterval.IndexOf('.', pIndex); + if (pIndex < 0) timeInterval += " "; - Console.WriteLine( "{0,22} 0x{1:X8}, {1}", - timeInterval, hashCode ); + Console.WriteLine("{0,22} 0x{1:X8}, {1}", + timeInterval, hashCode); } - static void Main( ) + static void Main() { Console.WriteLine( "This example of TimeSpan.GetHashCode( ) generates " + "the following \noutput, which displays " + "the hash codes of representative TimeSpan \n" + - "objects in hexadecimal and decimal formats.\n" ); - Console.WriteLine( "{0,22} {1,10}", - "TimeSpan ", "Hash Code" ); - Console.WriteLine( "{0,22} {1,10}", - "-------- ", "---------" ); + "objects in hexadecimal and decimal formats.\n"); + Console.WriteLine($"{"TimeSpan ",22} {"Hash Code",10}"); + Console.WriteLine($"{"-------- ",22} {"---------",10}"); - DisplayHashCode( new TimeSpan( 0 ) ); - DisplayHashCode( new TimeSpan( 1 ) ); - DisplayHashCode( new TimeSpan( 0, 0, 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 0, 1, 0 ) ); - DisplayHashCode( new TimeSpan( 1, 0, 0 ) ); - DisplayHashCode( new TimeSpan( 36000000001 ) ); - DisplayHashCode( new TimeSpan( 0, 1, 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 1, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 1, 0, 0, 0 ) ); - DisplayHashCode( new TimeSpan( 864000000001 ) ); - DisplayHashCode( new TimeSpan( 1, 0, 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 1, 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 100, 0, 0, 0 ) ); - DisplayHashCode( new TimeSpan( 100, 0, 0, 0, 1 ) ); - DisplayHashCode( new TimeSpan( 100, 0, 0, 1 ) ); - } -} + DisplayHashCode(new TimeSpan(0)); + DisplayHashCode(new TimeSpan(1)); + DisplayHashCode(new TimeSpan(0, 0, 0, 0, 1)); + DisplayHashCode(new TimeSpan(0, 0, 1)); + DisplayHashCode(new TimeSpan(0, 1, 0)); + DisplayHashCode(new TimeSpan(1, 0, 0)); + DisplayHashCode(new TimeSpan(36000000001)); + DisplayHashCode(new TimeSpan(0, 1, 0, 0, 1)); + DisplayHashCode(new TimeSpan(1, 0, 1)); + DisplayHashCode(new TimeSpan(1, 0, 0, 0)); + DisplayHashCode(new TimeSpan(864000000001)); + DisplayHashCode(new TimeSpan(1, 0, 0, 0, 1)); + DisplayHashCode(new TimeSpan(1, 0, 0, 1)); + DisplayHashCode(new TimeSpan(100, 0, 0, 0)); + DisplayHashCode(new TimeSpan(100, 0, 0, 0, 1)); + DisplayHashCode(new TimeSpan(100, 0, 0, 1)); + } +} /* This example of TimeSpan.GetHashCode( ) generates the following @@ -75,5 +73,5 @@ TimeSpan Hash Code 100.00:00:00 0x914F4E94, -1857073516 100.00:00:00.0010000 0x914F6984, -1857066620 100.00:00:01 0x91E7D814, -1847076844 -*/ +*/ // diff --git a/snippets/csharp/System/TimeSpan/MaxValue/fields.cs b/snippets/csharp/System/TimeSpan/MaxValue/fields.cs index 4005b3ed569..7a1ebfad4a0 100644 --- a/snippets/csharp/System/TimeSpan/MaxValue/fields.cs +++ b/snippets/csharp/System/TimeSpan/MaxValue/fields.cs @@ -4,51 +4,51 @@ class TimeSpanFieldsDemo { - // Pad the end of a TimeSpan string with spaces if it does not + // Pad the end of a TimeSpan string with spaces if it does not // contain milliseconds. - static string Align( TimeSpan interval ) + static string Align(TimeSpan interval) { - string intervalStr = interval.ToString( ); - int pointIndex = intervalStr.IndexOf( ':' ); + string intervalStr = interval.ToString(); + int pointIndex = intervalStr.IndexOf(':'); - pointIndex = intervalStr.IndexOf( '.', pointIndex ); - if( pointIndex < 0 ) intervalStr += " "; + pointIndex = intervalStr.IndexOf('.', pointIndex); + if (pointIndex < 0) intervalStr += " "; return intervalStr; - } + } - static void Main( ) + static void Main() { - const string numberFmt = "{0,-22}{1,18:N0}" ; - const string timeFmt = "{0,-22}{1,26}" ; + const string numberFmt = "{0,-22}{1,18:N0}"; + const string timeFmt = "{0,-22}{1,26}"; - Console.WriteLine( + Console.WriteLine( "This example of the fields of the TimeSpan class" + - "\ngenerates the following output.\n" ); - Console.WriteLine( numberFmt, "Field", "Value" ); - Console.WriteLine( numberFmt, "-----", "-----" ); + "\ngenerates the following output.\n"); + Console.WriteLine(numberFmt, "Field", "Value"); + Console.WriteLine(numberFmt, "-----", "-----"); // Display the maximum, minimum, and zero TimeSpan values. - Console.WriteLine( timeFmt, "Maximum TimeSpan", - Align( TimeSpan.MaxValue ) ); - Console.WriteLine( timeFmt, "Minimum TimeSpan", - Align( TimeSpan.MinValue ) ); - Console.WriteLine( timeFmt, "Zero TimeSpan", - Align( TimeSpan.Zero ) ); - Console.WriteLine( ); + Console.WriteLine(timeFmt, "Maximum TimeSpan", + Align(TimeSpan.MaxValue)); + Console.WriteLine(timeFmt, "Minimum TimeSpan", + Align(TimeSpan.MinValue)); + Console.WriteLine(timeFmt, "Zero TimeSpan", + Align(TimeSpan.Zero)); + Console.WriteLine(); // Display the ticks-per-time-unit fields. - Console.WriteLine( numberFmt, "Ticks per day", - TimeSpan.TicksPerDay ); - Console.WriteLine( numberFmt, "Ticks per hour", - TimeSpan.TicksPerHour ); - Console.WriteLine( numberFmt, "Ticks per minute", - TimeSpan.TicksPerMinute ); - Console.WriteLine( numberFmt, "Ticks per second", - TimeSpan.TicksPerSecond ); - Console.WriteLine( numberFmt, "Ticks per millisecond", - TimeSpan.TicksPerMillisecond ); + Console.WriteLine(numberFmt, "Ticks per day", + TimeSpan.TicksPerDay); + Console.WriteLine(numberFmt, "Ticks per hour", + TimeSpan.TicksPerHour); + Console.WriteLine(numberFmt, "Ticks per minute", + TimeSpan.TicksPerMinute); + Console.WriteLine(numberFmt, "Ticks per second", + TimeSpan.TicksPerSecond); + Console.WriteLine(numberFmt, "Ticks per millisecond", + TimeSpan.TicksPerMillisecond); } -} +} /* This example of the fields of the TimeSpan class diff --git a/snippets/csharp/System/TimeSpan/Overview/instantiate1.cs b/snippets/csharp/System/TimeSpan/Overview/instantiate1.cs index c93d7f01285..a890a098afa 100644 --- a/snippets/csharp/System/TimeSpan/Overview/instantiate1.cs +++ b/snippets/csharp/System/TimeSpan/Overview/instantiate1.cs @@ -1,74 +1,77 @@ -using System; +using System; public class Example { - public static void Main() - { - Implicit(); - Console.WriteLine(); - Explicit(); - Console.WriteLine(); - TimeSpanOperation(); - Console.WriteLine(); - Parse(); - Console.WriteLine(); - } + public static void Main() + { + Implicit(); + Console.WriteLine(); + Explicit(); + Console.WriteLine(); + TimeSpanOperation(); + Console.WriteLine(); + Parse(); + Console.WriteLine(); + } - private static void Implicit() - { - // - TimeSpan interval = new TimeSpan(); - Console.WriteLine(interval.Equals(TimeSpan.Zero)); // Displays "True". - // - } - - private static void Explicit() - { - // - TimeSpan interval = new TimeSpan(2, 14, 18); - Console.WriteLine(interval.ToString()); - - // Displays "02:14:18". - // - } - - private static void TimeSpanOperation() - { - // - DateTime departure = new DateTime(2010, 6, 12, 18, 32, 0); - DateTime arrival = new DateTime(2010, 6, 13, 22, 47, 0); - TimeSpan travelTime = arrival - departure; - Console.WriteLine($"{arrival} - {departure} = {travelTime}"); - - // The example displays the following output: - // 6/13/2010 10:47:00 PM - 6/12/2010 6:32:00 PM = 1.04:15:00 - // - } - - private static void Parse() - { - // - string[] values = { "12", "31.", "5.8:32:16", "12:12:15.95", ".12"}; - foreach (string value in values) - { - try { - TimeSpan ts = TimeSpan.Parse(value); - Console.WriteLine($"'{value}' --> {ts}"); - } - catch (FormatException) { - Console.WriteLine($"Unable to parse '{value}'"); - } - catch (OverflowException) { - Console.WriteLine($"'{value}' is outside the range of a TimeSpan."); - } - } - - // The example displays the following output: - // '12' --> 12.00:00:00 - // Unable to parse '31.' - // '5.8:32:16' --> 5.08:32:16 - // '12:12:15.95' --> 12:12:15.9500000 - // Unable to parse '.12' - // - } + private static void Implicit() + { + // + TimeSpan interval = new(); + Console.WriteLine(interval.Equals(TimeSpan.Zero)); // Displays "True". + // + } + + private static void Explicit() + { + // + TimeSpan interval = new(2, 14, 18); + Console.WriteLine(interval); + + // Displays "02:14:18". + // + } + + private static void TimeSpanOperation() + { + // + DateTime departure = new(2010, 6, 12, 18, 32, 0); + DateTime arrival = new(2010, 6, 13, 22, 47, 0); + TimeSpan travelTime = arrival - departure; + Console.WriteLine($"{arrival} - {departure} = {travelTime}"); + + // The example displays the following output: + // 6/13/2010 10:47:00 PM - 6/12/2010 6:32:00 PM = 1.04:15:00 + // + } + + private static void Parse() + { + // + string[] values = [ "12", "31.", "5.8:32:16", "12:12:15.95", ".12" ]; + foreach (string value in values) + { + try + { + TimeSpan ts = TimeSpan.Parse(value); + Console.WriteLine($"'{value}' --> {ts}"); + } + catch (FormatException) + { + Console.WriteLine($"Unable to parse '{value}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{value}' is outside the range of a TimeSpan."); + } + } + + // The example displays the following output: + // '12' --> 12.00:00:00 + // Unable to parse '31.' + // '5.8:32:16' --> 5.08:32:16 + // '12:12:15.95' --> 12:12:15.9500000 + // Unable to parse '.12' + // + } } diff --git a/snippets/csharp/System/TimeSpan/Overview/structure1.cs b/snippets/csharp/System/TimeSpan/Overview/structure1.cs index f034ea01cd4..fa7e112f27c 100644 --- a/snippets/csharp/System/TimeSpan/Overview/structure1.cs +++ b/snippets/csharp/System/TimeSpan/Overview/structure1.cs @@ -2,43 +2,43 @@ public class StructureExample1 { - public static void Main() - { - // - // Define two dates. - DateTime date1 = new DateTime(2010, 1, 1, 8, 0, 15); - DateTime date2 = new DateTime(2010, 8, 18, 13, 30, 30); + public static void Main() + { + // + // Define two dates. + DateTime date1 = new(2010, 1, 1, 8, 0, 15); + DateTime date2 = new(2010, 8, 18, 13, 30, 30); - // Calculate the interval between the two dates. - TimeSpan interval = date2 - date1; - Console.WriteLine("{0} - {1} = {2}", date2, date1, interval.ToString()); + // Calculate the interval between the two dates. + TimeSpan interval = date2 - date1; + Console.WriteLine($"{date2} - {date1} = {interval}"); - // Display individual properties of the resulting TimeSpan object. - Console.WriteLine(" {0,-35} {1,20}", "Value of Days Component:", interval.Days); - Console.WriteLine(" {0,-35} {1,20}", "Total Number of Days:", interval.TotalDays); - Console.WriteLine(" {0,-35} {1,20}", "Value of Hours Component:", interval.Hours); - Console.WriteLine(" {0,-35} {1,20}", "Total Number of Hours:", interval.TotalHours); - Console.WriteLine(" {0,-35} {1,20}", "Value of Minutes Component:", interval.Minutes); - Console.WriteLine(" {0,-35} {1,20}", "Total Number of Minutes:", interval.TotalMinutes); - Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Seconds Component:", interval.Seconds); - Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Seconds:", interval.TotalSeconds); - Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Milliseconds Component:", interval.Milliseconds); - Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Milliseconds:", interval.TotalMilliseconds); - Console.WriteLine(" {0,-35} {1,20:N0}", "Ticks:", interval.Ticks); - - // This example displays the following output: - // 8/18/2010 1:30:30 PM - 1/1/2010 8:00:15 AM = 229.05:30:15 - // Value of Days Component: 229 - // Total Number of Days: 229.229340277778 - // Value of Hours Component: 5 - // Total Number of Hours: 5501.50416666667 - // Value of Minutes Component: 30 - // Total Number of Minutes: 330090.25 - // Value of Seconds Component: 15 - // Total Number of Seconds: 19,805,415 - // Value of Milliseconds Component: 0 - // Total Number of Milliseconds: 19,805,415,000 - // Ticks: 198,054,150,000,000 - // - } + // Display individual properties of the resulting TimeSpan object. + Console.WriteLine($" {"Value of Days Component:",-35} {interval.Days,20}"); + Console.WriteLine($" {"Total Number of Days:",-35} {interval.TotalDays,20}"); + Console.WriteLine($" {"Value of Hours Component:",-35} {interval.Hours,20}"); + Console.WriteLine($" {"Total Number of Hours:",-35} {interval.TotalHours,20}"); + Console.WriteLine($" {"Value of Minutes Component:",-35} {interval.Minutes,20}"); + Console.WriteLine($" {"Total Number of Minutes:",-35} {interval.TotalMinutes,20}"); + Console.WriteLine($" {"Value of Seconds Component:",-35} {interval.Seconds,20:N0}"); + Console.WriteLine($" {"Total Number of Seconds:",-35} {interval.TotalSeconds,20:N0}"); + Console.WriteLine($" {"Value of Milliseconds Component:",-35} {interval.Milliseconds,20:N0}"); + Console.WriteLine($" {"Total Number of Milliseconds:",-35} {interval.TotalMilliseconds,20:N0}"); + Console.WriteLine($" {"Ticks:",-35} {interval.Ticks,20:N0}"); + + // This example displays the following output: + // 8/18/2010 1:30:30 PM - 1/1/2010 8:00:15 AM = 229.05:30:15 + // Value of Days Component: 229 + // Total Number of Days: 229.229340277778 + // Value of Hours Component: 5 + // Total Number of Hours: 5501.50416666667 + // Value of Minutes Component: 30 + // Total Number of Minutes: 330090.25 + // Value of Seconds Component: 15 + // Total Number of Seconds: 19,805,415 + // Value of Milliseconds Component: 0 + // Total Number of Milliseconds: 19,805,415,000 + // Ticks: 198,054,150,000,000 + // + } } diff --git a/snippets/csharp/System/TimeSpan/Overview/zero1.cs b/snippets/csharp/System/TimeSpan/Overview/zero1.cs index 3ac36200ed2..89a1a293615 100644 --- a/snippets/csharp/System/TimeSpan/Overview/zero1.cs +++ b/snippets/csharp/System/TimeSpan/Overview/zero1.cs @@ -5,7 +5,7 @@ public class Example4 public static void Run() { // - Random rnd = new Random(); + Random rnd = new(); TimeSpan timeSpent = TimeSpan.Zero; @@ -14,15 +14,9 @@ public static void Run() Console.WriteLine($"Total time: {timeSpent}"); - TimeSpan GetTimeBeforeLunch() - { - return new TimeSpan(rnd.Next(3, 6), 0, 0); - } + TimeSpan GetTimeBeforeLunch() => new TimeSpan(rnd.Next(3, 6), 0, 0); - TimeSpan GetTimeAfterLunch() - { - return new TimeSpan(rnd.Next(3, 6), 0, 0); - } + TimeSpan GetTimeAfterLunch() => new TimeSpan(rnd.Next(3, 6), 0, 0); // The example displays output like the following: // Total time: 08:00:00 diff --git a/snippets/csharp/System/TimeSpan/Parse/parse1.cs b/snippets/csharp/System/TimeSpan/Parse/parse1.cs index 0604062b069..15b17ed39e4 100644 --- a/snippets/csharp/System/TimeSpan/Parse/parse1.cs +++ b/snippets/csharp/System/TimeSpan/Parse/parse1.cs @@ -1,39 +1,41 @@ // using System; -using System.Globalization; + using System.Threading; public class Example1 { - public static void Main() - { - string[] values = { "6", "6:12", "6:12:14", "6:12:14:45", + public static void Main() + { + string[] values = [ "6", "6:12", "6:12:14", "6:12:14:45", "6.12:14:45", "6:12:14:45.3448", - "6:12:14:45,3448", "6:34:14:45" }; - string[] cultureNames = { "hr-HR", "en-US"}; + "6:12:14:45,3448", "6:34:14:45" ]; + string[] cultureNames = [ "hr-HR", "en-US" ]; - // Change the current culture. - foreach (string cultureName in cultureNames) - { - Thread.CurrentThread.CurrentCulture = new CultureInfo(cultureName); - Console.WriteLine("Current Culture: {0}", - Thread.CurrentThread.CurrentCulture.Name); - foreach (string value in values) - { - try { - TimeSpan ts = TimeSpan.Parse(value); - Console.WriteLine("{0} --> {1}", value, ts.ToString("c")); - } - catch (FormatException) { - Console.WriteLine("{0}: Bad Format", value); - } - catch (OverflowException) { - Console.WriteLine("{0}: Overflow", value); + // Change the current culture. + foreach (string cultureName in cultureNames) + { + Thread.CurrentThread.CurrentCulture = new(cultureName); + Console.WriteLine($"Current Culture: {Thread.CurrentThread.CurrentCulture.Name}"); + foreach (string value in values) + { + try + { + TimeSpan ts = TimeSpan.Parse(value); + Console.WriteLine($"{value} --> {ts.ToString("c")}"); + } + catch (FormatException) + { + Console.WriteLine($"{value}: Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"{value}: Overflow"); + } } - } - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output: // Current Culture: hr-HR diff --git a/snippets/csharp/System/TimeSpan/Parse/parse2.cs b/snippets/csharp/System/TimeSpan/Parse/parse2.cs index fe7eb0fef9a..f73c82f9cab 100644 --- a/snippets/csharp/System/TimeSpan/Parse/parse2.cs +++ b/snippets/csharp/System/TimeSpan/Parse/parse2.cs @@ -1,46 +1,49 @@ // using System; using System.Globalization; -using System.Text.RegularExpressions; + public class Example2 { - public static void Main() - { - string[] values = { "6", "6:12", "6:12:14", "6:12:14:45", + public static void Main() + { + string[] values = [ "6", "6:12", "6:12:14", "6:12:14:45", "6.12:14:45", "6:12:14:45.3448", - "6:12:14:45,3448", "6:34:14:45" }; - CultureInfo[] cultures = { new CultureInfo("en-US"), + "6:12:14:45,3448", "6:34:14:45" ]; + CultureInfo[] cultures = [ new CultureInfo("en-US"), new CultureInfo("ru-RU"), - CultureInfo.InvariantCulture }; + CultureInfo.InvariantCulture ]; - string header = String.Format("{0,-17}", "String"); - foreach (CultureInfo culture in cultures) - header += culture.Equals(CultureInfo.InvariantCulture) ? - String.Format("{0,20}", "Invariant") : - String.Format("{0,20}", culture.Name); - Console.WriteLine(header); - Console.WriteLine(); + string header = $"{"String",-17}"; + foreach (CultureInfo culture in cultures) + header += culture.Equals(CultureInfo.InvariantCulture) ? + $"{"Invariant",20}" : + $"{culture.Name,20}"; + Console.WriteLine(header); + Console.WriteLine(); - foreach (string value in values) - { - Console.Write("{0,-17}", value); - foreach (CultureInfo culture in cultures) - { - try { - TimeSpan ts = TimeSpan.Parse(value, culture); - Console.Write("{0,20}", ts.ToString("c")); - } - catch (FormatException) { - Console.Write("{0,20}", "Bad Format"); - } - catch (OverflowException) { - Console.Write("{0,20}", "Overflow"); + foreach (string value in values) + { + Console.Write($"{value,-17}"); + foreach (CultureInfo culture in cultures) + { + try + { + TimeSpan ts = TimeSpan.Parse(value, culture); + Console.Write($"{ts.ToString("c"),20}"); + } + catch (FormatException) + { + Console.Write($"{"Bad Format",20}"); + } + catch (OverflowException) + { + Console.Write($"{"Overflow",20}"); + } } - } - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output: // String en-US ru-RU Invariant diff --git a/snippets/csharp/System/TimeSpan/ParseExact/Program.cs b/snippets/csharp/System/TimeSpan/ParseExact/Program.cs new file mode 100644 index 00000000000..fa847f92faa --- /dev/null +++ b/snippets/csharp/System/TimeSpan/ParseExact/Program.cs @@ -0,0 +1,4 @@ +ParseExactExample1.Run(); +ParseExactExample2.Run(); +ParseExactExample3.Run(); +ParseExactExample4.Run(); diff --git a/snippets/csharp/System/TimeSpan/ParseExact/Project.csproj b/snippets/csharp/System/TimeSpan/ParseExact/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TimeSpan/ParseExact/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample1.cs b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample1.cs index 58e5bae7e8f..5fa76cf250c 100644 --- a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample1.cs +++ b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample1.cs @@ -2,148 +2,174 @@ using System; using System.Globalization; -public class Example +public class ParseExactExample1 { - public static void Main() - { - string intervalString, format; - TimeSpan interval; - CultureInfo culture; - - // Parse hour:minute value with "g" specifier current culture. - intervalString = "17:14"; - format = "g"; - culture = CultureInfo.CurrentCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", - intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse hour:minute:second value with "G" specifier. - intervalString = "17:14:48"; - format = "G"; - culture = CultureInfo.InvariantCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } + public static void Run() + { + string intervalString, format; + TimeSpan interval; + CultureInfo culture; - // Parse days:hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = new CultureInfo("fr-FR"); - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48,153"; - format = "G"; - try { - interval = TimeSpan.ParseExact(intervalString, format, culture); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } + // Parse hour:minute value with "g" specifier current culture. + intervalString = "17:14"; + format = "g"; + culture = CultureInfo.CurrentCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } - // Parse a single number using the "c" standard format string. - intervalString = "12"; - format = "c"; - try { - interval = TimeSpan.ParseExact(intervalString, format, null); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse a single number using the "%h" custom format string. - format = "%h"; - try { - interval = TimeSpan.ParseExact(intervalString, format, null); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse a single number using the "%s" custom format string. - format = "%s"; - try { - interval = TimeSpan.ParseExact(intervalString, format, null); - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - } + // Parse hour:minute:second value with "G" specifier. + intervalString = "17:14:48"; + format = "G"; + culture = CultureInfo.InvariantCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = new("fr-FR"); + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48,153"; + format = "G"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, culture); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "c" standard format string. + intervalString = "12"; + format = "c"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, null); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "%h" custom format string. + format = "%h"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, null); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "%s" custom format string. + format = "%s"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, null); + Console.WriteLine($"'{intervalString}' --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + } } // The example displays the following output: // '17:14' --> 17:14:00 diff --git a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample2.cs b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample2.cs index 23e8499b04e..ca705832f63 100644 --- a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample2.cs +++ b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample2.cs @@ -2,155 +2,182 @@ using System; using System.Globalization; -public class Example +public class ParseExactExample2 { - public static void Main() - { - string intervalString, format; - TimeSpan interval; - CultureInfo culture = null; - - // Parse hour:minute value with custom format specifier. - intervalString = "17:14"; - format = "h\\:mm"; - culture = CultureInfo.CurrentCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse hour:minute:second value with "g" specifier. - intervalString = "17:14:48"; - format = "g"; - culture = CultureInfo.InvariantCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse hours:minute.second value with custom format specifier. - intervalString = "17:14:48.153"; - format = @"h\:mm\:ss\.fff"; - culture = null; - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } + public static void Run() + { + string intervalString, format; + TimeSpan interval; + CultureInfo culture = null; - // Parse days:hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse days:hours:minute.second value with a custom format specifier. - intervalString = "3:17:14:48.153"; - format = @"d\:hh\:mm\:ss\.fff"; - culture = null; - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48,153"; - format = "G"; - culture = new CultureInfo("fr-FR"); - try { - interval = TimeSpan.ParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } + // Parse hour:minute value with custom format specifier. + intervalString = "17:14"; + format = "h\\:mm"; + culture = CultureInfo.CurrentCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } - // Parse a single number using the "c" standard format string. - intervalString = "12"; - format = "c"; - try { - interval = TimeSpan.ParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse a single number using the "%h" custom format string. - format = "%h"; - try { - interval = TimeSpan.ParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - - // Parse a single number using the "%s" custom format string. - format = "%s"; - try { - interval = TimeSpan.ParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative); - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - } - catch (FormatException) { - Console.WriteLine("'{0}': Bad Format for '{1}'", intervalString, format); - } - catch (OverflowException) { - Console.WriteLine("'{0}': Overflow", intervalString); - } - } + // Parse hour:minute:second value with "g" specifier. + intervalString = "17:14:48"; + format = "g"; + culture = CultureInfo.InvariantCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse hours:minute.second value with custom format specifier. + intervalString = "17:14:48.153"; + format = @"h\:mm\:ss\.fff"; + culture = null; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with a custom format specifier. + intervalString = "3:17:14:48.153"; + format = @"d\:hh\:mm\:ss\.fff"; + culture = null; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48,153"; + format = "G"; + culture = new("fr-FR"); + try + { + interval = TimeSpan.ParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "c" standard format string. + intervalString = "12"; + format = "c"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "%h" custom format string. + format = "%h"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + + // Parse a single number using the "%s" custom format string. + format = "%s"; + try + { + interval = TimeSpan.ParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative); + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + } + catch (FormatException) + { + Console.WriteLine($"'{intervalString}': Bad Format for '{format}'"); + } + catch (OverflowException) + { + Console.WriteLine($"'{intervalString}': Overflow"); + } + } } // The example displays the following output: // '17:14' (h\:mm) --> -17:14:00 diff --git a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample3.cs b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample3.cs index 1aabe8a2dc4..a24d6a68a67 100644 --- a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample3.cs +++ b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample3.cs @@ -2,30 +2,34 @@ using System; using System.Globalization; -public class Example +public class ParseExactExample3 { - public static void Main() - { - string[] inputs = { "3", "16:42", "1:6:52:35.0625", - "1:6:52:35,0625" }; - string[] formats = { "g", "G", "%h"}; - TimeSpan interval; - CultureInfo culture = new CultureInfo("fr-FR"); - - // Parse each string in inputs using formats and the fr-FR culture. - foreach (string input in inputs) { - try { - interval = TimeSpan.ParseExact(input, formats, culture); - Console.WriteLine("{0} --> {1:c}", input, interval); - } - catch (FormatException) { - Console.WriteLine("{0} --> Bad Format", input); - } - catch (OverflowException) { - Console.WriteLine("{0} --> Overflow", input); - } - } - } + public static void Run() + { + string[] inputs = [ "3", "16:42", "1:6:52:35.0625", + "1:6:52:35,0625" ]; + string[] formats = [ "g", "G", "%h" ]; + TimeSpan interval; + CultureInfo culture = new("fr-FR"); + + // Parse each string in inputs using formats and the fr-FR culture. + foreach (string input in inputs) + { + try + { + interval = TimeSpan.ParseExact(input, formats, culture); + Console.WriteLine($"{input} --> {interval:c}"); + } + catch (FormatException) + { + Console.WriteLine($"{input} --> Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"{input} --> Overflow"); + } + } + } } // The example displays the following output: // 3 --> 03:00:00 diff --git a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample4.cs b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample4.cs index 95adf76f4e6..4b77efe4d6b 100644 --- a/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample4.cs +++ b/snippets/csharp/System/TimeSpan/ParseExact/parseexactexample4.cs @@ -2,31 +2,35 @@ using System; using System.Globalization; -public class Example +public class ParseExactExample4 { - public static void Main() - { - string[] inputs = { "3", "16:42", "1:6:52:35.0625", - "1:6:52:35,0625" }; - string[] formats = { "%h", "g", "G" }; - TimeSpan interval; - CultureInfo culture = new CultureInfo("de-DE"); - - // Parse each string in inputs using formats and the de-DE culture. - foreach (string input in inputs) { - try { - interval = TimeSpan.ParseExact(input, formats, culture, - TimeSpanStyles.AssumeNegative); - Console.WriteLine("{0} --> {1:c}", input, interval); - } - catch (FormatException) { - Console.WriteLine("{0} --> Bad Format", input); - } - catch (OverflowException) { - Console.WriteLine("{0} --> Overflow", input); - } - } - } + public static void Run() + { + string[] inputs = [ "3", "16:42", "1:6:52:35.0625", + "1:6:52:35,0625" ]; + string[] formats = [ "%h", "g", "G" ]; + TimeSpan interval; + CultureInfo culture = new("de-DE"); + + // Parse each string in inputs using formats and the de-DE culture. + foreach (string input in inputs) + { + try + { + interval = TimeSpan.ParseExact(input, formats, culture, + TimeSpanStyles.AssumeNegative); + Console.WriteLine($"{input} --> {interval:c}"); + } + catch (FormatException) + { + Console.WriteLine($"{input} --> Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"{input} --> Overflow"); + } + } + } } // The example displays the following output: // 3 --> -03:00:00 diff --git a/snippets/csharp/System/TimeSpan/Subtract/subtract1.cs b/snippets/csharp/System/TimeSpan/Subtract/subtract1.cs index ee6fac4a079..772922fe295 100644 --- a/snippets/csharp/System/TimeSpan/Subtract/subtract1.cs +++ b/snippets/csharp/System/TimeSpan/Subtract/subtract1.cs @@ -2,35 +2,35 @@ public class Example { - public static void Main() - { - // - TimeSpan baseTimeSpan = new TimeSpan(1, 12, 15, 16); + public static void Main() + { + // + TimeSpan baseTimeSpan = new(1, 12, 15, 16); - // Create an array of timespan intervals. - TimeSpan[] intervals = { - TimeSpan.FromDays(1.5), - TimeSpan.FromHours(1.5), - TimeSpan.FromMinutes(45), + // Create an array of timespan intervals. + TimeSpan[] intervals = [ + TimeSpan.FromDays(1.5), + TimeSpan.FromHours(1.5), + TimeSpan.FromMinutes(45), TimeSpan.FromMilliseconds(505), - new TimeSpan(1, 17, 32, 20), - new TimeSpan(-8, 30, 0) - }; + new TimeSpan(1, 17, 32, 20), + new TimeSpan(-8, 30, 0) + ]; - // Calculate a new time interval by adding each element to the base interval. - foreach (var interval in intervals) - Console.WriteLine(@"{0,-10:g} - {3}{1,15:%d\:hh\:mm\:ss\.ffff} = {4}{2:%d\:hh\:mm\:ss\.ffff}", - baseTimeSpan, interval, baseTimeSpan.Subtract(interval), - interval < TimeSpan.Zero ? "-" : "", - baseTimeSpan < interval.Duration() ? "-" : ""); + // Calculate a new time interval by adding each element to the base interval. + foreach (var interval in intervals) + Console.WriteLine(@"{0,-10:g} - {3}{1,15:%d\:hh\:mm\:ss\.ffff} = {4}{2:%d\:hh\:mm\:ss\.ffff}", + baseTimeSpan, interval, baseTimeSpan.Subtract(interval), + interval < TimeSpan.Zero ? "-" : "", + baseTimeSpan < interval.Duration() ? "-" : ""); - // The example displays the following output: - // 1:12:15:16 - 1:12:00:00.0000 = 0:00:15:16.0000 - // 1:12:15:16 - 0:01:30:00.0000 = 1:10:45:16.0000 - // 1:12:15:16 - 0:00:45:00.0000 = 1:11:30:16.0000 - // 1:12:15:16 - 0:00:00:00.5050 = 1:12:15:15.4950 - // 1:12:15:16 - 1:17:32:20.0000 = -0:05:17:04.0000 - // 1:12:15:16 - -0:07:30:00.0000 = 1:19:45:16.0000 - // - } + // The example displays the following output: + // 1:12:15:16 - 1:12:00:00.0000 = 0:00:15:16.0000 + // 1:12:15:16 - 0:01:30:00.0000 = 1:10:45:16.0000 + // 1:12:15:16 - 0:00:45:00.0000 = 1:11:30:16.0000 + // 1:12:15:16 - 0:00:00:00.5050 = 1:12:15:15.4950 + // 1:12:15:16 - 1:17:32:20.0000 = -0:05:17:04.0000 + // 1:12:15:16 - -0:07:30:00.0000 = 1:19:45:16.0000 + // + } } diff --git a/snippets/csharp/System/TimeSpan/ToString/Program.cs b/snippets/csharp/System/TimeSpan/ToString/Program.cs new file mode 100644 index 00000000000..177d5246b61 --- /dev/null +++ b/snippets/csharp/System/TimeSpan/ToString/Program.cs @@ -0,0 +1,3 @@ +TimeSpanToStringExample.Run(); +Class1.Run(); +Example.Run(); diff --git a/snippets/csharp/System/TimeSpan/ToString/Project.csproj b/snippets/csharp/System/TimeSpan/ToString/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TimeSpan/ToString/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TimeSpan/ToString/ToString1.cs b/snippets/csharp/System/TimeSpan/ToString/ToString1.cs index 173f1550dab..2c4fdfd08f1 100644 --- a/snippets/csharp/System/TimeSpan/ToString/ToString1.cs +++ b/snippets/csharp/System/TimeSpan/ToString/ToString1.cs @@ -1,48 +1,48 @@ using System; -public class ToString +public class TimeSpanToStringExample { - public static void Main() - { - // - TimeSpan span; - - // Initialize a time span to zero. - span = TimeSpan.Zero; - Console.WriteLine(span); - - // Initialize a time span to 14 days. - span = new TimeSpan(-14, 0, 0, 0, 0); - Console.WriteLine(span); - - // Initialize a time span to 1:02:03. - span = new TimeSpan(1, 2, 3); - Console.WriteLine(span); - - // Initialize a time span to 250 milliseconds. - span = new TimeSpan(0, 0, 0, 0, 250); - Console.WriteLine(span); - - // Initialize a time span to 99 days, 23 hours, 59 minutes, and 59.999 seconds. - span = new TimeSpan(99, 23, 59, 59, 999); - Console.WriteLine(span); - - // Initialize a time span to 3 hours. - span = new TimeSpan(3, 0, 0); - Console.WriteLine(span); - - // Initialize a timespan to 25 milliseconds. - span = new TimeSpan(0, 0, 0, 0, 25); - Console.WriteLine(span); - - // The example displays the following output: - // 00:00:00 - // -14.00:00:00 - // 01:02:03 - // 00:00:00.2500000 - // 99.23:59:59.9990000 - // 03:00:00 - // 00:00:00.0250000 - // - } + public static void Run() + { + // + TimeSpan span; + + // Initialize a time span to zero. + span = TimeSpan.Zero; + Console.WriteLine(span); + + // Initialize a time span to 14 days. + span = new(-14, 0, 0, 0, 0); + Console.WriteLine(span); + + // Initialize a time span to 1:02:03. + span = new(1, 2, 3); + Console.WriteLine(span); + + // Initialize a time span to 250 milliseconds. + span = new(0, 0, 0, 0, 250); + Console.WriteLine(span); + + // Initialize a time span to 99 days, 23 hours, 59 minutes, and 59.999 seconds. + span = new(99, 23, 59, 59, 999); + Console.WriteLine(span); + + // Initialize a time span to 3 hours. + span = new(3, 0, 0); + Console.WriteLine(span); + + // Initialize a timespan to 25 milliseconds. + span = new(0, 0, 0, 0, 25); + Console.WriteLine(span); + + // The example displays the following output: + // 00:00:00 + // -14.00:00:00 + // 01:02:03 + // 00:00:00.2500000 + // 99.23:59:59.9990000 + // 03:00:00 + // 00:00:00.0250000 + // + } } diff --git a/snippets/csharp/System/TimeSpan/ToString/tostring3.cs b/snippets/csharp/System/TimeSpan/ToString/tostring3.cs index 13e72927122..227ae2cf0f3 100644 --- a/snippets/csharp/System/TimeSpan/ToString/tostring3.cs +++ b/snippets/csharp/System/TimeSpan/ToString/tostring3.cs @@ -2,69 +2,69 @@ public class Class1 { - public static void Main() - { - // - TimeSpan[] spans = { - TimeSpan.Zero, - new TimeSpan(-14, 0, 0, 0, 0), - new TimeSpan(1, 2, 3), - new TimeSpan(0, 0, 0, 0, 250), + public static void Run() + { + // + TimeSpan[] spans = [ + TimeSpan.Zero, + new TimeSpan(-14, 0, 0, 0, 0), + new TimeSpan(1, 2, 3), + new TimeSpan(0, 0, 0, 0, 250), new TimeSpan(99, 23, 59, 59, 999), - new TimeSpan(3, 0, 0), - new TimeSpan(0, 0, 0, 0, 25) - }; + new TimeSpan(3, 0, 0), + new TimeSpan(0, 0, 0, 0, 25) + ]; - string[] fmts = { "c", "g", "G", @"hh\:mm\:ss", "%m' min.'" }; - foreach (TimeSpan span in spans) - { - foreach (string fmt in fmts) - Console.WriteLine("{0}: {1}", fmt, span.ToString(fmt)); + string[] fmts = [ "c", "g", "G", @"hh\:mm\:ss", "%m' min.'" ]; + foreach (TimeSpan span in spans) + { + foreach (string fmt in fmts) + Console.WriteLine($"{fmt}: {span.ToString(fmt)}"); - Console.WriteLine(); - } - // The example displays the following output: - // c: 00:00:00 - // g: 0:00:00 - // G: 0:00:00:00.0000000 - // hh\:mm\:ss: 00:00:00 - // %m' min.': 0 min. - // - // c: -14.00:00:00 - // g: -14:0:00:00 - // G: -14:00:00:00.0000000 - // hh\:mm\:ss: 00:00:00 - // %m' min.': 0 min. - // - // c: 01:02:03 - // g: 1:02:03 - // G: 0:01:02:03.0000000 - // hh\:mm\:ss: 01:02:03 - // %m' min.': 2 min. - // - // c: 00:00:00.2500000 - // g: 0:00:00.25 - // G: 0:00:00:00.2500000 - // hh\:mm\:ss: 00:00:00 - // %m' min.': 0 min. - // - // c: 99.23:59:59.9990000 - // g: 99:23:59:59.999 - // G: 99:23:59:59.9990000 - // hh\:mm\:ss: 23:59:59 - // %m' min.': 59 min. - // - // c: 03:00:00 - // g: 3:00:00 - // G: 0:03:00:00.0000000 - // hh\:mm\:ss: 03:00:00 - // %m' min.': 0 min. - // - // c: 00:00:00.0250000 - // g: 0:00:00.025 - // G: 0:00:00:00.0250000 - // hh\:mm\:ss: 00:00:00 - // %m' min.': 0 min. - // - } + Console.WriteLine(); + } + // The example displays the following output: + // c: 00:00:00 + // g: 0:00:00 + // G: 0:00:00:00.0000000 + // hh\:mm\:ss: 00:00:00 + // %m' min.': 0 min. + // + // c: -14.00:00:00 + // g: -14:0:00:00 + // G: -14:00:00:00.0000000 + // hh\:mm\:ss: 00:00:00 + // %m' min.': 0 min. + // + // c: 01:02:03 + // g: 1:02:03 + // G: 0:01:02:03.0000000 + // hh\:mm\:ss: 01:02:03 + // %m' min.': 2 min. + // + // c: 00:00:00.2500000 + // g: 0:00:00.25 + // G: 0:00:00:00.2500000 + // hh\:mm\:ss: 00:00:00 + // %m' min.': 0 min. + // + // c: 99.23:59:59.9990000 + // g: 99:23:59:59.999 + // G: 99:23:59:59.9990000 + // hh\:mm\:ss: 23:59:59 + // %m' min.': 59 min. + // + // c: 03:00:00 + // g: 3:00:00 + // G: 0:03:00:00.0000000 + // hh\:mm\:ss: 03:00:00 + // %m' min.': 0 min. + // + // c: 00:00:00.0250000 + // g: 0:00:00.025 + // G: 0:00:00:00.0250000 + // hh\:mm\:ss: 00:00:00 + // %m' min.': 0 min. + // + } } diff --git a/snippets/csharp/System/TimeSpan/ToString/tostring4.cs b/snippets/csharp/System/TimeSpan/ToString/tostring4.cs index abfc9d0e3cb..341876b4264 100644 --- a/snippets/csharp/System/TimeSpan/ToString/tostring4.cs +++ b/snippets/csharp/System/TimeSpan/ToString/tostring4.cs @@ -4,36 +4,33 @@ public class Example { - public static void Main() - { - TimeSpan[] intervals = { new TimeSpan(38, 30, 15), - new TimeSpan(16, 14, 30) }; - CultureInfo[] cultures = { new CultureInfo("en-US"), - new CultureInfo("fr-FR") }; - string[] formats = {"c", "g", "G", @"hh\:mm\:ss" }; - Console.WriteLine("{0,12} Format {1,22} {2,22}\n", - "Interval", cultures[0].Name, cultures[1].Name); + public static void Run() + { + TimeSpan[] intervals = [ new TimeSpan(38, 30, 15), + new TimeSpan(16, 14, 30) ]; + CultureInfo[] cultures = [ new CultureInfo("en-US"), + new CultureInfo("fr-FR") ]; + string[] formats = [ "c", "g", "G", @"hh\:mm\:ss" ]; + Console.WriteLine($"{"Interval",12} Format {cultures[0].Name,22} {cultures[1].Name,22}\n"); - foreach (var interval in intervals) { - foreach (var fmt in formats) - Console.WriteLine("{0,12} {1,10} {2,22} {3,22}", - interval, fmt, - interval.ToString(fmt, cultures[0]), - interval.ToString(fmt, cultures[1])); - Console.WriteLine(); - } - } + foreach (var interval in intervals) + { + foreach (string fmt in formats) + Console.WriteLine($"{interval,12} {fmt,10} {interval.ToString(fmt, cultures[0]),22} {interval.ToString(fmt, cultures[1]),22}"); + Console.WriteLine(); + } + } } // The example displays the following output: // Interval Format en-US fr-FR -// +// // 1.14:30:15 c 1.14:30:15 1.14:30:15 // 1.14:30:15 g 1:14:30:15 1:14:30:15 // 1.14:30:15 G 1:14:30:15.0000000 1:14:30:15,0000000 // 1.14:30:15 hh\:mm\:ss 14:30:15 14:30:15 -// +// // 16:14:30 c 16:14:30 16:14:30 // 16:14:30 g 16:14:30 16:14:30 // 16:14:30 G 0:16:14:30.0000000 0:16:14:30,0000000 // 16:14:30 hh\:mm\:ss 16:14:30 16:14:30 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TimeSpan/TotalDays/totaldays.cs b/snippets/csharp/System/TimeSpan/TotalDays/totaldays.cs index 14b4f8aa574..6f02c72adaa 100644 --- a/snippets/csharp/System/TimeSpan/TotalDays/totaldays.cs +++ b/snippets/csharp/System/TimeSpan/TotalDays/totaldays.cs @@ -2,28 +2,28 @@ public class Example { - public static void Main() - { - // - // Define an interval of 3 days, 16+ hours. - TimeSpan interval = new TimeSpan(3, 16, 42, 45, 750); - Console.WriteLine("Value of TimeSpan: {0}", interval); - - Console.WriteLine("{0:N5} days, as follows:", interval.TotalDays); - Console.WriteLine(" Days: {0,3}", interval.Days); - Console.WriteLine(" Hours: {0,3}", interval.Hours); - Console.WriteLine(" Minutes: {0,3}", interval.Minutes); - Console.WriteLine(" Seconds: {0,3}", interval.Seconds); - Console.WriteLine(" Milliseconds: {0,3}", interval.Milliseconds); + public static void Main() + { + // + // Define an interval of 3 days, 16+ hours. + TimeSpan interval = new(3, 16, 42, 45, 750); + Console.WriteLine($"Value of TimeSpan: {interval}"); - // The example displays the following output: - // Value of TimeSpan: 3.16:42:45.7500000 - // 3.69636 days, as follows: - // Days: 3 - // Hours: 16 - // Minutes: 42 - // Seconds: 45 - // Milliseconds: 750 - // - } + Console.WriteLine($"{interval.TotalDays:N5} days, as follows:"); + Console.WriteLine($" Days: {interval.Days,3}"); + Console.WriteLine($" Hours: {interval.Hours,3}"); + Console.WriteLine($" Minutes: {interval.Minutes,3}"); + Console.WriteLine($" Seconds: {interval.Seconds,3}"); + Console.WriteLine($" Milliseconds: {interval.Milliseconds,3}"); + + // The example displays the following output: + // Value of TimeSpan: 3.16:42:45.7500000 + // 3.69636 days, as follows: + // Days: 3 + // Hours: 16 + // Minutes: 42 + // Seconds: 45 + // Milliseconds: 750 + // + } } diff --git a/snippets/csharp/System/TimeSpan/TotalHours/totalhours.cs b/snippets/csharp/System/TimeSpan/TotalHours/totalhours.cs index c667cc0911d..efc9ea06c12 100644 --- a/snippets/csharp/System/TimeSpan/TotalHours/totalhours.cs +++ b/snippets/csharp/System/TimeSpan/TotalHours/totalhours.cs @@ -2,27 +2,26 @@ public class Example { - public static void Main() - { - // - // Define an interval of 1 day, 15+ hours. - TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); - Console.WriteLine("Value of TimeSpan: {0}", interval); - - Console.WriteLine("{0:N5} hours, as follows:", interval.TotalHours); - Console.WriteLine(" Hours: {0,3}", - interval.Days * 24 + interval.Hours); - Console.WriteLine(" Minutes: {0,3}", interval.Minutes); - Console.WriteLine(" Seconds: {0,3}", interval.Seconds); - Console.WriteLine(" Milliseconds: {0,3}", interval.Milliseconds); + public static void Main() + { + // + // Define an interval of 1 day, 15+ hours. + TimeSpan interval = new(1, 15, 42, 45, 750); + Console.WriteLine($"Value of TimeSpan: {interval}"); - // The example displays the following output: - // Value of TimeSpan: 1.15:42:45.7500000 - // 39.71271 hours, as follows: - // Hours: 39 - // Minutes: 42 - // Seconds: 45 - // Milliseconds: 750 - // - } + Console.WriteLine($"{interval.TotalHours:N5} hours, as follows:"); + Console.WriteLine($" Hours: {interval.Days * 24 + interval.Hours,3}"); + Console.WriteLine($" Minutes: {interval.Minutes,3}"); + Console.WriteLine($" Seconds: {interval.Seconds,3}"); + Console.WriteLine($" Milliseconds: {interval.Milliseconds,3}"); + + // The example displays the following output: + // Value of TimeSpan: 1.15:42:45.7500000 + // 39.71271 hours, as follows: + // Hours: 39 + // Minutes: 42 + // Seconds: 45 + // Milliseconds: 750 + // + } } diff --git a/snippets/csharp/System/TimeSpan/TotalMilliseconds/totalmilliseconds.cs b/snippets/csharp/System/TimeSpan/TotalMilliseconds/totalmilliseconds.cs index d79e8f3206c..53e4c8b9508 100644 --- a/snippets/csharp/System/TimeSpan/TotalMilliseconds/totalmilliseconds.cs +++ b/snippets/csharp/System/TimeSpan/TotalMilliseconds/totalmilliseconds.cs @@ -2,28 +2,27 @@ public class Example { - public static void Main() - { - // - // Define an interval of 1 day, 15+ hours. - TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); - Console.WriteLine("Value of TimeSpan: {0}", interval); - - Console.WriteLine("There are {0:N5} milliseconds, as follows:", interval.TotalMilliseconds); - long nMilliseconds = interval.Days * 24 * 60 * 60 * 1000 + - interval.Hours *60 * 60 * 1000 + - interval.Minutes * 60 * 1000 + - interval.Seconds * 1000 + - interval.Milliseconds; - Console.WriteLine(" Milliseconds: {0,18:N0}", nMilliseconds); - Console.WriteLine(" Ticks: {0,18:N0}", - nMilliseconds * 10000 - interval.Ticks); + public static void Main() + { + // + // Define an interval of 1 day, 15+ hours. + TimeSpan interval = new(1, 15, 42, 45, 750); + Console.WriteLine($"Value of TimeSpan: {interval}"); - // The example displays the following output: - // Value of TimeSpan: 1.15:42:45.7500000 - // There are 142,965,750.00000 milliseconds, as follows: - // Milliseconds: 142,965,750 - // Ticks: 0 - // - } + Console.WriteLine($"There are {interval.TotalMilliseconds:N5} milliseconds, as follows:"); + long nMilliseconds = interval.Days * 24 * 60 * 60 * 1000 + + interval.Hours * 60 * 60 * 1000 + + interval.Minutes * 60 * 1000 + + interval.Seconds * 1000 + + interval.Milliseconds; + Console.WriteLine($" Milliseconds: {nMilliseconds,18:N0}"); + Console.WriteLine($" Ticks: {nMilliseconds * 10000 - interval.Ticks,18:N0}"); + + // The example displays the following output: + // Value of TimeSpan: 1.15:42:45.7500000 + // There are 142,965,750.00000 milliseconds, as follows: + // Milliseconds: 142,965,750 + // Ticks: 0 + // + } } diff --git a/snippets/csharp/System/TimeSpan/TotalMinutes/totalminutes.cs b/snippets/csharp/System/TimeSpan/TotalMinutes/totalminutes.cs index b3aa641a06d..534257ccf03 100644 --- a/snippets/csharp/System/TimeSpan/TotalMinutes/totalminutes.cs +++ b/snippets/csharp/System/TimeSpan/TotalMinutes/totalminutes.cs @@ -2,26 +2,26 @@ public class Example { - public static void Main() - { - // - // Define an interval of 1 day, 15+ hours. - TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); - Console.WriteLine("Value of TimeSpan: {0}", interval); - - Console.WriteLine("{0:N5} minutes, as follows:", interval.TotalMinutes); - Console.WriteLine(" Minutes: {0,5}", interval.Days * 24 * 60 + - interval.Hours * 60 + - interval.Minutes); - Console.WriteLine(" Seconds: {0,5}", interval.Seconds); - Console.WriteLine(" Milliseconds: {0,5}", interval.Milliseconds); + public static void Main() + { + // + // Define an interval of 1 day, 15+ hours. + TimeSpan interval = new(1, 15, 42, 45, 750); + Console.WriteLine($"Value of TimeSpan: {interval}"); - // The example displays the following output: - // Value of TimeSpan: 1.15:42:45.7500000 - // 2,382.76250 minutes, as follows: - // Minutes: 2382 - // Seconds: 45 - // Milliseconds: 750 - // - } + Console.WriteLine($"{interval.TotalMinutes:N5} minutes, as follows:"); + Console.WriteLine($" Minutes: {interval.Days * 24 * 60 + + interval.Hours * 60 + + interval.Minutes,5}"); + Console.WriteLine($" Seconds: {interval.Seconds,5}"); + Console.WriteLine($" Milliseconds: {interval.Milliseconds,5}"); + + // The example displays the following output: + // Value of TimeSpan: 1.15:42:45.7500000 + // 2,382.76250 minutes, as follows: + // Minutes: 2382 + // Seconds: 45 + // Milliseconds: 750 + // + } } diff --git a/snippets/csharp/System/TimeSpan/TotalSeconds/totalseconds.cs b/snippets/csharp/System/TimeSpan/TotalSeconds/totalseconds.cs index db041c79fd1..784ca177241 100644 --- a/snippets/csharp/System/TimeSpan/TotalSeconds/totalseconds.cs +++ b/snippets/csharp/System/TimeSpan/TotalSeconds/totalseconds.cs @@ -2,25 +2,25 @@ public class Example { - public static void Main() - { - // - // Define an interval of 1 day, 15+ hours. - TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); - Console.WriteLine("Value of TimeSpan: {0}", interval); - - Console.WriteLine("{0:N5} seconds, as follows:", interval.TotalSeconds); - Console.WriteLine(" Seconds: {0,8:N0}", interval.Days * 24 * 60 * 60 + - interval.Hours *60 * 60 + - interval.Minutes * 60 + - interval.Seconds); - Console.WriteLine(" Milliseconds: {0,8}", interval.Milliseconds); + public static void Main() + { + // + // Define an interval of 1 day, 15+ hours. + TimeSpan interval = new(1, 15, 42, 45, 750); + Console.WriteLine($"Value of TimeSpan: {interval}"); - // The example displays the following output: - // Value of TimeSpan: 1.15:42:45.7500000 - // 142,965.75000 seconds, as follows: - // Seconds: 142,965 - // Milliseconds: 750 - // - } + Console.WriteLine($"{interval.TotalSeconds:N5} seconds, as follows:"); + Console.WriteLine($" Seconds: {interval.Days * 24 * 60 * 60 + + interval.Hours * 60 * 60 + + interval.Minutes * 60 + + interval.Seconds,8:N0}"); + Console.WriteLine($" Milliseconds: {interval.Milliseconds,8}"); + + // The example displays the following output: + // Value of TimeSpan: 1.15:42:45.7500000 + // 142,965.75000 seconds, as follows: + // Seconds: 142,965 + // Milliseconds: 750 + // + } } diff --git a/snippets/csharp/System/TimeSpan/TryParse/TryParse1.cs b/snippets/csharp/System/TimeSpan/TryParse/TryParse1.cs index 783b776fbfc..22d3336a17a 100644 --- a/snippets/csharp/System/TimeSpan/TryParse/TryParse1.cs +++ b/snippets/csharp/System/TimeSpan/TryParse/TryParse1.cs @@ -3,39 +3,37 @@ public class TryParse { - private static void ParseTimeSpan(string intervalStr) - { - // Write the first part of the output line. - Console.Write( "{0,20} ", intervalStr ); + private static void ParseTimeSpan(string intervalStr) + { + // Write the first part of the output line. + Console.Write($"{intervalStr,20} "); - // Parse the parameter, and then convert it back to a string. - TimeSpan intervalVal; - if (TimeSpan.TryParse(intervalStr, out intervalVal)) - { - string intervalToStr = intervalVal.ToString(); - - // Pad the end of the TimeSpan string with spaces if it - // does not contain milliseconds. - int pIndex = intervalToStr.IndexOf(':'); - pIndex = intervalToStr.IndexOf('.', pIndex); - if (pIndex < 0) - intervalToStr += " "; - - Console.WriteLine("{0,21}", intervalToStr); - // Handle failure of TryParse method. - } - else - { - Console.WriteLine("Parse operation failed."); - } - } - - public static void Main() - { - Console.WriteLine( "{0,20} {1,21}", - "String to Parse", "TimeSpan" ); - Console.WriteLine( "{0,20} {1,21}", - "---------------", "---------------------" ); + // Parse the parameter, and then convert it back to a string. + TimeSpan intervalVal; + if (TimeSpan.TryParse(intervalStr, out intervalVal)) + { + string intervalToStr = intervalVal.ToString(); + + // Pad the end of the TimeSpan string with spaces if it + // does not contain milliseconds. + int pIndex = intervalToStr.IndexOf(':'); + pIndex = intervalToStr.IndexOf('.', pIndex); + if (pIndex < 0) + intervalToStr += " "; + + Console.WriteLine($"{intervalToStr,21}"); + // Handle failure of TryParse method. + } + else + { + Console.WriteLine("Parse operation failed."); + } + } + + public static void Main() + { + Console.WriteLine($"{"String to Parse",20} {"TimeSpan",21}"); + Console.WriteLine($"{"---------------",20} {"---------------------",21}"); ParseTimeSpan("0"); ParseTimeSpan("14"); @@ -61,7 +59,7 @@ public static void Main() ParseTimeSpan("10."); ParseTimeSpan("10.12"); ParseTimeSpan("10.12:00"); - } + } } // String to Parse TimeSpan // --------------- --------------------- diff --git a/snippets/csharp/System/TimeSpan/TryParse/tryparse2.cs b/snippets/csharp/System/TimeSpan/TryParse/tryparse2.cs index 3824d3786a7..b8218ec673d 100644 --- a/snippets/csharp/System/TimeSpan/TryParse/tryparse2.cs +++ b/snippets/csharp/System/TimeSpan/TryParse/tryparse2.cs @@ -4,42 +4,42 @@ public class Example { - public static void Main() - { - string[] values = { "6", "6:12", "6:12:14", "6:12:14:45", - "6.12:14:45", "6:12:14:45.3448", - "6:12:14:45,3448", "6:34:14:45" }; - CultureInfo[] cultures = { new CultureInfo("en-US"), + public static void Main() + { + string[] values = [ "6", "6:12", "6:12:14", "6:12:14:45", + "6.12:14:45", "6:12:14:45.3448", + "6:12:14:45,3448", "6:34:14:45" ]; + CultureInfo[] cultures = [ new CultureInfo("en-US"), new CultureInfo("ru-RU"), - CultureInfo.InvariantCulture }; - - string header = String.Format("{0,-17}", "String"); - foreach (CultureInfo culture in cultures) - header += culture.Equals(CultureInfo.InvariantCulture) ? - String.Format("{0,20}", "Invariant") : - String.Format("{0,20}", culture.Name); + CultureInfo.InvariantCulture ]; - Console.WriteLine(header); - Console.WriteLine(); - - foreach (string value in values) - { - Console.Write("{0,-17}", value); - foreach (CultureInfo culture in cultures) - { - TimeSpan interval = new TimeSpan(); - if (TimeSpan.TryParse(value, culture, out interval)) - Console.Write("{0,20}", interval.ToString("c")); - else - Console.Write("{0,20}", "Unable to Parse"); - } - Console.WriteLine(); - } - } + string header = $"{"String",-17}"; + foreach (CultureInfo culture in cultures) + header += culture.Equals(CultureInfo.InvariantCulture) ? + $"{"Invariant",20}" : + $"{culture.Name,20}"; + + Console.WriteLine(header); + Console.WriteLine(); + + foreach (string value in values) + { + Console.Write($"{value,-17}"); + foreach (CultureInfo culture in cultures) + { + TimeSpan interval = new(); + if (TimeSpan.TryParse(value, culture, out interval)) + Console.Write($"{interval.ToString("c"),20}"); + else + Console.Write($"{"Unable to Parse",20}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // String en-US ru-RU Invariant -// +// // 6 6.00:00:00 6.00:00:00 6.00:00:00 // 6:12 06:12:00 06:12:00 06:12:00 // 6:12:14 06:12:14 06:12:14 06:12:14 @@ -48,4 +48,4 @@ public static void Main() // 6:12:14:45.3448 6.12:14:45.3448000 Unable to Parse 6.12:14:45.3448000 // 6:12:14:45,3448 Unable to Parse 6.12:14:45.3448000 Unable to Parse // 6:34:14:45 Unable to Parse Unable to Parse Unable to Parse -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/Program.cs b/snippets/csharp/System/TimeSpan/TryParseExact/Program.cs new file mode 100644 index 00000000000..9f145ec0812 --- /dev/null +++ b/snippets/csharp/System/TimeSpan/TryParseExact/Program.cs @@ -0,0 +1,4 @@ +TryParseExactExample1.Run(); +TryParseExactExample2.Run(); +TryParseExactExample3.Run(); +TryParseExactExample4.Run(); diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/Project.csproj b/snippets/csharp/System/TimeSpan/TryParseExact/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TimeSpan/TryParseExact/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample1.cs b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample1.cs index 08d4d54eb50..cbe17d7617a 100644 --- a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample1.cs +++ b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample1.cs @@ -2,93 +2,93 @@ using System; using System.Globalization; -public class Example +public class TryParseExactExample1 { - public static void Main() - { - string intervalString, format; - TimeSpan interval; - CultureInfo culture; - - // Parse hour:minute value with "g" specifier current culture. - intervalString = "17:14"; - format = "g"; - culture = CultureInfo.CurrentCulture; - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse hour:minute:second value with "G" specifier. - intervalString = "17:14:48"; - format = "G"; - culture = CultureInfo.InvariantCulture; - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); + public static void Run() + { + string intervalString, format; + TimeSpan interval; + CultureInfo culture; - // Parse days:hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = new CultureInfo("fr-FR"); - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48,153"; - format = "G"; - if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); + // Parse hour:minute value with "g" specifier current culture. + intervalString = "17:14"; + format = "g"; + culture = CultureInfo.CurrentCulture; + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); - // Parse a single number using the "c" standard format string. - intervalString = "12"; - format = "c"; - if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse a single number using the "%h" custom format string. - format = "%h"; - if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - - // Parse a single number using the "%s" custom format string. - format = "%s"; - if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) - Console.WriteLine("'{0}' --> {1}", intervalString, interval); - else - Console.WriteLine("Unable to parse {0}", intervalString); - } + // Parse hour:minute:second value with "G" specifier. + intervalString = "17:14:48"; + format = "G"; + culture = CultureInfo.InvariantCulture; + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse days:hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = new("fr-FR"); + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48,153"; + format = "G"; + if (TimeSpan.TryParseExact(intervalString, format, culture, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse a single number using the "c" standard format string. + intervalString = "12"; + format = "c"; + if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse a single number using the "%h" custom format string. + format = "%h"; + if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + + // Parse a single number using the "%s" custom format string. + format = "%s"; + if (TimeSpan.TryParseExact(intervalString, format, null, out interval)) + Console.WriteLine($"'{intervalString}' --> {interval}"); + else + Console.WriteLine($"Unable to parse {intervalString}"); + } } // The example displays the following output: // '17:14' --> 17:14:00 diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample2.cs b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample2.cs index d496905410c..8901e941aea 100644 --- a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample2.cs +++ b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample2.cs @@ -2,110 +2,101 @@ using System; using System.Globalization; -public class Example +public class TryParseExactExample2 { - public static void Main() - { - string intervalString, format; - TimeSpan interval; - CultureInfo culture = null; - - // Parse hour:minute value with custom format specifier. - intervalString = "17:14"; - format = "h\\:mm"; - culture = CultureInfo.CurrentCulture; - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse hour:minute:second value with "g" specifier. - intervalString = "17:14:48"; - format = "g"; - culture = CultureInfo.InvariantCulture; - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse hours:minute.second value with custom format specifier. - intervalString = "17:14:48.153"; - format = @"h\:mm\:ss\.fff"; - culture = null; - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); + public static void Run() + { + string intervalString, format; + TimeSpan interval; + CultureInfo culture = null; - // Parse days:hours:minute.second value with "G" specifier - // and current (en-US) culture. - intervalString = "3:17:14:48.153"; - format = "G"; - culture = CultureInfo.CurrentCulture; - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse days:hours:minute.second value with a custom format specifier. - intervalString = "3:17:14:48.153"; - format = @"d\:hh\:mm\:ss\.fff"; - culture = null; - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse days:hours:minute.second value with "G" specifier - // and fr-FR culture. - intervalString = "3:17:14:48,153"; - format = "G"; - culture = new CultureInfo("fr-FR"); - if (TimeSpan.TryParseExact(intervalString, format, - culture, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); + // Parse hour:minute value with custom format specifier. + intervalString = "17:14"; + format = "h\\:mm"; + culture = CultureInfo.CurrentCulture; + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); - // Parse a single number using the "c" standard format string. - intervalString = "12"; - format = "c"; - if (TimeSpan.TryParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse a single number using the "%h" custom format string. - format = "%h"; - if (TimeSpan.TryParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - - // Parse a single number using the "%s" custom format string. - format = "%s"; - if (TimeSpan.TryParseExact(intervalString, format, - null, TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("'{0}' ({1}) --> {2}", intervalString, format, interval); - else - Console.WriteLine("Unable to parse '{0}' using format {1}", - intervalString, format); - } + // Parse hour:minute:second value with "g" specifier. + intervalString = "17:14:48"; + format = "g"; + culture = CultureInfo.InvariantCulture; + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse hours:minute.second value with custom format specifier. + intervalString = "17:14:48.153"; + format = @"h\:mm\:ss\.fff"; + culture = null; + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse days:hours:minute.second value with "G" specifier + // and current (en-US) culture. + intervalString = "3:17:14:48.153"; + format = "G"; + culture = CultureInfo.CurrentCulture; + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse days:hours:minute.second value with a custom format specifier. + intervalString = "3:17:14:48.153"; + format = @"d\:hh\:mm\:ss\.fff"; + culture = null; + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse days:hours:minute.second value with "G" specifier + // and fr-FR culture. + intervalString = "3:17:14:48,153"; + format = "G"; + culture = new("fr-FR"); + if (TimeSpan.TryParseExact(intervalString, format, + culture, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse a single number using the "c" standard format string. + intervalString = "12"; + format = "c"; + if (TimeSpan.TryParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse a single number using the "%h" custom format string. + format = "%h"; + if (TimeSpan.TryParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + + // Parse a single number using the "%s" custom format string. + format = "%s"; + if (TimeSpan.TryParseExact(intervalString, format, + null, TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"'{intervalString}' ({format}) --> {interval}"); + else + Console.WriteLine($"Unable to parse '{intervalString}' using format {format}"); + } } // The example displays the following output: // '17:14' (h\:mm) --> -17:14:00 diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample3.cs b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample3.cs index 8a1398b4bed..4caee9407ce 100644 --- a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample3.cs +++ b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample3.cs @@ -2,24 +2,25 @@ using System; using System.Globalization; -public class Example +public class TryParseExactExample3 { - public static void Main() - { - string[] inputs = { "3", "16:42", "1:6:52:35.0625", - "1:6:52:35,0625" }; - string[] formats = { "g", "G", "%h"}; - TimeSpan interval; - CultureInfo culture = new CultureInfo("fr-FR"); - - // Parse each string in inputs using formats and the fr-FR culture. - foreach (string input in inputs) { - if(TimeSpan.TryParseExact(input, formats, culture, out interval)) - Console.WriteLine("{0} --> {1:c}", input, interval); - else - Console.WriteLine("Unable to parse {0}", input); - } - } + public static void Run() + { + string[] inputs = [ "3", "16:42", "1:6:52:35.0625", + "1:6:52:35,0625" ]; + string[] formats = [ "g", "G", "%h" ]; + TimeSpan interval; + CultureInfo culture = new("fr-FR"); + + // Parse each string in inputs using formats and the fr-FR culture. + foreach (string input in inputs) + { + if (TimeSpan.TryParseExact(input, formats, culture, out interval)) + Console.WriteLine($"{input} --> {interval:c}"); + else + Console.WriteLine($"Unable to parse {input}"); + } + } } // The example displays the following output: // 3 --> 03:00:00 diff --git a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample4.cs b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample4.cs index 1e53dd05895..1a0ac2931b9 100644 --- a/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample4.cs +++ b/snippets/csharp/System/TimeSpan/TryParseExact/tryparseexactexample4.cs @@ -2,25 +2,26 @@ using System; using System.Globalization; -public class Example +public class TryParseExactExample4 { - public static void Main() - { - string[] inputs = { "3", "16:42", "1:6:52:35.0625", - "1:6:52:35,0625" }; - string[] formats = { "%h", "g", "G" }; - TimeSpan interval; - CultureInfo culture = new CultureInfo("fr-FR"); - - // Parse each string in inputs using formats and the fr-FR culture. - foreach (string input in inputs) { - if(TimeSpan.TryParseExact(input, formats, culture, - TimeSpanStyles.AssumeNegative, out interval)) - Console.WriteLine("{0} --> {1:c}", input, interval); - else - Console.WriteLine("Unable to parse {0}", input); - } - } + public static void Run() + { + string[] inputs = [ "3", "16:42", "1:6:52:35.0625", + "1:6:52:35,0625" ]; + string[] formats = [ "%h", "g", "G" ]; + TimeSpan interval; + CultureInfo culture = new("fr-FR"); + + // Parse each string in inputs using formats and the fr-FR culture. + foreach (string input in inputs) + { + if (TimeSpan.TryParseExact(input, formats, culture, + TimeSpanStyles.AssumeNegative, out interval)) + Console.WriteLine($"{input} --> {interval:c}"); + else + Console.WriteLine($"Unable to parse {input}"); + } + } } // The example displays the following output: // 3 --> -03:00:00 diff --git a/snippets/csharp/System/TimeSpan/op_Addition/Subtraction1.cs b/snippets/csharp/System/TimeSpan/op_Addition/Subtraction1.cs index 80fa199e085..9fec60265f2 100644 --- a/snippets/csharp/System/TimeSpan/op_Addition/Subtraction1.cs +++ b/snippets/csharp/System/TimeSpan/op_Addition/Subtraction1.cs @@ -2,22 +2,20 @@ public class Example { - public static void Main() - { - // - var startWork = new TimeSpan(08,00,00); - var endWork = new TimeSpan(18,30,00); - var lunchBreak = new TimeSpan(1, 0, 0); - var breaks = new TimeSpan(0, 30, 0); - - Console.WriteLine("Length of work day: {0}", - endWork - startWork); - Console.WriteLine("Actual time worked: {0}", - endWork - startWork - (lunchBreak + breaks)); + public static void Main() + { + // + var startWork = new TimeSpan(08, 00, 00); + var endWork = new TimeSpan(18, 30, 00); + var lunchBreak = new TimeSpan(1, 0, 0); + var breaks = new TimeSpan(0, 30, 0); - // The example displays the following output: - // Length of work day: 10:30:00 - // Actual time worked: 09:00:00 - // - } + Console.WriteLine($"Length of work day: {endWork - startWork}"); + Console.WriteLine($"Actual time worked: {endWork - startWork - (lunchBreak + breaks)}"); + + // The example displays the following output: + // Length of work day: 10:30:00 + // Actual time worked: 09:00:00 + // + } } diff --git a/snippets/csharp/System/TimeSpan/op_Addition/operators1.cs b/snippets/csharp/System/TimeSpan/op_Addition/operators1.cs index bde80fdaa9b..155b5f3ca17 100644 --- a/snippets/csharp/System/TimeSpan/op_Addition/operators1.cs +++ b/snippets/csharp/System/TimeSpan/op_Addition/operators1.cs @@ -2,21 +2,21 @@ public class Class1 { - public static void Main() - { - // - TimeSpan time1 = new TimeSpan(1, 0, 0, 0); // TimeSpan equivalent to 1 day. - TimeSpan time2 = new TimeSpan(12, 0, 0); // TimeSpan equivalent to 1/2 day. - TimeSpan time3 = time1 + time2; // Add the two time spans. - - Console.WriteLine(" {0,12}\n + {1,10}\n {3}\n {2,10}", - time1, time2, time3, new String('_', 10)); + public static void Main() + { + // + TimeSpan time1 = new(1, 0, 0, 0); // TimeSpan equivalent to 1 day. + TimeSpan time2 = new(12, 0, 0); // TimeSpan equivalent to 1/2 day. + TimeSpan time3 = time1 + time2; // Add the two time spans. - // The example displays the following output: - // 1.00:00:00 - // + 12:00:00 - // __________ - // 1.12:00:00 - // - } + Console.WriteLine(" {0,12}\n + {1,10}\n {3}\n {2,10}", + time1, time2, time3, new string('_', 10)); + + // The example displays the following output: + // 1.00:00:00 + // + 12:00:00 + // __________ + // 1.12:00:00 + // + } } diff --git a/snippets/csharp/System/TimeSpan/op_Equality/relationalops.cs b/snippets/csharp/System/TimeSpan/op_Equality/relationalops.cs index fdeeea2e211..b3d2ed170ca 100644 --- a/snippets/csharp/System/TimeSpan/op_Equality/relationalops.cs +++ b/snippets/csharp/System/TimeSpan/op_Equality/relationalops.cs @@ -4,45 +4,45 @@ class TSRelationalOpsDemo { - const string dataFmt = "{0,34} {1}" ; + const string dataFmt = "{0,34} {1}"; // Compare TimeSpan parameters, and display them with the results. - static void CompareTimeSpans( TimeSpan Left, TimeSpan Right, - string RightText ) + static void CompareTimeSpans(TimeSpan Left, TimeSpan Right, + string RightText) { - Console.WriteLine( ); - Console.WriteLine( dataFmt, "Right: " + RightText, Right ); - Console.WriteLine( dataFmt, "Left == Right", Left == Right ); - Console.WriteLine( dataFmt, "Left > Right", Left > Right ); - Console.WriteLine( dataFmt, "Left >= Right", Left >= Right ); - Console.WriteLine( dataFmt, "Left != Right", Left != Right ); - Console.WriteLine( dataFmt, "Left < Right", Left < Right ); - Console.WriteLine( dataFmt, "Left <= Right", Left <= Right ); + Console.WriteLine(); + Console.WriteLine(dataFmt, "Right: " + RightText, Right); + Console.WriteLine(dataFmt, "Left == Right", Left == Right); + Console.WriteLine(dataFmt, "Left > Right", Left > Right); + Console.WriteLine(dataFmt, "Left >= Right", Left >= Right); + Console.WriteLine(dataFmt, "Left != Right", Left != Right); + Console.WriteLine(dataFmt, "Left < Right", Left < Right); + Console.WriteLine(dataFmt, "Left <= Right", Left <= Right); } - static void Main( ) + static void Main() { - TimeSpan Left = new TimeSpan( 2, 0, 0 ); + TimeSpan Left = new(2, 0, 0); Console.WriteLine( "This example of the TimeSpan relational operators " + "generates \nthe following output. It creates several " + "different TimeSpan \nobjects and compares them with " + - "a 2-hour TimeSpan.\n" ); - Console.WriteLine( dataFmt, - "Left: TimeSpan( 2, 0, 0 )", Left ); + "a 2-hour TimeSpan.\n"); + Console.WriteLine(dataFmt, + "Left: TimeSpan( 2, 0, 0 )", Left); // Create objects to compare with a 2-hour TimeSpan. - CompareTimeSpans( Left, new TimeSpan( 0, 120, 0 ), - "TimeSpan( 0, 120, 0 )" ); - CompareTimeSpans( Left, new TimeSpan( 2, 0, 1 ), - "TimeSpan( 2, 0, 1 )" ); - CompareTimeSpans( Left, new TimeSpan( 2, 0, -1 ), - "TimeSpan( 2, 0, -1 )" ); - CompareTimeSpans( Left, TimeSpan.FromDays( 1.0 / 12D ), - "TimeSpan.FromDays( 1 / 12 )" ); - } -} + CompareTimeSpans(Left, new TimeSpan(0, 120, 0), + "TimeSpan( 0, 120, 0 )"); + CompareTimeSpans(Left, new TimeSpan(2, 0, 1), + "TimeSpan( 2, 0, 1 )"); + CompareTimeSpans(Left, new TimeSpan(2, 0, -1), + "TimeSpan( 2, 0, -1 )"); + CompareTimeSpans(Left, TimeSpan.FromDays(1.0 / 12D), + "TimeSpan.FromDays( 1 / 12 )"); + } +} /* This example of the TimeSpan relational operators generates @@ -82,5 +82,5 @@ objects and compares them with a 2-hour TimeSpan. Left != Right False Left < Right False Left <= Right True -*/ +*/ // diff --git a/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/DateEnd/DateStart1.cs b/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/DateEnd/DateStart1.cs index 1e312e5fb10..7f3234b3836 100644 --- a/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/DateEnd/DateStart1.cs +++ b/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/DateEnd/DateStart1.cs @@ -5,76 +5,63 @@ public class Example { - public static void Main() - { - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; - - foreach (var zone in timeZones) - { - Console.WriteLine("{0} transition time information:", zone.StandardName); - Console.WriteLine(" Time zone information: "); - Console.WriteLine(" Base UTC Offset: {0}", zone.BaseUtcOffset); - Console.WriteLine(" Supports DST: {0}", zone.SupportsDaylightSavingTime); + public static void Main() + { + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; - TimeZoneInfo.AdjustmentRule[] adjustmentRules= zone.GetAdjustmentRules(); - - // Indicate that time zone has no adjustment rules - if (adjustmentRules.Length == 0) { - Console.WriteLine(" No adjustment rules defined."); - } - else { - Console.WriteLine(" Adjustment Rules: {0}", adjustmentRules.Length); - // Iterate adjustment rules - foreach (var adjustmentRule in adjustmentRules) { - Console.WriteLine(" Adjustment rule from {0:d} to {1:d}:", - adjustmentRule.DateStart, - adjustmentRule.DateEnd); - Console.WriteLine(" Delta: {0}", adjustmentRule.DaylightDelta); - // Get start of transition - TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; - // Display information on floating date rule - if (!daylightStart.IsFixedDateRule) - Console.WriteLine(" Begins at {0:t} on the {1} {2} of {3}", - daylightStart.TimeOfDay, - (WeekOfMonth) daylightStart.Week, - daylightStart.DayOfWeek, - dateInfo.GetMonthName(daylightStart.Month)); - // Display information on fixed date rule - else - Console.WriteLine(" Begins at {0:t} on {1} {2}", - daylightStart.TimeOfDay, - dateInfo.GetMonthName(daylightStart.Month), - daylightStart.Day); - - // Get end of transition. - TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; - // Display information on floating date rule. - if (!daylightEnd.IsFixedDateRule) - Console.WriteLine(" Ends at {0:t} on the {1} {2} of {3}", - daylightEnd.TimeOfDay, - (WeekOfMonth) daylightEnd.Week, - daylightEnd.DayOfWeek, - dateInfo.GetMonthName(daylightEnd.Month)); - // Display information on fixed date rule. - else - Console.WriteLine(" Ends at {0:t} on {1} {2}", - daylightEnd.TimeOfDay, - dateInfo.GetMonthName(daylightEnd.Month), - daylightEnd.Day); + foreach (var zone in timeZones) + { + Console.WriteLine($"{zone.StandardName} transition time information:"); + Console.WriteLine(" Time zone information: "); + Console.WriteLine($" Base UTC Offset: {zone.BaseUtcOffset}"); + Console.WriteLine($" Supports DST: {zone.SupportsDaylightSavingTime}"); + + TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); + + // Indicate that time zone has no adjustment rules + if (adjustmentRules.Length == 0) + { + Console.WriteLine(" No adjustment rules defined."); + } + else + { + Console.WriteLine($" Adjustment Rules: {adjustmentRules.Length}"); + // Iterate adjustment rules + foreach (var adjustmentRule in adjustmentRules) + { + Console.WriteLine($" Adjustment rule from {adjustmentRule.DateStart:d} to {adjustmentRule.DateEnd:d}:"); + Console.WriteLine($" Delta: {adjustmentRule.DaylightDelta}"); + // Get start of transition + TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; + // Display information on floating date rule + if (!daylightStart.IsFixedDateRule) + Console.WriteLine($" Begins at {daylightStart.TimeOfDay:t} on the {(WeekOfMonth)daylightStart.Week} {daylightStart.DayOfWeek} of {dateInfo.GetMonthName(daylightStart.Month)}"); + // Display information on fixed date rule + else + Console.WriteLine($" Begins at {daylightStart.TimeOfDay:t} on {dateInfo.GetMonthName(daylightStart.Month)} {daylightStart.Day}"); + + // Get end of transition. + TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; + // Display information on floating date rule. + if (!daylightEnd.IsFixedDateRule) + Console.WriteLine($" Ends at {daylightEnd.TimeOfDay:t} on the {(WeekOfMonth)daylightEnd.Week} {daylightEnd.DayOfWeek} of {dateInfo.GetMonthName(daylightEnd.Month)}"); + // Display information on fixed date rule. + else + Console.WriteLine($" Ends at {daylightEnd.TimeOfDay:t} on {dateInfo.GetMonthName(daylightEnd.Month)} {daylightEnd.Day}"); + } } - } - } - } + } + } - private enum WeekOfMonth - { - First = 1, - Second = 2, - Third = 3, - Fourth = 4, - Last = 5, - } + private enum WeekOfMonth + { + First = 1, + Second = 2, + Third = 3, + Fourth = 4, + Last = 5, + } } // A portion of the output from the example might appear as follows: // Tonga Standard Time transition time information: diff --git a/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/Overview/System.TimeZone2.AdjustmentRule.Class.cs b/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/Overview/System.TimeZone2.AdjustmentRule.Class.cs index 2c6a43727c5..af88a729795 100644 --- a/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/Overview/System.TimeZone2.AdjustmentRule.Class.cs +++ b/snippets/csharp/System/TimeZoneInfo+AdjustmentRule/Overview/System.TimeZone2.AdjustmentRule.Class.cs @@ -3,240 +3,214 @@ using System.Collections.ObjectModel; using System.Globalization; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] namespace TimeZoneInfoCode { -public class AdjustmentRuleTest -{ - private static void Main() - { - CreateCustomTimeZone(); - CompareRulesForEquality(); - ShowStartAndEndDates(); - } + public class AdjustmentRuleTest + { + private static void Main() + { + CreateCustomTimeZone(); + CompareRulesForEquality(); + ShowStartAndEndDates(); + } + + private static void CreateCustomTimeZone() + { + // + // Create alternate Central Standard Time to include historical time zone information + // + // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment; + List adjustmentList = []; + // Declare transition time variables to hold transition time information + TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; - private static void CreateCustomTimeZone() - { - // - // Create alternate Central Standard Time to include historical time zone information - // - // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment; - List adjustmentList = new List(); - // Declare transition time variables to hold transition time information - TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; + // Define end rule (for 1976-2006) + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 5, DayOfWeek.Sunday); + // Define rule (1976-1986) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1976, 1, 1), new DateTime(1986, 12, 31), delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule (1987-2006) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 01, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1987, 1, 1), new DateTime(2006, 12, 31), delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule (2007- ) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 02, DayOfWeek.Sunday); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 11, 01, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(2007, 01, 01), DateTime.MaxValue.Date, delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); - // Define end rule (for 1976-2006) - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 5, DayOfWeek.Sunday); - // Define rule (1976-1986) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1976, 1, 1), new DateTime(1986, 12, 31), delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule (1987-2006) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 01, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1987, 1, 1), new DateTime(2006, 12, 31), delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule (2007- ) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 02, DayOfWeek.Sunday); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 11, 01, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(2007, 01, 01), DateTime.MaxValue.Date, delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - - // Create custom U.S. Central Standard Time zone - TimeZoneInfo.CreateCustomTimeZone("Central Standard Time", new TimeSpan(-6, 0, 0), - "(GMT-06:00) Central Time (US Only)", "Central Standard Time", - "Central Daylight Time", adjustmentList.ToArray()); - // - } + // Create custom U.S. Central Standard Time zone + TimeZoneInfo.CreateCustomTimeZone("Central Standard Time", new TimeSpan(-6, 0, 0), + "(GMT-06:00) Central Time (US Only)", "Central Standard Time", + "Central Daylight Time", adjustmentList.ToArray()); + // + } - private static void CompareRulesForEquality() - { - // - string timeZoneName = ""; - // Get CST, Canadian CST, and Mexican CST adjustment rules - TimeZoneInfo.AdjustmentRule[] usCstAdjustments = null; - TimeZoneInfo.AdjustmentRule[] canCstAdjustments = null; - TimeZoneInfo.AdjustmentRule[] mexCstAdjustments = null; - try - { - timeZoneName = "Central Standard Time"; - usCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The {0} time zone is not defined in the registry.", - timeZoneName); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Data for the {0} time zone is invalid.", - timeZoneName); - } - try - { - timeZoneName = "Canada Central Standard Time"; - canCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The {0} time zone is not defined in the registry.", - timeZoneName); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Data for the {0} time zone is invalid.", - timeZoneName); - } - try - { - timeZoneName = "Central Standard Time (Mexico)"; - mexCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The {0} time zone is not defined in the registry.", - timeZoneName); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Data for the {0} time zone is invalid.", - timeZoneName); - } - // Determine if CST and other time zones have the same rules - foreach(TimeZoneInfo.AdjustmentRule rule in usCstAdjustments) - { - Console.WriteLine("Comparing Central Standard Time rule for {0:d} to {1:d} with:", - rule.DateStart, rule.DateEnd); - // Compare with Canada Central Standard Time - if (canCstAdjustments.Length == 0) - { - Console.WriteLine(" Canada Central Standard Time has no adjustment rules."); - } - else - { - foreach (TimeZoneInfo.AdjustmentRule canRule in canCstAdjustments) + private static void CompareRulesForEquality() + { + // + string timeZoneName = ""; + // Get CST, Canadian CST, and Mexican CST adjustment rules + TimeZoneInfo.AdjustmentRule[] usCstAdjustments = null; + TimeZoneInfo.AdjustmentRule[] canCstAdjustments = null; + TimeZoneInfo.AdjustmentRule[] mexCstAdjustments = null; + try + { + timeZoneName = "Central Standard Time"; + usCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine($"The {timeZoneName} time zone is not defined in the registry."); + } + catch (InvalidTimeZoneException) { - Console.WriteLine(" Canadian CST for {0:d} to {1:d}: {2}", - canRule.DateStart, canRule.DateEnd, - rule.Equals(canRule) ? "Equal" : "Not Equal"); - } - } - - // Compare with Mexico Central Standard Time - if (mexCstAdjustments.Length == 0) - { - Console.WriteLine(" Mexican Central Standard Time has no adjustment rules."); - } - else - { - foreach (TimeZoneInfo.AdjustmentRule mexRule in mexCstAdjustments) + Console.WriteLine($"Data for the {timeZoneName} time zone is invalid."); + } + try + { + timeZoneName = "Canada Central Standard Time"; + canCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); + } + catch (TimeZoneNotFoundException) { - Console.WriteLine(" Mexican CST for {0:d} to {1:d}: {2}", - mexRule.DateStart, mexRule.DateEnd, - rule.Equals(mexRule) ? "Equal" : "Not Equal"); - } - } - } - // This code displays the following output to the console: - // - // Comparing Central Standard Time rule for 1/1/0001 to 12/31/9999 with: - // Canada Central Standard Time has no adjustment rules. - // Mexican CST for 1/1/0001 to 12/31/9999: Equal - // - } + Console.WriteLine($"The {timeZoneName} time zone is not defined in the registry."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine($"Data for the {timeZoneName} time zone is invalid."); + } + try + { + timeZoneName = "Central Standard Time (Mexico)"; + mexCstAdjustments = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName).GetAdjustmentRules(); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine($"The {timeZoneName} time zone is not defined in the registry."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine($"Data for the {timeZoneName} time zone is invalid."); + } + // Determine if CST and other time zones have the same rules + foreach (TimeZoneInfo.AdjustmentRule rule in usCstAdjustments) + { + Console.WriteLine($"Comparing Central Standard Time rule for {rule.DateStart:d} to {rule.DateEnd:d} with:"); + // Compare with Canada Central Standard Time + if (canCstAdjustments.Length == 0) + { + Console.WriteLine(" Canada Central Standard Time has no adjustment rules."); + } + else + { + foreach (TimeZoneInfo.AdjustmentRule canRule in canCstAdjustments) + { + Console.WriteLine($" Canadian CST for {canRule.DateStart:d} to {canRule.DateEnd:d}: {(rule.Equals(canRule) ? "Equal" : "Not Equal")}"); + } + } - // - private enum WeekOfMonth - { - First = 1, - Second = 2, - Third = 3, - Fourth = 4, - Last = 5, - } + // Compare with Mexico Central Standard Time + if (mexCstAdjustments.Length == 0) + { + Console.WriteLine(" Mexican Central Standard Time has no adjustment rules."); + } + else + { + foreach (TimeZoneInfo.AdjustmentRule mexRule in mexCstAdjustments) + { + Console.WriteLine($" Mexican CST for {mexRule.DateStart:d} to {mexRule.DateEnd:d}: {(rule.Equals(mexRule) ? "Equal" : "Not Equal")}"); + } + } + } + // This code displays the following output to the console: + // + // Comparing Central Standard Time rule for 1/1/0001 to 12/31/9999 with: + // Canada Central Standard Time has no adjustment rules. + // Mexican CST for 1/1/0001 to 12/31/9999: Equal + // + } - private static void ShowStartAndEndDates() - { - // Get all time zones from system - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - string[] monthNames = CultureInfo.CurrentCulture.DateTimeFormat.MonthNames; - // Get each time zone - foreach (TimeZoneInfo timeZone in timeZones) - { - TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); - // Display message for time zones with no adjustments - if (adjustments.Length == 0) - { - Console.WriteLine("{0} has no adjustment rules", timeZone.StandardName); - } - else - { - // Handle time zones with 1 or 2+ adjustments differently - bool showCount = false; - int ctr = 0; - string spacer = ""; - - Console.WriteLine("{0} Adjustment rules", timeZone.StandardName); - if (adjustments.Length > 1) - { - showCount = true; - spacer = " "; - } - // Iterate adjustment rules - foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) + // + private enum WeekOfMonth + { + First = 1, + Second = 2, + Third = 3, + Fourth = 4, + Last = 5, + } + + private static void ShowStartAndEndDates() + { + // Get all time zones from system + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + string[] monthNames = CultureInfo.CurrentCulture.DateTimeFormat.MonthNames; + // Get each time zone + foreach (TimeZoneInfo timeZone in timeZones) { - if (showCount) - { - Console.WriteLine(" Adjustment rule #{0}", ctr+1); - ctr++; - } - // Display general adjustment information - Console.WriteLine("{0} Start Date: {1:D}", spacer, adjustment.DateStart); - Console.WriteLine("{0} End Date: {1:D}", spacer, adjustment.DateEnd); - Console.WriteLine("{0} Time Change: {1}:{2:00} hours", spacer, - adjustment.DaylightDelta.Hours, adjustment.DaylightDelta.Minutes); - // Get transition start information - TimeZoneInfo.TransitionTime transitionStart = adjustment.DaylightTransitionStart; - Console.Write("{0} Annual Start: ", spacer); - if (transitionStart.IsFixedDateRule) - { - Console.WriteLine("On {0} {1} at {2:t}", - monthNames[transitionStart.Month - 1], - transitionStart.Day, - transitionStart.TimeOfDay); - } - else - { - Console.WriteLine("The {0} {1} of {2} at {3:t}", - ((WeekOfMonth)transitionStart.Week).ToString(), - transitionStart.DayOfWeek.ToString(), - monthNames[transitionStart.Month - 1], - transitionStart.TimeOfDay); - } - // Get transition end information - TimeZoneInfo.TransitionTime transitionEnd = adjustment.DaylightTransitionEnd; - Console.Write("{0} Annual End: ", spacer); - if (transitionEnd.IsFixedDateRule) - { - Console.WriteLine("On {0} {1} at {2:t}", - monthNames[transitionEnd.Month - 1], - transitionEnd.Day, - transitionEnd.TimeOfDay); - } - else - { - Console.WriteLine("The {0} {1} of {2} at {3:t}", - ((WeekOfMonth)transitionEnd.Week).ToString(), - transitionEnd.DayOfWeek.ToString(), - monthNames[transitionEnd.Month - 1], - transitionEnd.TimeOfDay); - } + TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); + // Display message for time zones with no adjustments + if (adjustments.Length == 0) + { + Console.WriteLine($"{timeZone.StandardName} has no adjustment rules"); + } + else + { + // Handle time zones with 1 or 2+ adjustments differently + bool showCount = false; + int ctr = 0; + string spacer = ""; + + Console.WriteLine($"{timeZone.StandardName} Adjustment rules"); + if (adjustments.Length > 1) + { + showCount = true; + spacer = " "; + } + // Iterate adjustment rules + foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) + { + if (showCount) + { + Console.WriteLine($" Adjustment rule #{ctr + 1}"); + ctr++; + } + // Display general adjustment information + Console.WriteLine($"{spacer} Start Date: {adjustment.DateStart:D}"); + Console.WriteLine($"{spacer} End Date: {adjustment.DateEnd:D}"); + Console.WriteLine($"{spacer} Time Change: {adjustment.DaylightDelta.Hours}:{adjustment.DaylightDelta.Minutes:00} hours"); + // Get transition start information + TimeZoneInfo.TransitionTime transitionStart = adjustment.DaylightTransitionStart; + Console.Write($"{spacer} Annual Start: "); + if (transitionStart.IsFixedDateRule) + { + Console.WriteLine($"On {monthNames[transitionStart.Month - 1]} {transitionStart.Day} at {transitionStart.TimeOfDay:t}"); + } + else + { + Console.WriteLine($"The {((WeekOfMonth)transitionStart.Week)} {transitionStart.DayOfWeek} of {monthNames[transitionStart.Month - 1]} at {transitionStart.TimeOfDay:t}"); + } + // Get transition end information + TimeZoneInfo.TransitionTime transitionEnd = adjustment.DaylightTransitionEnd; + Console.Write($"{spacer} Annual End: "); + if (transitionEnd.IsFixedDateRule) + { + Console.WriteLine($"On {monthNames[transitionEnd.Month - 1]} {transitionEnd.Day} at {transitionEnd.TimeOfDay:t}"); + } + else + { + Console.WriteLine($"The {((WeekOfMonth)transitionEnd.Week)} {transitionEnd.DayOfWeek} of {monthNames[transitionEnd.Month - 1]} at {transitionEnd.TimeOfDay:t}"); + } + } + } + Console.WriteLine(); } - } - Console.WriteLine(); - } - } - // -} + } + // + } } // end namespace diff --git a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Program.cs b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Program.cs new file mode 100644 index 00000000000..9e1d688f17e --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Program.cs @@ -0,0 +1,2 @@ +TransitionTimeExamplesFull.Run(); +TransitionTimeExamplesYear.Run(); diff --git a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Project.csproj b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/System.TimeZone2.TransitionTime.Class.cs b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/System.TimeZone2.TransitionTime.Class.cs index 49b940fa108..3109acd1f6b 100644 --- a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/System.TimeZone2.TransitionTime.Class.cs +++ b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/System.TimeZone2.TransitionTime.Class.cs @@ -3,325 +3,271 @@ using System.Collections.ObjectModel; using System.Globalization; -[assembly:CLSCompliant(true)] -public class TransitionTimeExamples +[assembly: CLSCompliant(true)] +public class TransitionTimeExamplesFull { - public static void Main() - { - TransitionTimeExamples tte = new TransitionTimeExamples(); - - Console.WriteLine("***CompareForEquality()"); - tte.CompareForEquality(); - Console.WriteLine(); - Console.WriteLine("***CompareTransitionTimesForEquality()"); - tte.CompareTransitionTimesForEquality(); - Console.WriteLine(); - Console.WriteLine("***CreateTransitionRules()"); - tte.CreateTransitionRules(); - Console.WriteLine(); - Console.WriteLine("***GetFixedTransitionTimes()"); - tte.GetFixedTransitionTimes(); - Console.WriteLine(); - Console.WriteLine("***GetFloatingTransitionTimes()"); - tte.GetFloatingTransitionTimes(); - Console.WriteLine(); - Console.WriteLine("***GetTransitionTimes(2006)"); - tte.GetTransitionTimes(2006); - AdditionalExamples ae = new AdditionalExamples(); - Console.WriteLine(); - Console.WriteLine("***GetAllTransitionTimes()"); - ae.GetAllTransitionTimes(); - } + public static void Run() + { + TransitionTimeExamplesFull tte = new(); - private void CompareForEquality() - { - // - TimeZoneInfo.TransitionTime tt1 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); - TimeZoneInfo.TransitionTime tt2 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); - TimeZoneInfo.TransitionTime tt3 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 02, 00, 00), 10, 05, DayOfWeek.Sunday); - TimeZoneInfo tz = TimeZoneInfo.Local; - Console.WriteLine(tt1.Equals(tz)); // Returns False (overload with argument of type Object) - Console.WriteLine(tt1.Equals(tt1)); // Returns True (an object always equals itself) - Console.WriteLine(tt1.Equals(tt2)); // Returns True (identical property values) - Console.WriteLine(tt1.Equals(tt3)); // Returns False (different property values) - // - } + Console.WriteLine("***CompareForEquality()"); + tte.CompareForEquality(); + Console.WriteLine(); + Console.WriteLine("***CompareTransitionTimesForEquality()"); + tte.CompareTransitionTimesForEquality(); + Console.WriteLine(); + Console.WriteLine("***CreateTransitionRules()"); + tte.CreateTransitionRules(); + Console.WriteLine(); + Console.WriteLine("***GetFixedTransitionTimes()"); + tte.GetFixedTransitionTimes(); + Console.WriteLine(); + Console.WriteLine("***GetFloatingTransitionTimes()"); + tte.GetFloatingTransitionTimes(); + Console.WriteLine(); + Console.WriteLine("***GetTransitionTimes(2006)"); + tte.GetTransitionTimes(2006); + AdditionalExamples ae = new(); + Console.WriteLine(); + Console.WriteLine("***GetAllTransitionTimes()"); + ae.GetAllTransitionTimes(); + } - private void CompareTransitionTimesForEquality() - { - // - TimeZoneInfo.TransitionTime tt1 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); - TimeZoneInfo.TransitionTime tt2 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); - TimeZoneInfo.TransitionTime tt3 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 02, 00, 00), 10, 05, DayOfWeek.Sunday); - Console.WriteLine(tt1.Equals(tt1)); // Returns True (an object always equals itself) - Console.WriteLine(tt1.Equals(tt2)); // Returns True (identical property values) - Console.WriteLine(tt1.Equals(tt3)); // Returns False (different property values) - // - } + private void CompareForEquality() + { + // + TimeZoneInfo.TransitionTime tt1 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); + TimeZoneInfo.TransitionTime tt2 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); + TimeZoneInfo.TransitionTime tt3 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 02, 00, 00), 10, 05, DayOfWeek.Sunday); + TimeZoneInfo tz = TimeZoneInfo.Local; + Console.WriteLine(tt1.Equals(tz)); // Returns False (overload with argument of type Object) + Console.WriteLine(tt1.Equals(tt1)); // Returns True (an object always equals itself) + Console.WriteLine(tt1.Equals(tt2)); // Returns True (identical property values) + Console.WriteLine(tt1.Equals(tt3)); // Returns False (different property values) + // + } - private void CreateTransitionRules() - { - // - // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone - TimeZoneInfo imaginaryTZ; - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment; - List adjustmentList = new List(); - // Declare transition time variables to hold transition time information - TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; - - // Define a fictitious new time zone consisting of fixed and floating adjustment rules - // Define fixed rule (for 1900-1955) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 15); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 3, 0, 0), 11, 15); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1900, 1, 1), new DateTime(1955, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define floating rule (for 1956- ) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 5, DayOfWeek.Sunday); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 3, 0, 0), 10, 4, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1956, 1, 1), DateTime.MaxValue.Date, delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); + private void CompareTransitionTimesForEquality() + { + // + TimeZoneInfo.TransitionTime tt1 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); + TimeZoneInfo.TransitionTime tt2 = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 02, 00, 00), 11, 03); + TimeZoneInfo.TransitionTime tt3 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 02, 00, 00), 10, 05, DayOfWeek.Sunday); + Console.WriteLine(tt1.Equals(tt1)); // Returns True (an object always equals itself) + Console.WriteLine(tt1.Equals(tt2)); // Returns True (identical property values) + Console.WriteLine(tt1.Equals(tt3)); // Returns False (different property values) + // + } - // Create fictitious time zone - imaginaryTZ = TimeZoneInfo.CreateCustomTimeZone("Fictitious Standard Time", new TimeSpan(-9, 0, 0), - "(GMT-09:00) Fictitious Time", "Fictitious Standard Time", - "Fictitious Daylight Time", adjustmentList.ToArray()); - // - } + private void CreateTransitionRules() + { + // + // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone + TimeZoneInfo imaginaryTZ; + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment; + List adjustmentList = []; + // Declare transition time variables to hold transition time information + TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; - // - private void GetFixedTransitionTimes() - { - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; - foreach (TimeZoneInfo zone in timeZones) - { - TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); - foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) - { - TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; - if (daylightStart.IsFixedDateRule) - Console.WriteLine("For {0}, daylight savings time begins at {1:t} on {2} {3} from {4:d} to {5:d}.", - zone.StandardName, - daylightStart.TimeOfDay, - dateInfo.GetMonthName(daylightStart.Month), - daylightStart.Day, - adjustmentRule.DateStart, - adjustmentRule.DateEnd); - TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; - if (daylightEnd.IsFixedDateRule) - Console.WriteLine("For {0}, daylight savings time ends at {1:t} on {2} {3} from {4:d} to {5:d}.", - zone.StandardName, - daylightEnd.TimeOfDay, - dateInfo.GetMonthName(daylightEnd.Month), - daylightEnd.Day, - adjustmentRule.DateStart, - adjustmentRule.DateEnd); - } - } - } - // - - // - private enum WeekOfMonth - { - First = 1, - Second = 2, - Third = 3, - Fourth = 4, - Last = 5 - } - - private void GetFloatingTransitionTimes() - { - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - foreach (TimeZoneInfo zone in timeZones) - { - TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); - DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; - foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) - { - TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; - if (!daylightStart.IsFixedDateRule) - Console.WriteLine("{0}, {1:d}-{2:d}: Begins at {3:t} on the {4} {5} of {6}.", - zone.StandardName, - adjustmentRule.DateStart, - adjustmentRule.DateEnd, - daylightStart.TimeOfDay, - ((WeekOfMonth)daylightStart.Week).ToString(), - daylightStart.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightStart.Month)); + // Define a fictitious new time zone consisting of fixed and floating adjustment rules + // Define fixed rule (for 1900-1955) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 15); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 3, 0, 0), 11, 15); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1900, 1, 1), new DateTime(1955, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define floating rule (for 1956- ) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 5, DayOfWeek.Sunday); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 3, 0, 0), 10, 4, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1956, 1, 1), DateTime.MaxValue.Date, delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); - TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; - if (!daylightEnd.IsFixedDateRule) - Console.WriteLine("{0}, {1:d}-{2:d}: Ends at {3:t} on the {4} {5} of {6}.", - zone.StandardName, - adjustmentRule.DateStart, - adjustmentRule.DateEnd, - daylightEnd.TimeOfDay, - ((WeekOfMonth)daylightEnd.Week).ToString(), - daylightEnd.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightEnd.Month)); - } - } - } - // + // Create fictitious time zone + imaginaryTZ = TimeZoneInfo.CreateCustomTimeZone("Fictitious Standard Time", new TimeSpan(-9, 0, 0), + "(GMT-09:00) Fictitious Time", "Fictitious Standard Time", + "Fictitious Daylight Time", adjustmentList.ToArray()); + // + } - private void GetTransitionTimes(int year) - { - // Instantiate DateTimeFormatInfo object for month names - DateTimeFormatInfo dateFormat = CultureInfo.CurrentCulture.DateTimeFormat; + // + private void GetFixedTransitionTimes() + { + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; + foreach (TimeZoneInfo zone in timeZones) + { + TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); + foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) + { + TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; + if (daylightStart.IsFixedDateRule) + Console.WriteLine($"For {zone.StandardName}, daylight savings time begins at {daylightStart.TimeOfDay:t} on {dateInfo.GetMonthName(daylightStart.Month)} {daylightStart.Day} from {adjustmentRule.DateStart:d} to {adjustmentRule.DateEnd:d}."); + TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; + if (daylightEnd.IsFixedDateRule) + Console.WriteLine($"For {zone.StandardName}, daylight savings time ends at {daylightEnd.TimeOfDay:t} on {dateInfo.GetMonthName(daylightEnd.Month)} {daylightEnd.Day} from {adjustmentRule.DateStart:d} to {adjustmentRule.DateEnd:d}."); + } + } + } + // - // Get and iterate time zones on local computer - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - foreach (TimeZoneInfo timeZone in timeZones) - { - Console.WriteLine("{0}:", timeZone.StandardName); - TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); - if (adjustments.Length == 0) - { - Console.WriteLine(" No adjustment rules."); - } - else - { - // Iterate adjustment rules for time zone - foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) + // + private enum WeekOfMonth + { + First = 1, + Second = 2, + Third = 3, + Fourth = 4, + Last = 5 + } + + private void GetFloatingTransitionTimes() + { + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + foreach (TimeZoneInfo zone in timeZones) + { + TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); + DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; + foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) { - // Determine if this adjustment rule covers year desired - if (adjustment.DateStart.Year <= year && adjustment.DateEnd.Year >= year) - { - TimeZoneInfo.TransitionTime startTransition, endTransition; - // Determine if starting transition is fixed - startTransition = adjustment.DaylightTransitionStart; - // Determine if starting transition is fixed and display transition info for year - if (startTransition.IsFixedDateRule) - Console.WriteLine(" Begins on {0} {1} at {2:t}", - dateFormat.GetMonthName(startTransition.Month), - startTransition.Day, - startTransition.TimeOfDay); - else - DisplayTransitionInfo(startTransition, year, "Begins on"); + TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; + if (!daylightStart.IsFixedDateRule) + Console.WriteLine($"{zone.StandardName}, {adjustmentRule.DateStart:d}-{adjustmentRule.DateEnd:d}: Begins at {daylightStart.TimeOfDay:t} on the {((WeekOfMonth)daylightStart.Week)} {daylightStart.DayOfWeek} of {dateInfo.GetMonthName(daylightStart.Month)}."); - // Determine if ending transition is fixed and display transition info for year - endTransition = adjustment.DaylightTransitionEnd; - if (endTransition.IsFixedDateRule) - Console.WriteLine(" Ends on {0} {1} at {2:t}", - dateFormat.GetMonthName(endTransition.Month), - endTransition.Day, - endTransition.TimeOfDay); - else - DisplayTransitionInfo(endTransition, year, "Ends on"); - - break; - } + TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; + if (!daylightEnd.IsFixedDateRule) + Console.WriteLine($"{zone.StandardName}, {adjustmentRule.DateStart:d}-{adjustmentRule.DateEnd:d}: Ends at {daylightEnd.TimeOfDay:t} on the {((WeekOfMonth)daylightEnd.Week)} {daylightEnd.DayOfWeek} of {dateInfo.GetMonthName(daylightEnd.Month)}."); } - } - } - } - - private void DisplayTransitionInfo(TimeZoneInfo.TransitionTime transition, int year, string label) - { - // For non-fixed date rules, get local calendar - Calendar cal = CultureInfo.CurrentCulture.Calendar; - // Get first day of week for transition - // For example, the 3rd week starts no earlier than the 15th of the month - int startOfWeek = transition.Week * 7 - 6; - // What day of the week does the month start on? - int firstDayOfWeek = (int) cal.GetDayOfWeek(new DateTime(year, transition.Month, startOfWeek)); - // Determine how much start date has to be adjusted - int transitionDay; - int changeDayOfWeek = (int) transition.DayOfWeek; + } + } + // - if (firstDayOfWeek <= changeDayOfWeek) - transitionDay = startOfWeek + (changeDayOfWeek - firstDayOfWeek); - else - transitionDay = startOfWeek + (7 - firstDayOfWeek + changeDayOfWeek); + private void GetTransitionTimes(int year) + { + // Instantiate DateTimeFormatInfo object for month names + DateTimeFormatInfo dateFormat = CultureInfo.CurrentCulture.DateTimeFormat; - // Adjust for months with no fifth week - if (transitionDay > cal.GetDaysInMonth(year, transition.Month)) - transitionDay -= 7; + // Get and iterate time zones on local computer + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + foreach (TimeZoneInfo timeZone in timeZones) + { + Console.WriteLine($"{timeZone.StandardName}:"); + TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); + if (adjustments.Length == 0) + { + Console.WriteLine(" No adjustment rules."); + } + else + { + // Iterate adjustment rules for time zone + foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) + { + // Determine if this adjustment rule covers year desired + if (adjustment.DateStart.Year <= year && adjustment.DateEnd.Year >= year) + { + TimeZoneInfo.TransitionTime startTransition, endTransition; + // Determine if starting transition is fixed + startTransition = adjustment.DaylightTransitionStart; + // Determine if starting transition is fixed and display transition info for year + if (startTransition.IsFixedDateRule) + Console.WriteLine($" Begins on {dateFormat.GetMonthName(startTransition.Month)} {startTransition.Day} at {startTransition.TimeOfDay:t}"); + else + DisplayTransitionInfo(startTransition, year, "Begins on"); + + // Determine if ending transition is fixed and display transition info for year + endTransition = adjustment.DaylightTransitionEnd; + if (endTransition.IsFixedDateRule) + Console.WriteLine($" Ends on {dateFormat.GetMonthName(endTransition.Month)} {endTransition.Day} at {endTransition.TimeOfDay:t}"); + else + DisplayTransitionInfo(endTransition, year, "Ends on"); + + break; + } + } + } + } + } - Console.WriteLine(" {0} {1}, {2:d} at {3:t}", - label, - transition.DayOfWeek, - new DateTime(year, transition.Month, transitionDay), - transition.TimeOfDay); - } + private void DisplayTransitionInfo(TimeZoneInfo.TransitionTime transition, int year, string label) + { + // For non-fixed date rules, get local calendar + Calendar cal = CultureInfo.CurrentCulture.Calendar; + // Get first day of week for transition + // For example, the 3rd week starts no earlier than the 15th of the month + int startOfWeek = transition.Week * 7 - 6; + // What day of the week does the month start on? + int firstDayOfWeek = (int)cal.GetDayOfWeek(new DateTime(year, transition.Month, startOfWeek)); + // Determine how much start date has to be adjusted + int transitionDay; + int changeDayOfWeek = (int)transition.DayOfWeek; + + if (firstDayOfWeek <= changeDayOfWeek) + transitionDay = startOfWeek + (changeDayOfWeek - firstDayOfWeek); + else + transitionDay = startOfWeek + (7 - firstDayOfWeek + changeDayOfWeek); + + // Adjust for months with no fifth week + if (transitionDay > cal.GetDaysInMonth(year, transition.Month)) + transitionDay -= 7; + + Console.WriteLine($" {label} {transition.DayOfWeek}, {new DateTime(year, transition.Month, transitionDay):d} at {transition.TimeOfDay:t}"); + } } public class AdditionalExamples { - // - private enum WeekOfMonth - { - First = 1, - Second = 2, - Third = 3, - Fourth = 4, - Last = 5, - } + // + private enum WeekOfMonth + { + First = 1, + Second = 2, + Third = 3, + Fourth = 4, + Last = 5, + } - public void GetAllTransitionTimes() - { - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; - - foreach (TimeZoneInfo zone in timeZones) - { - Console.WriteLine("{0} transition time information:", zone.StandardName); - TimeZoneInfo.AdjustmentRule[] adjustmentRules= zone.GetAdjustmentRules(); - - // Indicate that time zone has no adjustment rules - if (adjustmentRules.Length == 0) - { - Console.WriteLine(" No adjustment rules defined."); - } - else - { - // Iterate adjustment rules - foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) + public void GetAllTransitionTimes() + { + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + DateTimeFormatInfo dateInfo = CultureInfo.CurrentCulture.DateTimeFormat; + + foreach (TimeZoneInfo zone in timeZones) + { + Console.WriteLine($"{zone.StandardName} transition time information:"); + TimeZoneInfo.AdjustmentRule[] adjustmentRules = zone.GetAdjustmentRules(); + + // Indicate that time zone has no adjustment rules + if (adjustmentRules.Length == 0) + { + Console.WriteLine(" No adjustment rules defined."); + } + else { - Console.WriteLine(" Adjustment rule from {0:d} to {1:d}:", - adjustmentRule.DateStart, - adjustmentRule.DateEnd); - - // Get start of transition - TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; - // Display information on fixed date rule - if (!daylightStart.IsFixedDateRule) - Console.WriteLine(" Begins at {0:t} on the {1} {2} of {3}.", - daylightStart.TimeOfDay, - ((WeekOfMonth)daylightStart.Week).ToString(), - daylightStart.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightStart.Month)); - // Display information on floating date rule - else - Console.WriteLine(" Begins at {0:t} on the {1} {2} of {3}.", - daylightStart.TimeOfDay, - ((WeekOfMonth)daylightStart.Week).ToString(), - daylightStart.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightStart.Month)); - - // Get end of transition - TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; - // Display information on fixed date rule - if (!daylightEnd.IsFixedDateRule) - Console.WriteLine(" Ends at {0:t} on the {1} {2} of {3}.", - daylightEnd.TimeOfDay, - ((WeekOfMonth)daylightEnd.Week).ToString(), - daylightEnd.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightEnd.Month)); - // Display information on floating date rule - else - Console.WriteLine(" Ends at {0:t} on the {1} {2} of {3}.", - daylightStart.TimeOfDay, - ((WeekOfMonth)daylightStart.Week).ToString(), - daylightStart.DayOfWeek.ToString(), - dateInfo.GetMonthName(daylightStart.Month)); + // Iterate adjustment rules + foreach (TimeZoneInfo.AdjustmentRule adjustmentRule in adjustmentRules) + { + Console.WriteLine($" Adjustment rule from {adjustmentRule.DateStart:d} to {adjustmentRule.DateEnd:d}:"); + + // Get start of transition + TimeZoneInfo.TransitionTime daylightStart = adjustmentRule.DaylightTransitionStart; + // Display information on fixed date rule + if (!daylightStart.IsFixedDateRule) + Console.WriteLine($" Begins at {daylightStart.TimeOfDay:t} on the {((WeekOfMonth)daylightStart.Week)} {daylightStart.DayOfWeek} of {dateInfo.GetMonthName(daylightStart.Month)}."); + // Display information on floating date rule + else + Console.WriteLine($" Begins at {daylightStart.TimeOfDay:t} on the {((WeekOfMonth)daylightStart.Week)} {daylightStart.DayOfWeek} of {dateInfo.GetMonthName(daylightStart.Month)}."); + + // Get end of transition + TimeZoneInfo.TransitionTime daylightEnd = adjustmentRule.DaylightTransitionEnd; + // Display information on fixed date rule + if (!daylightEnd.IsFixedDateRule) + Console.WriteLine($" Ends at {daylightEnd.TimeOfDay:t} on the {((WeekOfMonth)daylightEnd.Week)} {daylightEnd.DayOfWeek} of {dateInfo.GetMonthName(daylightEnd.Month)}."); + // Display information on floating date rule + else + Console.WriteLine($" Ends at {daylightStart.TimeOfDay:t} on the {((WeekOfMonth)daylightStart.Week)} {daylightStart.DayOfWeek} of {dateInfo.GetMonthName(daylightStart.Month)}."); + } } - } - } - } - // + } + } + // } diff --git a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/example1.cs b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/example1.cs index c9e6c34b54a..0f59475c641 100644 --- a/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/example1.cs +++ b/snippets/csharp/System/TimeZoneInfo+TransitionTime/CreateFixedDateRule/example1.cs @@ -1,120 +1,108 @@ using System; -using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; -[assembly:CLSCompliant(true)] -public class TransitionTimeExamples +public class TransitionTimeExamplesYear { - public static void Main() - { - TransitionTimeExamples tte = new TransitionTimeExamples(); - tte.GetTransitionTimes(2007); - } + public static void Run() + { + TransitionTimeExamplesYear tte = new(); + tte.GetTransitionTimes(2007); + } - // - private void GetTransitionTimes(int year) - { - // Instantiate DateTimeFormatInfo object for month names - DateTimeFormatInfo dateFormat = CultureInfo.CurrentCulture.DateTimeFormat; + // + private void GetTransitionTimes(int year) + { + // Instantiate DateTimeFormatInfo object for month names + DateTimeFormatInfo dateFormat = CultureInfo.CurrentCulture.DateTimeFormat; - // Get and iterate time zones on local computer - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - foreach (TimeZoneInfo timeZone in timeZones) - { - Console.WriteLine("{0}:", timeZone.StandardName); - TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); - int startYear = year; - int endYear = startYear; + // Get and iterate time zones on local computer + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + foreach (TimeZoneInfo timeZone in timeZones) + { + Console.WriteLine($"{timeZone.StandardName}:"); + TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); + int startYear = year; + int endYear = startYear; - if (adjustments.Length == 0) - { - Console.WriteLine(" No adjustment rules."); - } - else - { - TimeZoneInfo.AdjustmentRule adjustment = GetAdjustment(adjustments, year); - if (adjustment == null) + if (adjustments.Length == 0) { - Console.WriteLine(" No adjustment rules available for this year."); - continue; + Console.WriteLine(" No adjustment rules."); } - TimeZoneInfo.TransitionTime startTransition, endTransition; - - // Determine if starting transition is fixed - startTransition = adjustment.DaylightTransitionStart; - // Determine if starting transition is fixed and display transition info for year - if (startTransition.IsFixedDateRule) - Console.WriteLine(" Begins on {0} {1} at {2:t}", - dateFormat.GetMonthName(startTransition.Month), - startTransition.Day, - startTransition.TimeOfDay); else - DisplayTransitionInfo(startTransition, startYear, "Begins on"); - - // Determine if ending transition is fixed and display transition info for year - endTransition = adjustment.DaylightTransitionEnd; - - // Does the transition back occur in an earlier month (i.e., - // the following year) than the transition to DST? If so, make - // sure we have the right adjustment rule. - if (endTransition.Month < startTransition.Month) { - endTransition = GetAdjustment(adjustments, year + 1).DaylightTransitionEnd; - endYear++; + TimeZoneInfo.AdjustmentRule adjustment = GetAdjustment(adjustments, year); + if (adjustment == null) + { + Console.WriteLine(" No adjustment rules available for this year."); + continue; + } + TimeZoneInfo.TransitionTime startTransition, endTransition; + + // Determine if starting transition is fixed + startTransition = adjustment.DaylightTransitionStart; + // Determine if starting transition is fixed and display transition info for year + if (startTransition.IsFixedDateRule) + Console.WriteLine($" Begins on {dateFormat.GetMonthName(startTransition.Month)} {startTransition.Day} at {startTransition.TimeOfDay:t}"); + else + DisplayTransitionInfo(startTransition, startYear, "Begins on"); + + // Determine if ending transition is fixed and display transition info for year + endTransition = adjustment.DaylightTransitionEnd; + + // Does the transition back occur in an earlier month (i.e., + // the following year) than the transition to DST? If so, make + // sure we have the right adjustment rule. + if (endTransition.Month < startTransition.Month) + { + endTransition = GetAdjustment(adjustments, year + 1).DaylightTransitionEnd; + endYear++; + } + + if (endTransition.IsFixedDateRule) + Console.WriteLine($" Ends on {dateFormat.GetMonthName(endTransition.Month)} {endTransition.Day} at {endTransition.TimeOfDay:t}"); + else + DisplayTransitionInfo(endTransition, endYear, "Ends on"); } - - if (endTransition.IsFixedDateRule) - Console.WriteLine(" Ends on {0} {1} at {2:t}", - dateFormat.GetMonthName(endTransition.Month), - endTransition.Day, - endTransition.TimeOfDay); - else - DisplayTransitionInfo(endTransition, endYear, "Ends on"); - } - } - } + } + } + + private static TimeZoneInfo.AdjustmentRule GetAdjustment(TimeZoneInfo.AdjustmentRule[] adjustments, + int year) + { + // Iterate adjustment rules for time zone + foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) + { + // Determine if this adjustment rule covers year desired + if (adjustment.DateStart.Year <= year && adjustment.DateEnd.Year >= year) + return adjustment; + } + return null; + } - private static TimeZoneInfo.AdjustmentRule GetAdjustment(TimeZoneInfo.AdjustmentRule[] adjustments, - int year) - { - // Iterate adjustment rules for time zone - foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) - { - // Determine if this adjustment rule covers year desired - if (adjustment.DateStart.Year <= year && adjustment.DateEnd.Year >= year) - return adjustment; - } - return null; - } - - private void DisplayTransitionInfo(TimeZoneInfo.TransitionTime transition, int year, string label) - { - // For non-fixed date rules, get local calendar - Calendar cal = CultureInfo.CurrentCulture.Calendar; - // Get first day of week for transition - // For example, the 3rd week starts no earlier than the 15th of the month - int startOfWeek = transition.Week * 7 - 6; - // What day of the week does the month start on? - int firstDayOfWeek = (int) cal.GetDayOfWeek(new DateTime(year, transition.Month, 1)); - // Determine how much start date has to be adjusted - int transitionDay; - int changeDayOfWeek = (int) transition.DayOfWeek; + private void DisplayTransitionInfo(TimeZoneInfo.TransitionTime transition, int year, string label) + { + // For non-fixed date rules, get local calendar + Calendar cal = CultureInfo.CurrentCulture.Calendar; + // Get first day of week for transition + // For example, the 3rd week starts no earlier than the 15th of the month + int startOfWeek = transition.Week * 7 - 6; + // What day of the week does the month start on? + int firstDayOfWeek = (int)cal.GetDayOfWeek(new DateTime(year, transition.Month, 1)); + // Determine how much start date has to be adjusted + int transitionDay; + int changeDayOfWeek = (int)transition.DayOfWeek; - if (firstDayOfWeek <= changeDayOfWeek) - transitionDay = startOfWeek + (changeDayOfWeek - firstDayOfWeek); - else - transitionDay = startOfWeek + (7 - firstDayOfWeek + changeDayOfWeek); + if (firstDayOfWeek <= changeDayOfWeek) + transitionDay = startOfWeek + (changeDayOfWeek - firstDayOfWeek); + else + transitionDay = startOfWeek + (7 - firstDayOfWeek + changeDayOfWeek); - // Adjust for months with no fifth week - if (transitionDay > cal.GetDaysInMonth(year, transition.Month)) - transitionDay -= 7; + // Adjust for months with no fifth week + if (transitionDay > cal.GetDaysInMonth(year, transition.Month)) + transitionDay -= 7; - Console.WriteLine(" {0} {1}, {2:d} at {3:t}", - label, - transition.DayOfWeek, - new DateTime(year, transition.Month, transitionDay), - transition.TimeOfDay); - } - // + Console.WriteLine($" {label} {transition.DayOfWeek}, {new DateTime(year, transition.Month, transitionDay):d} at {transition.TimeOfDay:t}"); + } + // } diff --git a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Program.cs b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Program.cs new file mode 100644 index 00000000000..ea77484b8d8 --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Program.cs @@ -0,0 +1,3 @@ +GetSystemTimeZonesExample.Run(); +ShowTimeZoneNamesExample.Run(); +TimeZoneExamples.TZClass.Run(); diff --git a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Project.csproj b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Project.csproj new file mode 100644 index 00000000000..c27165eee76 --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/Project.csproj @@ -0,0 +1,8 @@ + + + Exe + net10.0-windows + true + true + + diff --git a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/ShowTimeZoneNames1.cs b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/ShowTimeZoneNames1.cs index 65c5d51c2ac..1f08961d414 100644 --- a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/ShowTimeZoneNames1.cs +++ b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/ShowTimeZoneNames1.cs @@ -1,16 +1,16 @@ // using System; -public class Example +public class ShowTimeZoneNamesExample { - public static void Main() - { - TimeZoneInfo localZone = TimeZoneInfo.Local; - Console.WriteLine("Local Time Zone ID: {0}", localZone.Id); - Console.WriteLine(" Display Name is: {0}.", localZone.DisplayName); - Console.WriteLine(" Standard name is: {0}.", localZone.StandardName); - Console.WriteLine(" Daylight saving name is: {0}.", localZone.DaylightName); - } + public static void Run() + { + TimeZoneInfo localZone = TimeZoneInfo.Local; + Console.WriteLine($"Local Time Zone ID: {localZone.Id}"); + Console.WriteLine($" Display Name is: {localZone.DisplayName}."); + Console.WriteLine($" Standard name is: {localZone.StandardName}."); + Console.WriteLine($" Daylight saving name is: {localZone.DaylightName}."); + } } // The example displays output like the following: // Local Time Zone ID: Pacific Standard Time diff --git a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/TimeZone2_Examples.cs b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/TimeZone2_Examples.cs index e5fbfa74fd7..109d32ad764 100644 --- a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/TimeZone2_Examples.cs +++ b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/TimeZone2_Examples.cs @@ -1,147 +1,141 @@ using System; using System.Collections.ObjectModel; -using System.Globalization; -using System.IO; using System.Windows.Forms; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] namespace TimeZoneExamples { - public class TZClass - { - public static void Main() - { - TZClass tz = new TZClass(); - if(MessageBox.Show("Display time zone offset?", "Offset", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowTimezoneOffset(); - - if(MessageBox.Show("Display time zone names?", "Names", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowTimeZoneNames(); - - if(MessageBox.Show("Display universal time zone names?", "Universal Time Zone Names", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowUniversalTimeZoneNames(); - - if(MessageBox.Show("Show time zones without daylight savings time", "Zones Supporting DST", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowNoDSTZones(); - - if(MessageBox.Show("List all time zone IDs?", "IDs", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowTimeZoneIDs(); - - if(MessageBox.Show("Test Time Zones for Equality?", "TimeZoneInfo.Equals", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.TestForEquality(); - - if(MessageBox.Show("Show ambiguous times in Pacific Time Zone for 2007?", "TimeZoneInfo.IsAmbiguousTime", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowAmbiguousTimes(); - - if(MessageBox.Show("Show invalid times in Pacific Time Zone for 2007?", "TimeZoneInfo.IsInvalidTime", MessageBoxButtons.YesNo) == DialogResult.Yes) - tz.ShowInvalidTimes(); - } - - private void ShowTimezoneOffset() - { - // - TimeZoneInfo localZone = TimeZoneInfo.Local; - Console.WriteLine("The {0} time zone is {1}:{2} {3} than Coordinated Universal Time.", - localZone.DisplayName, - Math.Abs(localZone.BaseUtcOffset.Hours), - Math.Abs(localZone.BaseUtcOffset.Minutes), - (localZone.BaseUtcOffset >= TimeSpan.Zero) ? "later" : "earlier"); - // - } - - private void ShowTimeZoneNames() - { - TimeZoneInfo localZone = TimeZoneInfo.Local; - Console.WriteLine("Local Time Zone ID: {0}", localZone.Id); - Console.WriteLine(" Display Name is: {0}.", localZone.DisplayName); - Console.WriteLine(" Standard name is: {0}.", localZone.StandardName); - Console.WriteLine(" Daylight saving name is: {0}.", localZone.DaylightName); - } - - private void ShowUniversalTimeZoneNames() - { - // - TimeZoneInfo universalZone = TimeZoneInfo.Utc; - Console.WriteLine("The universal time zone is {0}.", universalZone.DisplayName); - Console.WriteLine("Its standard name is {0}.", universalZone.StandardName); - Console.WriteLine("Its daylight savings name is {0}.", universalZone.DaylightName); - // - } - - private void ShowNoDSTZones() - { - // - ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones(); - foreach(TimeZoneInfo zone in zones) - { - if (!zone.SupportsDaylightSavingTime) - Console.WriteLine(zone.DisplayName); - } - // - } - - private void ShowTimeZoneIDs() - { - // - ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones(); - Console.WriteLine("The local system has the following {0} time zones", zones.Count); - foreach (TimeZoneInfo zone in zones) - Console.WriteLine(zone.Id); - // - } - - private void TestForEquality() - { - // - TimeZoneInfo thisTimeZone, zone1, zone2; - - thisTimeZone = TimeZoneInfo.Local; - zone1 = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); - zone2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); - Console.WriteLine(thisTimeZone.Equals(zone1)); - Console.WriteLine(thisTimeZone.Equals(zone2)); - // - } - - private void ShowAmbiguousTimes() - { - // - // Specify DateTimeKind in Date constructor - DateTime baseTime = new DateTime(2007, 11, 4, 0, 59, 00, DateTimeKind.Unspecified); - DateTime newTime; - - // Get Pacific Standard Time zone - TimeZoneInfo pstZone = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); - - // List possible ambiguous times for 63-minute interval, from 12:59 AM to 2:01 AM - for (int ctr = 0; ctr < 63; ctr++) - { - // Because of assignment, newTime.Kind is also DateTimeKind.Unspecified - newTime = baseTime.AddMinutes(ctr); - Console.WriteLine("{0} is ambiguous: {1}", newTime, pstZone.IsAmbiguousTime(newTime)); - } - // - } - - private void ShowInvalidTimes() - { - // - // Specify DateTimeKind in Date constructor - DateTime baseTime = new DateTime(2007, 3, 11, 1, 59, 0, DateTimeKind.Unspecified); - DateTime newTime; - - // Get Pacific Standard Time zone - TimeZoneInfo pstZone = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); - - // List possible invalid times for a 63-minute interval, from 1:59 AM to 3:01 AM - for (int ctr = 0; ctr < 63; ctr++) - { - // Because of assignment, newTime.Kind is also DateTimeKind.Unspecified - newTime = baseTime.AddMinutes(ctr); - Console.WriteLine("{0} is invalid: {1}", newTime, pstZone.IsInvalidTime(newTime)); - } - // - } - } + public class TZClass + { + public static void Run() + { + TZClass tz = new(); + if (MessageBox.Show("Display time zone offset?", "Offset", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowTimezoneOffset(); + + if (MessageBox.Show("Display time zone names?", "Names", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowTimeZoneNames(); + + if (MessageBox.Show("Display universal time zone names?", "Universal Time Zone Names", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowUniversalTimeZoneNames(); + + if (MessageBox.Show("Show time zones without daylight savings time", "Zones Supporting DST", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowNoDSTZones(); + + if (MessageBox.Show("List all time zone IDs?", "IDs", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowTimeZoneIDs(); + + if (MessageBox.Show("Test Time Zones for Equality?", "TimeZoneInfo.Equals", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.TestForEquality(); + + if (MessageBox.Show("Show ambiguous times in Pacific Time Zone for 2007?", "TimeZoneInfo.IsAmbiguousTime", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowAmbiguousTimes(); + + if (MessageBox.Show("Show invalid times in Pacific Time Zone for 2007?", "TimeZoneInfo.IsInvalidTime", MessageBoxButtons.YesNo) == DialogResult.Yes) + tz.ShowInvalidTimes(); + } + + private void ShowTimezoneOffset() + { + // + TimeZoneInfo localZone = TimeZoneInfo.Local; + Console.WriteLine($"The {localZone.DisplayName} time zone is {Math.Abs(localZone.BaseUtcOffset.Hours)}:{Math.Abs(localZone.BaseUtcOffset.Minutes)} {((localZone.BaseUtcOffset >= TimeSpan.Zero) ? "later" : "earlier")} than Coordinated Universal Time."); + // + } + + private void ShowTimeZoneNames() + { + TimeZoneInfo localZone = TimeZoneInfo.Local; + Console.WriteLine($"Local Time Zone ID: {localZone.Id}"); + Console.WriteLine($" Display Name is: {localZone.DisplayName}."); + Console.WriteLine($" Standard name is: {localZone.StandardName}."); + Console.WriteLine($" Daylight saving name is: {localZone.DaylightName}."); + } + + private void ShowUniversalTimeZoneNames() + { + // + TimeZoneInfo universalZone = TimeZoneInfo.Utc; + Console.WriteLine($"The universal time zone is {universalZone.DisplayName}."); + Console.WriteLine($"Its standard name is {universalZone.StandardName}."); + Console.WriteLine($"Its daylight savings name is {universalZone.DaylightName}."); + // + } + + private void ShowNoDSTZones() + { + // + ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones(); + foreach (TimeZoneInfo zone in zones) + { + if (!zone.SupportsDaylightSavingTime) + Console.WriteLine(zone.DisplayName); + } + // + } + + private void ShowTimeZoneIDs() + { + // + ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones(); + Console.WriteLine($"The local system has the following {zones.Count} time zones"); + foreach (TimeZoneInfo zone in zones) + Console.WriteLine(zone.Id); + // + } + + private void TestForEquality() + { + // + TimeZoneInfo thisTimeZone, zone1, zone2; + + thisTimeZone = TimeZoneInfo.Local; + zone1 = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); + zone2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + Console.WriteLine(thisTimeZone.Equals(zone1)); + Console.WriteLine(thisTimeZone.Equals(zone2)); + // + } + + private void ShowAmbiguousTimes() + { + // + // Specify DateTimeKind in Date constructor + DateTime baseTime = new(2007, 11, 4, 0, 59, 00, DateTimeKind.Unspecified); + DateTime newTime; + + // Get Pacific Standard Time zone + TimeZoneInfo pstZone = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); + + // List possible ambiguous times for 63-minute interval, from 12:59 AM to 2:01 AM + for (int ctr = 0; ctr < 63; ctr++) + { + // Because of assignment, newTime.Kind is also DateTimeKind.Unspecified + newTime = baseTime.AddMinutes(ctr); + Console.WriteLine($"{newTime} is ambiguous: {pstZone.IsAmbiguousTime(newTime)}"); + } + // + } + + private void ShowInvalidTimes() + { + // + // Specify DateTimeKind in Date constructor + DateTime baseTime = new(2007, 3, 11, 1, 59, 0, DateTimeKind.Unspecified); + DateTime newTime; + + // Get Pacific Standard Time zone + TimeZoneInfo pstZone = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); + + // List possible invalid times for a 63-minute interval, from 1:59 AM to 3:01 AM + for (int ctr = 0; ctr < 63; ctr++) + { + // Because of assignment, newTime.Kind is also DateTimeKind.Unspecified + newTime = baseTime.AddMinutes(ctr); + Console.WriteLine($"{newTime} is invalid: {pstZone.IsInvalidTime(newTime)}"); + } + // + } + } } diff --git a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/getsystemtimezones1.cs b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/getsystemtimezones1.cs index 5c28ea5f202..4f85f055478 100644 --- a/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/getsystemtimezones1.cs +++ b/snippets/csharp/System/TimeZoneInfo/BaseUtcOffset/getsystemtimezones1.cs @@ -4,67 +4,57 @@ using System.IO; using System.Collections.ObjectModel; -public class Example +public class GetSystemTimeZonesExample { - public static void Main() - { - const string OUTPUTFILENAME = @"C:\Temp\TimeZoneInfo.txt"; - - DateTimeFormatInfo dateFormats = CultureInfo.CurrentCulture.DateTimeFormat; - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - StreamWriter sw = new StreamWriter(OUTPUTFILENAME, false); - - foreach (TimeZoneInfo timeZone in timeZones) - { - bool hasDST = timeZone.SupportsDaylightSavingTime; - TimeSpan offsetFromUtc = timeZone.BaseUtcOffset; - TimeZoneInfo.AdjustmentRule[] adjustRules; - string offsetString; - - sw.WriteLine("ID: {0}", timeZone.Id); - sw.WriteLine(" Display Name: {0, 40}", timeZone.DisplayName); - sw.WriteLine(" Standard Name: {0, 39}", timeZone.StandardName); - sw.Write(" Daylight Name: {0, 39}", timeZone.DaylightName); - sw.Write(hasDST ? " ***Has " : " ***Does Not Have "); - sw.WriteLine("Daylight Saving Time***"); - offsetString = String.Format("{0} hours, {1} minutes", offsetFromUtc.Hours, offsetFromUtc.Minutes); - sw.WriteLine(" Offset from UTC: {0, 40}", offsetString); - adjustRules = timeZone.GetAdjustmentRules(); - sw.WriteLine(" Number of adjustment rules: {0, 26}", adjustRules.Length); - if (adjustRules.Length > 0) - { - sw.WriteLine(" Adjustment Rules:"); - foreach (TimeZoneInfo.AdjustmentRule rule in adjustRules) + public static void Run() + { + const string OUTPUTFILENAME = @"C:\Temp\TimeZoneInfo.txt"; + + DateTimeFormatInfo dateFormats = CultureInfo.CurrentCulture.DateTimeFormat; + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + StreamWriter sw = new(OUTPUTFILENAME, false); + + foreach (TimeZoneInfo timeZone in timeZones) + { + bool hasDST = timeZone.SupportsDaylightSavingTime; + TimeSpan offsetFromUtc = timeZone.BaseUtcOffset; + TimeZoneInfo.AdjustmentRule[] adjustRules; + string offsetString; + + sw.WriteLine($"ID: {timeZone.Id}"); + sw.WriteLine($" Display Name: {timeZone.DisplayName,40}"); + sw.WriteLine($" Standard Name: {timeZone.StandardName,39}"); + sw.Write($" Daylight Name: {timeZone.DaylightName,39}"); + sw.Write(hasDST ? " ***Has " : " ***Does Not Have "); + sw.WriteLine("Daylight Saving Time***"); + offsetString = $"{offsetFromUtc.Hours} hours, {offsetFromUtc.Minutes} minutes"; + sw.WriteLine($" Offset from UTC: {offsetString,40}"); + adjustRules = timeZone.GetAdjustmentRules(); + sw.WriteLine($" Number of adjustment rules: {adjustRules.Length,26}"); + if (adjustRules.Length > 0) { - TimeZoneInfo.TransitionTime transTimeStart = rule.DaylightTransitionStart; - TimeZoneInfo.TransitionTime transTimeEnd = rule.DaylightTransitionEnd; - - sw.WriteLine(" From {0} to {1}", rule.DateStart, rule.DateEnd); - sw.WriteLine(" Delta: {0}", rule.DaylightDelta); - if (!transTimeStart.IsFixedDateRule) - { - sw.WriteLine(" Begins at {0:t} on {1} of week {2} of {3}", transTimeStart.TimeOfDay, - transTimeStart.DayOfWeek, - transTimeStart.Week, - dateFormats.MonthNames[transTimeStart.Month - 1]); - sw.WriteLine(" Ends at {0:t} on {1} of week {2} of {3}", transTimeEnd.TimeOfDay, - transTimeEnd.DayOfWeek, - transTimeEnd.Week, - dateFormats.MonthNames[transTimeEnd.Month - 1]); - } - else - { - sw.WriteLine(" Begins at {0:t} on {1} {2}", transTimeStart.TimeOfDay, - transTimeStart.Day, - dateFormats.MonthNames[transTimeStart.Month - 1]); - sw.WriteLine(" Ends at {0:t} on {1} {2}", transTimeEnd.TimeOfDay, - transTimeEnd.Day, - dateFormats.MonthNames[transTimeEnd.Month - 1]); - } + sw.WriteLine(" Adjustment Rules:"); + foreach (TimeZoneInfo.AdjustmentRule rule in adjustRules) + { + TimeZoneInfo.TransitionTime transTimeStart = rule.DaylightTransitionStart; + TimeZoneInfo.TransitionTime transTimeEnd = rule.DaylightTransitionEnd; + + sw.WriteLine($" From {rule.DateStart} to {rule.DateEnd}"); + sw.WriteLine($" Delta: {rule.DaylightDelta}"); + if (!transTimeStart.IsFixedDateRule) + { + sw.WriteLine($" Begins at {transTimeStart.TimeOfDay:t} on {transTimeStart.DayOfWeek} of week {transTimeStart.Week} of {dateFormats.MonthNames[transTimeStart.Month - 1]}"); + sw.WriteLine($" Ends at {transTimeEnd.TimeOfDay:t} on {transTimeEnd.DayOfWeek} of week {transTimeEnd.Week} of {dateFormats.MonthNames[transTimeEnd.Month - 1]}"); + } + else + { + sw.WriteLine($" Begins at {transTimeStart.TimeOfDay:t} on {transTimeStart.Day} {dateFormats.MonthNames[transTimeStart.Month - 1]}"); + sw.WriteLine($" Ends at {transTimeEnd.TimeOfDay:t} on {transTimeEnd.Day} {dateFormats.MonthNames[transTimeEnd.Month - 1]}"); + } + } } - } - } - sw.Close(); - } + } + sw.Close(); + } } // diff --git a/snippets/csharp/System/TimeZoneInfo/ClearCachedData/System.TimeZone2.BestPractices.cs b/snippets/csharp/System/TimeZoneInfo/ClearCachedData/System.TimeZone2.BestPractices.cs index 2d477152dd5..16c248c6beb 100644 --- a/snippets/csharp/System/TimeZoneInfo/ClearCachedData/System.TimeZone2.BestPractices.cs +++ b/snippets/csharp/System/TimeZoneInfo/ClearCachedData/System.TimeZone2.BestPractices.cs @@ -2,28 +2,28 @@ public class BestTimeZonePractices { - public static void Main() - { - BestTimeZonePractices best = new BestTimeZonePractices(); - best.NoCachedReferences(); - } + public static void Main() + { + BestTimeZonePractices best = new(); + best.NoCachedReferences(); + } - private void NoCachedReferences() - { - // - TimeZoneInfo cst = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); - TimeZoneInfo local = TimeZoneInfo.Local; - Console.WriteLine(TimeZoneInfo.ConvertTime(DateTime.Now, local, cst)); + private void NoCachedReferences() + { + // + TimeZoneInfo cst = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); + TimeZoneInfo local = TimeZoneInfo.Local; + Console.WriteLine(TimeZoneInfo.ConvertTime(DateTime.Now, local, cst)); - TimeZoneInfo.ClearCachedData(); - try - { - Console.WriteLine(TimeZoneInfo.ConvertTime(DateTime.Now, local, cst)); - } - catch (ArgumentException e) - { - Console.WriteLine(e.GetType().Name + "\n " + e.Message); - } - // - } + TimeZoneInfo.ClearCachedData(); + try + { + Console.WriteLine(TimeZoneInfo.ConvertTime(DateTime.Now, local, cst)); + } + catch (ArgumentException e) + { + Console.WriteLine(e.GetType().Name + "\n " + e.Message); + } + // + } } diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTime/Program.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTime/Program.cs new file mode 100644 index 00000000000..de79dcfbfd2 --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTime/Program.cs @@ -0,0 +1,3 @@ +ConvertTimeExample1.Run(); +ConvertTimeExample2.Run(); +TZExamples.Run(); diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTime/Project.csproj b/snippets/csharp/System/TimeZoneInfo/ConvertTime/Project.csproj new file mode 100644 index 00000000000..c27165eee76 --- /dev/null +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTime/Project.csproj @@ -0,0 +1,8 @@ + + + Exe + net10.0-windows + true + true + + diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTime/TimeZone2Concepts.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTime/TimeZone2Concepts.cs index 664a65d775e..db89a9a9436 100644 --- a/snippets/csharp/System/TimeZoneInfo/ConvertTime/TimeZone2Concepts.cs +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTime/TimeZone2Concepts.cs @@ -1,386 +1,354 @@ // Note that this source code file includes a code module (modMain) and -// a WinForm. +// a WinForm. using System; using System.Collections.ObjectModel; using System.Security; using System.Windows.Forms; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] public class TZExamples { - public static void Main() - { - TZExamples tze = new TZExamples(); -// tze.IterateTimeZones(); -// tze.SelectTimeZone(); + public static void Run() + { + TZExamples tze = new(); + // tze.IterateTimeZones(); + // tze.SelectTimeZone(); tze.ShowDaylightStatus(); Console.WriteLine("\nShowLocalAndUtcTime:"); tze.ShowLocalAndUtcTime(); tze.ConvertToArbitraryTime(); Console.WriteLine("**ConvertTimeToUtc***"); tze.ConvertToUtc(); - Console.WriteLine("ConvertEasternToUtc:"); + Console.WriteLine("ConvertEasternToUtc:"); tze.ConvertEasternToUtc(); Console.WriteLine("\nConvertUtcToCentral:"); tze.ConvertUtcToCentral(); - Console.WriteLine("\nConvertHawaiianToLocal:"); - tze.ConvertHawaiianToLocal(); - Console.WriteLine("Resolving ambiguous times:"); - Console.WriteLine(tze.ResolveAmbiguousTime(new DateTime(2006, 10, 29, 02, 03, 15))); - Console.WriteLine(tze.ResolveAmbiguousTime(DateTime.Now)); - Console.WriteLine(); - tze.GetUserDateInput(); - } + Console.WriteLine("\nConvertHawaiianToLocal:"); + tze.ConvertHawaiianToLocal(); + Console.WriteLine("Resolving ambiguous times:"); + Console.WriteLine(tze.ResolveAmbiguousTime(new DateTime(2006, 10, 29, 02, 03, 15))); + Console.WriteLine(tze.ResolveAmbiguousTime(DateTime.Now)); + Console.WriteLine(); + tze.GetUserDateInput(); + } - private void IterateTimeZones() - { - // - ReadOnlyCollection tzCollection; - tzCollection = TimeZoneInfo.GetSystemTimeZones(); - // - - Console.WriteLine("Listing {0} time zones found on the system:", tzCollection.Count); - // - foreach (TimeZoneInfo timeZone in tzCollection) - Console.WriteLine(" {0}: {1}", timeZone.Id, timeZone.DisplayName); - // - } + private void IterateTimeZones() + { + // + ReadOnlyCollection tzCollection; + tzCollection = TimeZoneInfo.GetSystemTimeZones(); + // - private void SelectTimeZone() - { - TZListForm frm = new TZListForm(); - frm.ShowDialog(); - } + Console.WriteLine($"Listing {tzCollection.Count} time zones found on the system:"); + // + foreach (TimeZoneInfo timeZone in tzCollection) + Console.WriteLine($" {timeZone.Id}: {timeZone.DisplayName}"); + // + } - private void ShowDaylightStatus() - { - // - DateTime dateToday = DateTime.Now; - TimeSpan differenceFromUtc = TimeZoneInfo.Local.GetUtcOffset(dateToday); - Console.WriteLine("The time is {0:t} in {1} time, {2:##.0} hours {3} universal time.", - dateToday, - TimeZoneInfo.Local.IsDaylightSavingTime(dateToday) ? "daylight saving" : "standard", - Math.Abs(differenceFromUtc.TotalHours), - differenceFromUtc.Hours > 0 ? "after" : "earlier than"); - // - } + private void SelectTimeZone() + { + TZListForm frm = new(); + frm.ShowDialog(); + } - private void ShowLocalAndUtcTime() - { - // - DateTime timeNow = DateTime.Now; - Console.WriteLine("It is now {0:t} {1}, or {2:t} {3}.", - timeNow, - TimeZoneInfo.Local.IsDaylightSavingTime(timeNow) ? - TimeZoneInfo.Local.DaylightName : TimeZoneInfo.Local.StandardName, - TimeZoneInfo.ConvertTime(timeNow, TimeZoneInfo.Local, TimeZoneInfo.Utc), - TimeZoneInfo.Utc.StandardName); - // - } + private void ShowDaylightStatus() + { + // + DateTime dateToday = DateTime.Now; + TimeSpan differenceFromUtc = TimeZoneInfo.Local.GetUtcOffset(dateToday); + Console.WriteLine($"The time is {dateToday:t} in {(TimeZoneInfo.Local.IsDaylightSavingTime(dateToday) ? "daylight saving" : "standard")} time, {Math.Abs(differenceFromUtc.TotalHours):##.0} hours {(differenceFromUtc.Hours > 0 ? "after" : "earlier than")} universal time."); + // + } - private void ConvertToArbitraryTime() - { - // - DateTime timeNow = DateTime.Now; - try - { - TimeZoneInfo easternZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); - DateTime easternTimeNow = TimeZoneInfo.ConvertTime(timeNow, TimeZoneInfo.Local, - easternZone); - Console.WriteLine("{0} {1} corresponds to {2} {3}.", - timeNow, - TimeZoneInfo.Local.IsDaylightSavingTime(timeNow) ? - TimeZoneInfo.Local.DaylightName : - TimeZoneInfo.Local.StandardName, - easternTimeNow, - easternZone.IsDaylightSavingTime(easternTimeNow) ? - easternZone.DaylightName : - easternZone.StandardName); - } - // Handle exception - // - // As an alternative to simply displaying an error message, an alternate Eastern - // Standard Time TimeZoneInfo object could be instantiated here either by restoring - // it from a serialized string or by providing the necessary data to the - // CreateCustomTimeZone method. - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The Eastern Standard Time Zone cannot be found on the local system."); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("The Eastern Standard Time Zone contains invalid or missing data."); - } - catch (SecurityException) - { - Console.WriteLine("The application lacks permission to read time zone information from the registry."); - } - catch (OutOfMemoryException) - { - Console.WriteLine("Not enough memory is available to load information on the Eastern Standard Time zone."); - } - // If we weren't passing FindSystemTimeZoneById a literal string, we also - // would handle an ArgumentNullException. - // - } + private void ShowLocalAndUtcTime() + { + // + DateTime timeNow = DateTime.Now; + Console.WriteLine($"It is now {timeNow:t} {(TimeZoneInfo.Local.IsDaylightSavingTime(timeNow) ? + TimeZoneInfo.Local.DaylightName : TimeZoneInfo.Local.StandardName)}, or {TimeZoneInfo.ConvertTime(timeNow, TimeZoneInfo.Local, TimeZoneInfo.Utc):t} {TimeZoneInfo.Utc.StandardName}."); + // + } - private void ConvertToUtc() - { - // - DateTime dateNow = DateTime.Now; - Console.WriteLine("The date and time are {0} UTC.", - TimeZoneInfo.ConvertTimeToUtc(dateNow)); - // - } + private void ConvertToArbitraryTime() + { + // + DateTime timeNow = DateTime.Now; + try + { + TimeZoneInfo easternZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + DateTime easternTimeNow = TimeZoneInfo.ConvertTime(timeNow, TimeZoneInfo.Local, + easternZone); + Console.WriteLine($"{timeNow} {(TimeZoneInfo.Local.IsDaylightSavingTime(timeNow) ? + TimeZoneInfo.Local.DaylightName : + TimeZoneInfo.Local.StandardName)} corresponds to {easternTimeNow} {(easternZone.IsDaylightSavingTime(easternTimeNow) ? + easternZone.DaylightName : + easternZone.StandardName)}."); + } + // Handle exception + // + // As an alternative to simply displaying an error message, an alternate Eastern + // Standard Time TimeZoneInfo object could be instantiated here either by restoring + // it from a serialized string or by providing the necessary data to the + // CreateCustomTimeZone method. + catch (TimeZoneNotFoundException) + { + Console.WriteLine("The Eastern Standard Time Zone cannot be found on the local system."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine("The Eastern Standard Time Zone contains invalid or missing data."); + } + catch (SecurityException) + { + Console.WriteLine("The application lacks permission to read time zone information from the registry."); + } + catch (OutOfMemoryException) + { + Console.WriteLine("Not enough memory is available to load information on the Eastern Standard Time zone."); + } + // If we weren't passing FindSystemTimeZoneById a literal string, we also + // would handle an ArgumentNullException. + // + } - private void ConvertEasternToUtc() - { - // - DateTime easternTime = new DateTime(2007, 01, 02, 12, 16, 00); - string easternZoneId = "Eastern Standard Time"; - try - { - TimeZoneInfo easternZone = TimeZoneInfo.FindSystemTimeZoneById(easternZoneId); - Console.WriteLine("The date and time are {0} UTC.", - TimeZoneInfo.ConvertTimeToUtc(easternTime, easternZone)); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("Unable to find the {0} zone in the registry.", - easternZoneId); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Registry data on the {0} zone has been corrupted.", - easternZoneId); - } - // - } + private void ConvertToUtc() + { + // + DateTime dateNow = DateTime.Now; + Console.WriteLine($"The date and time are {TimeZoneInfo.ConvertTimeToUtc(dateNow)} UTC."); + // + } - private void ConvertUtcToCentral() - { - // - DateTime timeUtc = DateTime.UtcNow; - try - { - TimeZoneInfo cstZone = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); - DateTime cstTime = TimeZoneInfo.ConvertTimeFromUtc(timeUtc, cstZone); - Console.WriteLine("The date and time are {0} {1}.", - cstTime, - cstZone.IsDaylightSavingTime(cstTime) ? - cstZone.DaylightName : cstZone.StandardName); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The registry does not define the Central Standard Time zone."); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Registry data on the Central Standard Time zone has been corrupted."); - } - // - } + private void ConvertEasternToUtc() + { + // + DateTime easternTime = new(2007, 01, 02, 12, 16, 00); + string easternZoneId = "Eastern Standard Time"; + try + { + TimeZoneInfo easternZone = TimeZoneInfo.FindSystemTimeZoneById(easternZoneId); + Console.WriteLine($"The date and time are {TimeZoneInfo.ConvertTimeToUtc(easternTime, easternZone)} UTC."); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine($"Unable to find the {easternZoneId} zone in the registry."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine($"Registry data on the {easternZoneId} zone has been corrupted."); + } + // + } - private void ConvertHawaiianToLocal() - { - // - DateTime hwTime = new DateTime(2007, 02, 01, 08, 00, 00); - try - { - TimeZoneInfo hwZone = TimeZoneInfo.FindSystemTimeZoneById("Hawaiian Standard Time"); - Console.WriteLine("{0} {1} is {2} local time.", - hwTime, - hwZone.IsDaylightSavingTime(hwTime) ? hwZone.DaylightName : hwZone.StandardName, - TimeZoneInfo.ConvertTime(hwTime, hwZone, TimeZoneInfo.Local)); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The registry does not define the Hawaiian Standard Time zone."); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("Registry data on the Hawaiian Standard Time zone has been corrupted."); - } - // - } + private void ConvertUtcToCentral() + { + // + DateTime timeUtc = DateTime.UtcNow; + try + { + TimeZoneInfo cstZone = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); + DateTime cstTime = TimeZoneInfo.ConvertTimeFromUtc(timeUtc, cstZone); + Console.WriteLine($"The date and time are {cstTime} {(cstZone.IsDaylightSavingTime(cstTime) ? + cstZone.DaylightName : cstZone.StandardName)}."); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine("The registry does not define the Central Standard Time zone."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine("Registry data on the Central Standard Time zone has been corrupted."); + } + // + } - // Map an ambiguous time to the time zone's standard time - // - private DateTime ResolveAmbiguousTime(DateTime ambiguousTime) - { - // Time is not ambiguous - if (!TimeZoneInfo.Local.IsAmbiguousTime(ambiguousTime)) - { - return ambiguousTime; - } - // Time is ambiguous - else - { - DateTime utcTime = DateTime.SpecifyKind(ambiguousTime - TimeZoneInfo.Local.BaseUtcOffset, - DateTimeKind.Utc); - Console.WriteLine("{0} local time corresponds to {1} {2}.", - ambiguousTime, utcTime, utcTime.Kind.ToString()); - return utcTime; - } - } - // + private void ConvertHawaiianToLocal() + { + // + DateTime hwTime = new(2007, 02, 01, 08, 00, 00); + try + { + TimeZoneInfo hwZone = TimeZoneInfo.FindSystemTimeZoneById("Hawaiian Standard Time"); + Console.WriteLine($"{hwTime} {(hwZone.IsDaylightSavingTime(hwTime) ? hwZone.DaylightName : hwZone.StandardName)} is {TimeZoneInfo.ConvertTime(hwTime, hwZone, TimeZoneInfo.Local)} local time."); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine("The registry does not define the Hawaiian Standard Time zone."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine("Registry data on the Hawaiian Standard Time zone has been corrupted."); + } + // + } - // Allow the user to resolve an ambiguous time - // - private void GetUserDateInput() - { - // Get date and time from user - DateTime inputDate = GetUserDateTime(); - DateTime utcDate; - - // Exit if date has no significant value - if (inputDate == DateTime.MinValue) return; - - if (TimeZoneInfo.Local.IsAmbiguousTime(inputDate)) - { - Console.WriteLine("The date you've entered is ambiguous."); - Console.WriteLine("Please select the correct offset from Universal Coordinated Time:"); - TimeSpan[] offsets = TimeZoneInfo.Local.GetAmbiguousTimeOffsets(inputDate); - for (int ctr = 0; ctr < offsets.Length; ctr++) - { - Console.WriteLine("{0}.) {1} hours, {2} minutes", ctr, offsets[ctr].Hours, offsets[ctr].Minutes); - } - Console.Write("> "); - int selection = int.Parse(Console.ReadLine()); - - // Convert local time to UTC, and set Kind property to DateTimeKind.Utc - utcDate = DateTime.SpecifyKind(inputDate - offsets[selection], DateTimeKind.Utc); + // Map an ambiguous time to the time zone's standard time + // + private DateTime ResolveAmbiguousTime(DateTime ambiguousTime) + { + // Time is not ambiguous + if (!TimeZoneInfo.Local.IsAmbiguousTime(ambiguousTime)) + { + return ambiguousTime; + } + // Time is ambiguous + else + { + DateTime utcTime = DateTime.SpecifyKind(ambiguousTime - TimeZoneInfo.Local.BaseUtcOffset, + DateTimeKind.Utc); + Console.WriteLine($"{ambiguousTime} local time corresponds to {utcTime} {utcTime.Kind}."); + return utcTime; + } + } + // - Console.WriteLine("{0} local time corresponds to {1} {2}.", inputDate, utcDate, utcDate.Kind.ToString()); - } - else - { - utcDate = inputDate.ToUniversalTime(); - Console.WriteLine("{0} local time corresponds to {1} {2}.", inputDate, utcDate, utcDate.Kind.ToString()); - } - } + // Allow the user to resolve an ambiguous time + // + private void GetUserDateInput() + { + // Get date and time from user + DateTime inputDate = GetUserDateTime(); + DateTime utcDate; - private DateTime GetUserDateTime() - { - bool exitFlag = false; // flag to exit loop if date is valid - string dateString; - DateTime inputDate = DateTime.MinValue; - - Console.Write("Enter a local date and time: "); - while (!exitFlag) - { - dateString = Console.ReadLine(); - if (dateString.ToUpper() == "E") - exitFlag = true; - - if (DateTime.TryParse(dateString, out inputDate)) - exitFlag = true; - else - Console.Write("Enter a valid date and time, or enter 'e' to exit: "); - } + // Exit if date has no significant value + if (inputDate == DateTime.MinValue) return; - return inputDate; - } - // + if (TimeZoneInfo.Local.IsAmbiguousTime(inputDate)) + { + Console.WriteLine("The date you've entered is ambiguous."); + Console.WriteLine("Please select the correct offset from Universal Coordinated Time:"); + TimeSpan[] offsets = TimeZoneInfo.Local.GetAmbiguousTimeOffsets(inputDate); + for (int ctr = 0; ctr < offsets.Length; ctr++) + { + Console.WriteLine($"{ctr}.) {offsets[ctr].Hours} hours, {offsets[ctr].Minutes} minutes"); + } + Console.Write("> "); + int selection = int.Parse(Console.ReadLine()); + + // Convert local time to UTC, and set Kind property to DateTimeKind.Utc + utcDate = DateTime.SpecifyKind(inputDate - offsets[selection], DateTimeKind.Utc); + + Console.WriteLine($"{inputDate} local time corresponds to {utcDate} {utcDate.Kind}."); + } + else + { + utcDate = inputDate.ToUniversalTime(); + Console.WriteLine($"{inputDate} local time corresponds to {utcDate} {utcDate.Kind}."); + } + } + + private DateTime GetUserDateTime() + { + bool exitFlag = false; // flag to exit loop if date is valid + string dateString; + DateTime inputDate = DateTime.MinValue; + + Console.Write("Enter a local date and time: "); + while (!exitFlag) + { + dateString = Console.ReadLine(); + if (dateString.ToUpper() == "E") + exitFlag = true; + + if (DateTime.TryParse(dateString, out inputDate)) + exitFlag = true; + else + Console.Write("Enter a valid date and time, or enter 'e' to exit: "); + } + + return inputDate; + } + // } public class TZListForm : Form { - private System.Windows.Forms.ListBox timeZoneList; - private System.Windows.Forms.Button OkButton; - - public TZListForm() - { - this.timeZoneList = new System.Windows.Forms.ListBox(); - this.OkButton = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // timeZoneList - // - this.timeZoneList.FormattingEnabled = true; - this.timeZoneList.Location = new System.Drawing.Point(12, 12); - this.timeZoneList.Name = "timeZoneList"; - this.timeZoneList.Size = new System.Drawing.Size(250, 212); - this.timeZoneList.TabIndex = 0; - // - // OkButton - // - this.OkButton.Location = new System.Drawing.Point(186, 231); - this.OkButton.Name = "OkButton"; - this.OkButton.Size = new System.Drawing.Size(75, 23); - this.OkButton.TabIndex = 1; - this.OkButton.Text = "&OK"; - this.OkButton.UseVisualStyleBackColor = true; - this.OkButton.Click += new System.EventHandler(this.OkButton_Click); - // - // Form1 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(292, 266); - this.Controls.Add(this.OkButton); - this.Controls.Add(this.timeZoneList); - this.Name = "Form1"; - this.Text = "Form1"; - this.Load += new System.EventHandler(this.Form1_Load); - this.ResumeLayout(false); - } + private System.Windows.Forms.ListBox timeZoneList; + private System.Windows.Forms.Button OkButton; + + public TZListForm() + { + this.timeZoneList = new(); + this.OkButton = new(); + this.SuspendLayout(); + // + // timeZoneList + // + this.timeZoneList.FormattingEnabled = true; + this.timeZoneList.Location = new(12, 12); + this.timeZoneList.Name = "timeZoneList"; + this.timeZoneList.Size = new(250, 212); + this.timeZoneList.TabIndex = 0; + // + // OkButton + // + this.OkButton.Location = new(186, 231); + this.OkButton.Name = "OkButton"; + this.OkButton.Size = new(75, 23); + this.OkButton.TabIndex = 1; + this.OkButton.Text = "&OK"; + this.OkButton.UseVisualStyleBackColor = true; + this.OkButton.Click += new System.EventHandler(this.OkButton_Click); + // + // Form1 + // + this.AutoScaleDimensions = new(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new(292, 266); + this.Controls.Add(this.OkButton); + this.Controls.Add(this.timeZoneList); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + } + + // + private void Form1_Load(object sender, EventArgs e) + { + ReadOnlyCollection tzCollection; + tzCollection = TimeZoneInfo.GetSystemTimeZones(); + this.timeZoneList.DataSource = tzCollection; + } + + private void OkButton_Click(object sender, EventArgs e) + { + TimeZoneInfo selectedTimeZone = (TimeZoneInfo)this.timeZoneList.SelectedItem; + MessageBox.Show("You selected the " + selectedTimeZone + " time zone."); + } + // - // - private void Form1_Load(object sender, EventArgs e) - { - ReadOnlyCollection tzCollection; - tzCollection = TimeZoneInfo.GetSystemTimeZones(); - this.timeZoneList.DataSource = tzCollection; - } + private void ShowLocalAndUtc() + { + // + // Create Eastern Standard Time value and TimeZoneInfo object + DateTime estTime = new(2007, 1, 1, 00, 00, 00); + string timeZoneName = "Eastern Standard Time"; + try + { + TimeZoneInfo est = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName); - private void OkButton_Click(object sender, EventArgs e) - { - TimeZoneInfo selectedTimeZone = (TimeZoneInfo) this.timeZoneList.SelectedItem; - MessageBox.Show("You selected the " + selectedTimeZone.ToString() + " time zone."); - } - // + // Convert EST to local time + DateTime localTime = TimeZoneInfo.ConvertTime(estTime, est, TimeZoneInfo.Local); + Console.WriteLine($"At {estTime} {est}, the local time is {localTime} {(TimeZoneInfo.Local.IsDaylightSavingTime(localTime) ? + TimeZoneInfo.Local.DaylightName : + TimeZoneInfo.Local.StandardName)}."); - private void ShowLocalAndUtc() - { - // - // Create Eastern Standard Time value and TimeZoneInfo object - DateTime estTime = new DateTime(2007, 1, 1, 00, 00, 00); - string timeZoneName = "Eastern Standard Time"; - try - { - TimeZoneInfo est = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName); - - // Convert EST to local time - DateTime localTime = TimeZoneInfo.ConvertTime(estTime, est, TimeZoneInfo.Local); - Console.WriteLine("At {0} {1}, the local time is {2} {3}.", - estTime, - est, - localTime, - TimeZoneInfo.Local.IsDaylightSavingTime(localTime) ? - TimeZoneInfo.Local.DaylightName : - TimeZoneInfo.Local.StandardName); - - // Convert EST to UTC - DateTime utcTime = TimeZoneInfo.ConvertTime(estTime, est, TimeZoneInfo.Utc); - Console.WriteLine("At {0} {1}, the time is {2} {3}.", - estTime, - est, - utcTime, - TimeZoneInfo.Utc.StandardName); - } - catch (TimeZoneNotFoundException) - { - Console.WriteLine("The {0} zone cannot be found in the registry.", - timeZoneName); - } - catch (InvalidTimeZoneException) - { - Console.WriteLine("The registry contains invalid data for the {0} zone.", - timeZoneName); - } - // - } + // Convert EST to UTC + DateTime utcTime = TimeZoneInfo.ConvertTime(estTime, est, TimeZoneInfo.Utc); + Console.WriteLine($"At {estTime} {est}, the time is {utcTime} {TimeZoneInfo.Utc.StandardName}."); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine($"The {timeZoneName} zone cannot be found in the registry."); + } + catch (InvalidTimeZoneException) + { + Console.WriteLine($"The registry contains invalid data for the {timeZoneName} zone."); + } + // + } } diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime1.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime1.cs index a060daa1a61..1ff28977fad 100644 --- a/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime1.cs +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime1.cs @@ -1,46 +1,48 @@ // using System; -public class Example +public class ConvertTimeExample1 { - public static void Main() - { - // Define times to be converted. - DateTime[] times = { new DateTime(2010, 1, 1, 0, 1, 0), - new DateTime(2010, 1, 1, 0, 1, 0, DateTimeKind.Utc), - new DateTime(2010, 1, 1, 0, 1, 0, DateTimeKind.Local), + public static void Run() + { + // Define times to be converted. + DateTime[] times = [ new DateTime(2010, 1, 1, 0, 1, 0), + new DateTime(2010, 1, 1, 0, 1, 0, DateTimeKind.Utc), + new DateTime(2010, 1, 1, 0, 1, 0, DateTimeKind.Local), new DateTime(2010, 11, 6, 23, 30, 0), - new DateTime(2010, 11, 7, 2, 30, 0) }; - - // Retrieve the time zone for Eastern Standard Time (U.S. and Canada). - TimeZoneInfo est; - try { - est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); - } - catch (TimeZoneNotFoundException) { - Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); - return; - } - catch (InvalidTimeZoneException) { - Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); - return; - } + new DateTime(2010, 11, 7, 2, 30, 0) ]; - // Display the current time zone name. - Console.WriteLine("Local time zone: {0}\n", TimeZoneInfo.Local.DisplayName); - - // Convert each time in the array. - foreach (DateTime timeToConvert in times) - { - DateTime targetTime = TimeZoneInfo.ConvertTime(timeToConvert, est); - Console.WriteLine("Converted {0} {1} to {2}.", timeToConvert, - timeToConvert.Kind, targetTime); - } - } + // Retrieve the time zone for Eastern Standard Time (U.S. and Canada). + TimeZoneInfo est; + try + { + est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); + return; + } + catch (InvalidTimeZoneException) + { + Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); + return; + } + + // Display the current time zone name. + Console.WriteLine($"Local time zone: {TimeZoneInfo.Local.DisplayName}\n"); + + // Convert each time in the array. + foreach (DateTime timeToConvert in times) + { + DateTime targetTime = TimeZoneInfo.ConvertTime(timeToConvert, est); + Console.WriteLine($"Converted {timeToConvert} {timeToConvert.Kind} to {targetTime}."); + } + } } // The example displays the following output: // Local time zone: (GMT-08:00) Pacific Time (US & Canada) -// +// // Converted 1/1/2010 12:01:00 AM Unspecified to 1/1/2010 3:01:00 AM. // Converted 1/1/2010 12:01:00 AM Utc to 12/31/2009 7:01:00 PM. // Converted 1/1/2010 12:01:00 AM Local to 1/1/2010 3:01:00 AM. diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime2.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime2.cs index 21a4ad4b5db..e518861d1a6 100644 --- a/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime2.cs +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTime/converttime2.cs @@ -1,46 +1,49 @@ // using System; -public class Example +public class ConvertTimeExample2 { - public static void Main() - { - // Define times to be converted. - DateTime time1 = new DateTime(2010, 1, 1, 12, 1, 0); - DateTime time2 = new DateTime(2010, 11, 6, 23, 30, 0); - DateTimeOffset[] times = { new DateTimeOffset(time1, TimeZoneInfo.Local.GetUtcOffset(time1)), + public static void Run() + { + // Define times to be converted. + DateTime time1 = new(2010, 1, 1, 12, 1, 0); + DateTime time2 = new(2010, 11, 6, 23, 30, 0); + DateTimeOffset[] times = [ new DateTimeOffset(time1, TimeZoneInfo.Local.GetUtcOffset(time1)), new DateTimeOffset(time1, TimeSpan.Zero), new DateTimeOffset(time2, TimeZoneInfo.Local.GetUtcOffset(time2)), - new DateTimeOffset(time2.AddHours(3), TimeZoneInfo.Local.GetUtcOffset(time2.AddHours(3))) }; - - // Retrieve the time zone for Eastern Standard Time (U.S. and Canada). - TimeZoneInfo est; - try { - est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); - } - catch (TimeZoneNotFoundException) { - Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); - return; - } - catch (InvalidTimeZoneException) { - Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); - return; - } + new DateTimeOffset(time2.AddHours(3), TimeZoneInfo.Local.GetUtcOffset(time2.AddHours(3))) ]; - // Display the current time zone name. - Console.WriteLine("Local time zone: {0}\n", TimeZoneInfo.Local.DisplayName); - - // Convert each time in the array. - foreach (DateTimeOffset timeToConvert in times) - { - DateTimeOffset targetTime = TimeZoneInfo.ConvertTime(timeToConvert, est); - Console.WriteLine("Converted {0} to {1}.", timeToConvert, targetTime); - } - } + // Retrieve the time zone for Eastern Standard Time (U.S. and Canada). + TimeZoneInfo est; + try + { + est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + } + catch (TimeZoneNotFoundException) + { + Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); + return; + } + catch (InvalidTimeZoneException) + { + Console.WriteLine("Unable to retrieve the Eastern Standard time zone."); + return; + } + + // Display the current time zone name. + Console.WriteLine($"Local time zone: {TimeZoneInfo.Local.DisplayName}\n"); + + // Convert each time in the array. + foreach (DateTimeOffset timeToConvert in times) + { + DateTimeOffset targetTime = TimeZoneInfo.ConvertTime(timeToConvert, est); + Console.WriteLine($"Converted {timeToConvert} to {targetTime}."); + } + } } // The example displays the following output: // Local time zone: (GMT-08:00) Pacific Time (US & Canada) -// +// // Converted 1/1/2010 12:01:00 AM -08:00 to 1/1/2010 3:01:00 AM -05:00. // Converted 1/1/2010 12:01:00 AM +00:00 to 12/31/2009 7:01:00 PM -05:00. // Converted 11/6/2010 11:30:00 PM -07:00 to 11/7/2010 1:30:00 AM -05:00. diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/System.TimeZone2.Conversions.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/System.TimeZone2.Conversions.cs index 9116ab83038..9c734110837 100644 --- a/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/System.TimeZone2.Conversions.cs +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/System.TimeZone2.Conversions.cs @@ -1,109 +1,101 @@ using System; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] public class TimeZoneConversion { - public static void Main() - { - TimeZoneConversion tzc = new TimeZoneConversion(); - Console.WriteLine("\nConvertToUtc:"); - tzc.ConvertToUtc(); - Console.WriteLine("\nConvertZonesToUtc:"); - tzc.ConvertZonesToUtc(); - Console.WriteLine(); - tzc.ConvertZonesById(); - } + public static void Main() + { + TimeZoneConversion tzc = new(); + Console.WriteLine("\nConvertToUtc:"); + tzc.ConvertToUtc(); + Console.WriteLine("\nConvertZonesToUtc:"); + tzc.ConvertZonesToUtc(); + Console.WriteLine(); + tzc.ConvertZonesById(); + } - private void ConvertToUtc() - { - // - DateTime datNowLocal = DateTime.Now; - Console.WriteLine("Converting {0}, Kind {1}:", datNowLocal, datNowLocal.Kind); - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datNowLocal), TimeZoneInfo.ConvertTimeToUtc(datNowLocal).Kind); - Console.WriteLine(); + private void ConvertToUtc() + { + // + DateTime datNowLocal = DateTime.Now; + Console.WriteLine($"Converting {datNowLocal}, Kind {datNowLocal.Kind}:"); + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datNowLocal)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datNowLocal).Kind}"); + Console.WriteLine(); - DateTime datNowUtc = DateTime.UtcNow; - Console.WriteLine("Converting {0}, Kind {1}", datNowUtc, datNowUtc.Kind); - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datNowUtc), TimeZoneInfo.ConvertTimeToUtc(datNowUtc).Kind); - Console.WriteLine(); - - DateTime datNow = new DateTime(2007, 10, 26, 13, 32, 00); - Console.WriteLine("Converting {0}, Kind {1}", datNow, datNow.Kind); - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datNow), TimeZoneInfo.ConvertTimeToUtc(datNow).Kind); - Console.WriteLine(); - - DateTime datAmbiguous = new DateTime(2007, 11, 4, 1, 30, 00); - Console.WriteLine("Converting {0}, Kind {1}, Ambiguous {2}", datAmbiguous, datAmbiguous.Kind, TimeZoneInfo.Local.IsAmbiguousTime(datAmbiguous)); - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datAmbiguous), TimeZoneInfo.ConvertTimeToUtc(datAmbiguous).Kind); - Console.WriteLine(); - - DateTime datInvalid = new DateTime(2007, 3, 11, 02, 30, 00); - Console.WriteLine("Converting {0}, Kind {1}, Invalid {2}", datInvalid, datInvalid.Kind, TimeZoneInfo.Local.IsInvalidTime(datInvalid)); - try - { - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datInvalid), TimeZoneInfo.ConvertTimeToUtc(datInvalid).Kind); - } - catch (ArgumentException e) - { - Console.WriteLine(" {0}: Cannot convert {1} to UTC.", e.GetType().Name, datInvalid); - } - Console.WriteLine(); + DateTime datNowUtc = DateTime.UtcNow; + Console.WriteLine($"Converting {datNowUtc}, Kind {datNowUtc.Kind}"); + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datNowUtc)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datNowUtc).Kind}"); + Console.WriteLine(); - DateTime datNearMax = new DateTime(9999, 12, 31, 22, 00, 00); - Console.WriteLine("Converting {0}, Kind {1}", datNearMax, datNearMax.Kind); - Console.WriteLine(" ConvertTimeToUtc: {0}, Kind {1}", TimeZoneInfo.ConvertTimeToUtc(datNearMax), TimeZoneInfo.ConvertTimeToUtc(datNearMax).Kind); - Console.WriteLine(); - // - // This example produces the following output if the local time zone - // is Pacific Standard Time: - // - // Converting 8/31/2007 2:26:28 PM, Kind Local: - // ConvertTimeToUtc: 8/31/2007 9:26:28 PM, Kind Utc - // - // Converting 8/31/2007 9:26:28 PM, Kind Utc - // ConvertTimeToUtc: 8/31/2007 9:26:28 PM, Kind Utc - // - // Converting 10/26/2007 1:32:00 PM, Kind Unspecified - // ConvertTimeToUtc: 10/26/2007 8:32:00 PM, Kind Utc - // - // Converting 11/4/2007 1:30:00 AM, Kind Unspecified, Ambiguous True - // ConvertTimeToUtc: 11/4/2007 9:30:00 AM, Kind Utc - // - // Converting 3/11/2007 2:30:00 AM, Kind Unspecified, Invalid True - // ArgumentException: Cannot convert 3/11/2007 2:30:00 AM to UTC. - // - // Converting 12/31/9999 10:00:00 PM, Kind Unspecified - // ConvertTimeToUtc: 12/31/9999 11:59:59 PM, Kind Utc - // - // - } + DateTime datNow = new(2007, 10, 26, 13, 32, 00); + Console.WriteLine($"Converting {datNow}, Kind {datNow.Kind}"); + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datNow)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datNow).Kind}"); + Console.WriteLine(); - private void ConvertZonesToUtc() - { - } + DateTime datAmbiguous = new(2007, 11, 4, 1, 30, 00); + Console.WriteLine($"Converting {datAmbiguous}, Kind {datAmbiguous.Kind}, Ambiguous {TimeZoneInfo.Local.IsAmbiguousTime(datAmbiguous)}"); + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datAmbiguous)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datAmbiguous).Kind}"); + Console.WriteLine(); - private void ConvertZonesById() - { - // - DateTime currentTime = DateTime.Now; - Console.WriteLine("Current Times:"); - Console.WriteLine(); - Console.WriteLine("Los Angeles: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Pacific Standard Time")); - Console.WriteLine("Chicago: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Central Standard Time")); - Console.WriteLine("New York: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Eastern Standard Time")); - Console.WriteLine("London: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "GMT Standard Time")); - Console.WriteLine("Moscow: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Russian Standard Time")); - Console.WriteLine("New Delhi: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "India Standard Time")); - Console.WriteLine("Beijing: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "China Standard Time")); - Console.WriteLine("Tokyo: {0}", - TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Tokyo Standard Time")); - // - } + DateTime datInvalid = new(2007, 3, 11, 02, 30, 00); + Console.WriteLine($"Converting {datInvalid}, Kind {datInvalid.Kind}, Invalid {TimeZoneInfo.Local.IsInvalidTime(datInvalid)}"); + try + { + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datInvalid)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datInvalid).Kind}"); + } + catch (ArgumentException e) + { + Console.WriteLine($" {e.GetType().Name}: Cannot convert {datInvalid} to UTC."); + } + Console.WriteLine(); + + DateTime datNearMax = new(9999, 12, 31, 22, 00, 00); + Console.WriteLine($"Converting {datNearMax}, Kind {datNearMax.Kind}"); + Console.WriteLine($" ConvertTimeToUtc: {TimeZoneInfo.ConvertTimeToUtc(datNearMax)}, Kind {TimeZoneInfo.ConvertTimeToUtc(datNearMax).Kind}"); + Console.WriteLine(); + // + // This example produces the following output if the local time zone + // is Pacific Standard Time: + // + // Converting 8/31/2007 2:26:28 PM, Kind Local: + // ConvertTimeToUtc: 8/31/2007 9:26:28 PM, Kind Utc + // + // Converting 8/31/2007 9:26:28 PM, Kind Utc + // ConvertTimeToUtc: 8/31/2007 9:26:28 PM, Kind Utc + // + // Converting 10/26/2007 1:32:00 PM, Kind Unspecified + // ConvertTimeToUtc: 10/26/2007 8:32:00 PM, Kind Utc + // + // Converting 11/4/2007 1:30:00 AM, Kind Unspecified, Ambiguous True + // ConvertTimeToUtc: 11/4/2007 9:30:00 AM, Kind Utc + // + // Converting 3/11/2007 2:30:00 AM, Kind Unspecified, Invalid True + // ArgumentException: Cannot convert 3/11/2007 2:30:00 AM to UTC. + // + // Converting 12/31/9999 10:00:00 PM, Kind Unspecified + // ConvertTimeToUtc: 12/31/9999 11:59:59 PM, Kind Utc + // + // + } + + private void ConvertZonesToUtc() + { + } + + private void ConvertZonesById() + { + // + DateTime currentTime = DateTime.Now; + Console.WriteLine("Current Times:"); + Console.WriteLine(); + Console.WriteLine($"Los Angeles: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Pacific Standard Time")}"); + Console.WriteLine($"Chicago: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Central Standard Time")}"); + Console.WriteLine($"New York: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Eastern Standard Time")}"); + Console.WriteLine($"London: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "GMT Standard Time")}"); + Console.WriteLine($"Moscow: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Russian Standard Time")}"); + Console.WriteLine($"New Delhi: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "India Standard Time")}"); + Console.WriteLine($"Beijing: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "China Standard Time")}"); + Console.WriteLine($"Tokyo: {TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Tokyo Standard Time")}"); + // + } } diff --git a/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/convertdt2.cs b/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/convertdt2.cs index 8840694a6ab..c42551b7094 100644 --- a/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/convertdt2.cs +++ b/snippets/csharp/System/TimeZoneInfo/ConvertTimeBySystemTimeZoneId/convertdt2.cs @@ -3,20 +3,20 @@ public class Example { - public static void Main() - { - // Get time in local time zone - DateTime thisTime = DateTime.Now; - Console.WriteLine("Time in {0} zone: {1}", TimeZoneInfo.Local.IsDaylightSavingTime(thisTime) ? - TimeZoneInfo.Local.DaylightName : TimeZoneInfo.Local.StandardName, thisTime); - Console.WriteLine(" UTC Time: {0}", TimeZoneInfo.ConvertTimeToUtc(thisTime, TimeZoneInfo.Local)); - // Get Tokyo Standard Time zone - TimeZoneInfo tst = TimeZoneInfo.FindSystemTimeZoneById("Tokyo Standard Time"); - DateTime tstTime = TimeZoneInfo.ConvertTime(thisTime, TimeZoneInfo.Local, tst); - Console.WriteLine("Time in {0} zone: {1}", tst.IsDaylightSavingTime(tstTime) ? - tst.DaylightName : tst.StandardName, tstTime); - Console.WriteLine(" UTC Time: {0}", TimeZoneInfo.ConvertTimeToUtc(tstTime, tst)); - } + public static void Main() + { + // Get time in local time zone + DateTime thisTime = DateTime.Now; + Console.WriteLine($"Time in {(TimeZoneInfo.Local.IsDaylightSavingTime(thisTime) ? + TimeZoneInfo.Local.DaylightName : TimeZoneInfo.Local.StandardName)} zone: {thisTime}"); + Console.WriteLine($" UTC Time: {TimeZoneInfo.ConvertTimeToUtc(thisTime, TimeZoneInfo.Local)}"); + // Get Tokyo Standard Time zone + TimeZoneInfo tst = TimeZoneInfo.FindSystemTimeZoneById("Tokyo Standard Time"); + DateTime tstTime = TimeZoneInfo.ConvertTime(thisTime, TimeZoneInfo.Local, tst); + Console.WriteLine($"Time in {(tst.IsDaylightSavingTime(tstTime) ? + tst.DaylightName : tst.StandardName)} zone: {tstTime}"); + Console.WriteLine($" UTC Time: {TimeZoneInfo.ConvertTimeToUtc(tstTime, tst)}"); + } } // The example displays output like the following when run on a system in the // U.S. Pacific Standard Time zone: diff --git a/snippets/csharp/System/TimeZoneInfo/CreateCustomTimeZone/System.TimeZone2.CreateTimeZone.cs b/snippets/csharp/System/TimeZoneInfo/CreateCustomTimeZone/System.TimeZone2.CreateTimeZone.cs index 009775a0c46..ae9f0a3c7b0 100644 --- a/snippets/csharp/System/TimeZoneInfo/CreateCustomTimeZone/System.TimeZone2.CreateTimeZone.cs +++ b/snippets/csharp/System/TimeZoneInfo/CreateCustomTimeZone/System.TimeZone2.CreateTimeZone.cs @@ -2,261 +2,249 @@ using System.IO; // using System.Collections.Generic; -using System.Collections.ObjectModel; + // public class TimeZoneCreation { - public static void Main() - { - Console.WriteLine("First Overload of CreateCustomTimeZone: "); - TimeZoneCreation tzc = new TimeZoneCreation(); - tzc.DefineMawsonTime(); - Console.WriteLine(); - Console.WriteLine("Second Overload of CreateCustomTimeZone: "); - tzc.DefinePalmerTime(); - Console.WriteLine(); - tzc.DefineNonDSTTime(); - Console.WriteLine("About to create Antarctic/South Pole time zone"); - // Define Time Zone for Serialization - TimeZoneInfo southPole = tzc.InitializeTimeZone(); - tzc.TestCST(); - } + public static void Main() + { + Console.WriteLine("First Overload of CreateCustomTimeZone: "); + TimeZoneCreation tzc = new(); + tzc.DefineMawsonTime(); + Console.WriteLine(); + Console.WriteLine("Second Overload of CreateCustomTimeZone: "); + tzc.DefinePalmerTime(); + Console.WriteLine(); + tzc.DefineNonDSTTime(); + Console.WriteLine("About to create Antarctic/South Pole time zone"); + // Define Time Zone for Serialization + TimeZoneInfo southPole = tzc.InitializeTimeZone(); + tzc.TestCST(); + } + + private void TestCST() + { + Console.WriteLine(); + Console.WriteLine("Testing new Central Standard Time zone..."); + Console.WriteLine(); + TimeZoneInfo cst = CreateNewCentralStandardTimeZone(); + // + TimeZoneInfo est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + + DateTime pastDate1 = new(1942, 2, 11); + Console.WriteLine($"Is {pastDate1} daylight saving time: {cst.IsDaylightSavingTime(pastDate1)}"); - private void TestCST() - { - Console.WriteLine(); - Console.WriteLine("Testing new Central Standard Time zone..."); - Console.WriteLine(); - TimeZoneInfo cst = CreateNewCentralStandardTimeZone(); - // - TimeZoneInfo est = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + DateTime pastDate2 = new(1967, 10, 29, 1, 30, 00); + Console.WriteLine($"Is {pastDate2} ambiguous: {cst.IsAmbiguousTime(pastDate2)}"); - DateTime pastDate1 = new DateTime(1942, 2, 11); - Console.WriteLine("Is {0} daylight saving time: {1}", pastDate1, - cst.IsDaylightSavingTime(pastDate1)); - - DateTime pastDate2 = new DateTime(1967, 10, 29, 1, 30, 00); - Console.WriteLine("Is {0} ambiguous: {1}", pastDate2, - cst.IsAmbiguousTime(pastDate2)); + DateTime pastDate3 = new(1974, 1, 7, 2, 59, 00); + Console.WriteLine($"{pastDate3} {(est.IsDaylightSavingTime(pastDate3) ? + est.DaylightName : est.StandardName)} is {TimeZoneInfo.ConvertTime(pastDate3, est, cst)} {(cst.IsDaylightSavingTime(TimeZoneInfo.ConvertTime(pastDate3, est, cst)) ? + cst.DaylightName : cst.StandardName)}"); + // + // This code produces the following output to the console: + // + // Is 2/11/1942 12:00:00 AM daylight saving time: True + // Is 10/29/1967 1:30:00 AM ambiguous: True + // 1/7/1974 2:59:00 AM Eastern Standard Time is 1/7/1974 2:59:00 AM Central Daylight Time + // + } - DateTime pastDate3 = new DateTime(1974, 1, 7, 2, 59, 00); - Console.WriteLine("{0} {1} is {2} {3}", pastDate3, - est.IsDaylightSavingTime(pastDate3) ? - est.DaylightName : est.StandardName, - TimeZoneInfo.ConvertTime(pastDate3, est, cst), - cst.IsDaylightSavingTime(TimeZoneInfo.ConvertTime(pastDate3, est, cst)) ? - cst.DaylightName : cst.StandardName); - // - // This code produces the following output to the console: - // - // Is 2/11/1942 12:00:00 AM daylight saving time: True - // Is 10/29/1967 1:30:00 AM ambiguous: True - // 1/7/1974 2:59:00 AM Eastern Standard Time is 1/7/1974 2:59:00 AM Central Daylight Time - // - } + private void DefineMawsonTime() + { + // + string displayName = "(GMT+06:00) Antarctica/Mawson Time"; + string standardName = "Mawson Time"; + TimeSpan offset = new(06, 00, 00); + TimeZoneInfo mawson = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName); + Console.WriteLine($"The current time is {TimeZoneInfo.ConvertTime(DateTime.Now, TimeZoneInfo.Local, mawson)} {mawson.StandardName}"); + // + } - private void DefineMawsonTime() - { - // - string displayName = "(GMT+06:00) Antarctica/Mawson Time"; - string standardName = "Mawson Time"; - TimeSpan offset = new TimeSpan(06, 00, 00); - TimeZoneInfo mawson = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName); - Console.WriteLine("The current time is {0} {1}", - TimeZoneInfo.ConvertTime(DateTime.Now, TimeZoneInfo.Local, mawson), - mawson.StandardName); - // - } - - private void DefinePalmerTime() - { - // - // Define transition times to/from DST - TimeZoneInfo.TransitionTime startTransition, endTransition; - startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 4, 0, 0), - 10, 2, DayOfWeek.Sunday); - endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 3, 0, 0), - 3, 2, DayOfWeek.Sunday); - // Define adjustment rule - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment; - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1999, 10, 1), DateTime.MaxValue.Date, delta, startTransition, endTransition); - // Create array for adjustment rules - TimeZoneInfo.AdjustmentRule[] adjustments = {adjustment}; - // Define other custom time zone arguments - string displayName = "(GMT-04:00) Antarctica/Palmer Time"; - string standardName = "Palmer Time"; - string daylightName = "Palmer Daylight Time"; - TimeSpan offset = new TimeSpan(-4, 0, 0); - TimeZoneInfo palmer = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, daylightName, adjustments); - Console.WriteLine("The current time is {0} {1}", - TimeZoneInfo.ConvertTime(DateTime.Now, TimeZoneInfo.Local, palmer), - palmer.StandardName); - // - } + private void DefinePalmerTime() + { + // + // Define transition times to/from DST + TimeZoneInfo.TransitionTime startTransition, endTransition; + startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 4, 0, 0), + 10, 2, DayOfWeek.Sunday); + endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 3, 0, 0), + 3, 2, DayOfWeek.Sunday); + // Define adjustment rule + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment; + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1999, 10, 1), DateTime.MaxValue.Date, delta, startTransition, endTransition); + // Create array for adjustment rules + TimeZoneInfo.AdjustmentRule[] adjustments = [ adjustment ]; + // Define other custom time zone arguments + string displayName = "(GMT-04:00) Antarctica/Palmer Time"; + string standardName = "Palmer Time"; + string daylightName = "Palmer Daylight Time"; + TimeSpan offset = new(-4, 0, 0); + TimeZoneInfo palmer = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, daylightName, adjustments); + Console.WriteLine($"The current time is {TimeZoneInfo.ConvertTime(DateTime.Now, TimeZoneInfo.Local, palmer)} {palmer.StandardName}"); + // + } - private void DefineNonDSTTime() - { - // - // Define transition times to/from DST - TimeZoneInfo.TransitionTime startTransition, endTransition; - startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 4, 0, 0), - 10, 2, DayOfWeek.Sunday); - endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1,3, 0, 0), - 3, 2, DayOfWeek.Sunday); - // Define adjustment rule - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1999, 10, 1), - DateTime.MaxValue.Date, delta, startTransition, endTransition); - // Create array for adjustment rules - TimeZoneInfo.AdjustmentRule[] adjustments = {adjustment}; - // Define other custom time zone arguments - string displayName = "(GMT-04:00) Antarctica/Palmer Time"; - string standardName = "Palmer Standard Time"; - string daylightName = "Palmer Daylight Time"; - TimeSpan offset = new TimeSpan(-4, 0, 0); - // Create custom time zone without copying DST information - TimeZoneInfo palmer = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, - daylightName, adjustments, true); - // Indicate whether new time zone//s adjustment rules are present - Console.WriteLine("{0} {1}has {2} adjustment rules.", - palmer.StandardName, - ! (string.IsNullOrEmpty(palmer.DaylightName)) ? "(" + palmer.DaylightName + ") ": "" , - palmer.GetAdjustmentRules().Length); - // Indicate whether new time zone supports DST - Console.WriteLine("{0} supports DST: {1}", palmer.StandardName, palmer.SupportsDaylightSavingTime); - // - } + private void DefineNonDSTTime() + { + // + // Define transition times to/from DST + TimeZoneInfo.TransitionTime startTransition, endTransition; + startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 4, 0, 0), + 10, 2, DayOfWeek.Sunday); + endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 3, 0, 0), + 3, 2, DayOfWeek.Sunday); + // Define adjustment rule + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1999, 10, 1), + DateTime.MaxValue.Date, delta, startTransition, endTransition); + // Create array for adjustment rules + TimeZoneInfo.AdjustmentRule[] adjustments = [ adjustment ]; + // Define other custom time zone arguments + string displayName = "(GMT-04:00) Antarctica/Palmer Time"; + string standardName = "Palmer Standard Time"; + string daylightName = "Palmer Daylight Time"; + TimeSpan offset = new(-4, 0, 0); + // Create custom time zone without copying DST information + TimeZoneInfo palmer = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, + daylightName, adjustments, true); + // Indicate whether new time zone//s adjustment rules are present + Console.WriteLine($"{palmer.StandardName} {(!(string.IsNullOrEmpty(palmer.DaylightName)) ? "(" + palmer.DaylightName + ") " : "")}has {palmer.GetAdjustmentRules().Length} adjustment rules."); + // Indicate whether new time zone supports DST + Console.WriteLine($"{palmer.StandardName} supports DST: {palmer.SupportsDaylightSavingTime}"); + // + } - // - private TimeZoneInfo InitializeTimeZone() - { - TimeZoneInfo southPole = null; - // Determine if South Pole time zone is defined in system - try - { - southPole = TimeZoneInfo.FindSystemTimeZoneById("Antarctica/South Pole Standard Time"); - } - // Time zone does not exist; create it, store it in a text file, and return it - catch - { - const string filename = @".\TimeZoneInfo.txt"; - bool found = false; - - if (File.Exists(filename)) - { - StreamReader reader = new StreamReader(filename); - string timeZoneInfo; - while (reader.Peek() >= 0) + // + private TimeZoneInfo InitializeTimeZone() + { + TimeZoneInfo southPole = null; + // Determine if South Pole time zone is defined in system + try + { + southPole = TimeZoneInfo.FindSystemTimeZoneById("Antarctica/South Pole Standard Time"); + } + // Time zone does not exist; create it, store it in a text file, and return it + catch + { + const string filename = @".\TimeZoneInfo.txt"; + bool found = false; + + if (File.Exists(filename)) { - timeZoneInfo = reader.ReadLine(); - if (timeZoneInfo.Contains("Antarctica/South Pole")) - { - southPole = TimeZoneInfo.FromSerializedString(timeZoneInfo); - reader.Close(); - found = true; - break; - } + StreamReader reader = new(filename); + string timeZoneInfo; + while (reader.Peek() >= 0) + { + timeZoneInfo = reader.ReadLine(); + if (timeZoneInfo.Contains("Antarctica/South Pole")) + { + southPole = TimeZoneInfo.FromSerializedString(timeZoneInfo); + reader.Close(); + found = true; + break; + } + } } - } - if (!found) - { - // Define transition times to/from DST - TimeZoneInfo.TransitionTime startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 1, DayOfWeek.Sunday); - TimeZoneInfo.TransitionTime endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 3, DayOfWeek.Sunday); - // Define adjustment rule - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1989, 10, 1), DateTime.MaxValue.Date, delta, startTransition, endTransition); - // Create array for adjustment rules - TimeZoneInfo.AdjustmentRule[] adjustments = {adjustment}; - // Define other custom time zone arguments - string displayName = "(GMT+12:00) Antarctica/South Pole"; - string standardName = "Antarctica/South Pole Standard Time"; - string daylightName = "Antarctica/South Pole Daylight Time"; - TimeSpan offset = new TimeSpan(12, 0, 0); - southPole = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, daylightName, adjustments); - // Write time zone to the file - StreamWriter writer = new StreamWriter(filename, true); - writer.WriteLine(southPole.ToSerializedString()); - writer.Close(); - } - } - return southPole; - } - // + if (!found) + { + // Define transition times to/from DST + TimeZoneInfo.TransitionTime startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 1, DayOfWeek.Sunday); + TimeZoneInfo.TransitionTime endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 3, 3, DayOfWeek.Sunday); + // Define adjustment rule + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1989, 10, 1), DateTime.MaxValue.Date, delta, startTransition, endTransition); + // Create array for adjustment rules + TimeZoneInfo.AdjustmentRule[] adjustments = [ adjustment ]; + // Define other custom time zone arguments + string displayName = "(GMT+12:00) Antarctica/South Pole"; + string standardName = "Antarctica/South Pole Standard Time"; + string daylightName = "Antarctica/South Pole Daylight Time"; + TimeSpan offset = new(12, 0, 0); + southPole = TimeZoneInfo.CreateCustomTimeZone(standardName, offset, displayName, standardName, daylightName, adjustments); + // Write time zone to the file + StreamWriter writer = new(filename, true); + writer.WriteLine(southPole.ToSerializedString()); + writer.Close(); + } + } + return southPole; + } + // + + private TimeZoneInfo CreateNewCentralStandardTimeZone() + { + // + TimeZoneInfo cst; + // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone + TimeSpan delta = new(1, 0, 0); + TimeZoneInfo.AdjustmentRule adjustment; + List adjustmentList = []; + // Declare transition time variables to hold transition time information + TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; + + // Define new Central Standard Time zone 6 hours earlier than UTC + // Define rule 1 (for 1918-1919) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 05, DayOfWeek.Sunday); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 05, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1918, 1, 1), new DateTime(1919, 12, 31), delta, + transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 2 (for 1942) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 02, 09); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1942, 1, 1), new DateTime(1942, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 3 (for 1945) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 23, 0, 0), 08, 14); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 09, 30); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1945, 1, 1), new DateTime(1945, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define end rule (for 1967-2006) + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 5, DayOfWeek.Sunday); + // Define rule 4 (for 1967-73) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1967, 1, 1), new DateTime(1973, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 5 (for 1974 only) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 01, 06); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1974, 1, 1), new DateTime(1974, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 6 (for 1975 only) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 02, 23); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1975, 1, 1), new DateTime(1975, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 7 (1976-1986) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1976, 1, 1), new DateTime(1986, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 8 (1987-2006) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 01, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1987, 1, 1), new DateTime(2006, 12, 31), + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + // Define rule 9 (2007- ) + transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 02, DayOfWeek.Sunday); + transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 11, 01, DayOfWeek.Sunday); + adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(2007, 1, 1), DateTime.MaxValue.Date, + delta, transitionRuleStart, transitionRuleEnd); + adjustmentList.Add(adjustment); + + // Convert list of adjustment rules to an array + TimeZoneInfo.AdjustmentRule[] adjustments = new TimeZoneInfo.AdjustmentRule[adjustmentList.Count]; + adjustmentList.CopyTo(adjustments); - private TimeZoneInfo CreateNewCentralStandardTimeZone() - { - // - TimeZoneInfo cst; - // Declare necessary TimeZoneInfo.AdjustmentRule objects for time zone - TimeSpan delta = new TimeSpan(1, 0, 0); - TimeZoneInfo.AdjustmentRule adjustment; - List adjustmentList = new List(); - // Declare transition time variables to hold transition time information - TimeZoneInfo.TransitionTime transitionRuleStart, transitionRuleEnd; - - // Define new Central Standard Time zone 6 hours earlier than UTC - // Define rule 1 (for 1918-1919) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 05, DayOfWeek.Sunday); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 05, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1918, 1, 1), new DateTime(1919, 12, 31), delta, - transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 2 (for 1942) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 02, 09); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1942, 1, 1), new DateTime(1942, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 3 (for 1945) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 23, 0, 0), 08, 14); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 09, 30); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1945, 1, 1), new DateTime(1945, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define end rule (for 1967-2006) - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 10, 5, DayOfWeek.Sunday); - // Define rule 4 (for 1967-73) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1967, 1, 1), new DateTime(1973, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 5 (for 1974 only) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 01, 06); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1974, 1, 1), new DateTime(1974, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 6 (for 1975 only) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule(new DateTime(1, 1, 1, 2, 0, 0), 02, 23); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1975, 1, 1), new DateTime(1975, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 7 (1976-1986) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 05, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1976, 1, 1), new DateTime(1986, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 8 (1987-2006) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 04, 01, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(1987, 1, 1), new DateTime(2006, 12, 31), - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - // Define rule 9 (2007- ) - transitionRuleStart = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 03, 02, DayOfWeek.Sunday); - transitionRuleEnd = TimeZoneInfo.TransitionTime.CreateFloatingDateRule(new DateTime(1, 1, 1, 2, 0, 0), 11, 01, DayOfWeek.Sunday); - adjustment = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(new DateTime(2007, 1, 1), DateTime.MaxValue.Date, - delta, transitionRuleStart, transitionRuleEnd); - adjustmentList.Add(adjustment); - - // Convert list of adjustment rules to an array - TimeZoneInfo.AdjustmentRule[] adjustments = new TimeZoneInfo.AdjustmentRule[adjustmentList.Count]; - adjustmentList.CopyTo(adjustments); - - cst = TimeZoneInfo.CreateCustomTimeZone("Central Standard Time", new TimeSpan(-6, 0, 0), - "(GMT-06:00) Central Time (US Only)", "Central Standard Time", - "Central Daylight Time", adjustments); - // - return cst; - } + cst = TimeZoneInfo.CreateCustomTimeZone("Central Standard Time", new TimeSpan(-6, 0, 0), + "(GMT-06:00) Central Time (US Only)", "Central Standard Time", + "Central Daylight Time", adjustments); + // + return cst; + } } diff --git a/snippets/csharp/System/TimeZoneInfo/DaylightName/IsDaylightSavingTime.cs b/snippets/csharp/System/TimeZoneInfo/DaylightName/IsDaylightSavingTime.cs index 7078d2a0e16..6adfa570872 100644 --- a/snippets/csharp/System/TimeZoneInfo/DaylightName/IsDaylightSavingTime.cs +++ b/snippets/csharp/System/TimeZoneInfo/DaylightName/IsDaylightSavingTime.cs @@ -1,53 +1,43 @@ using System; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] public class DstTest { - public static void Main() - { - DstTest test = new DstTest(); - test.DisplayDateWithTimeZoneName(new DateTime(2006, 04, 02, 05, 00, 00, DateTimeKind.Local), TimeZoneInfo.Local); - test.DisplayDateWithTimeZoneName(new DateTime(2006, 04, 02, 01, 00, 00, DateTimeKind.Local), TimeZoneInfo.Local); - test.MayBeDST(); - } + public static void Main() + { + DstTest test = new(); + test.DisplayDateWithTimeZoneName(new DateTime(2006, 04, 02, 05, 00, 00, DateTimeKind.Local), TimeZoneInfo.Local); + test.DisplayDateWithTimeZoneName(new DateTime(2006, 04, 02, 01, 00, 00, DateTimeKind.Local), TimeZoneInfo.Local); + test.MayBeDST(); + } - // - private void DisplayDateWithTimeZoneName(DateTime date1, TimeZoneInfo timeZone) - { - Console.WriteLine("The time is {0:t} on {0:d} {1}", - date1, - timeZone.IsDaylightSavingTime(date1) ? - timeZone.DaylightName : timeZone.StandardName); - } - // The example displays output similar to the following: - // The time is 1:00 AM on 4/2/2006 Pacific Standard Time - // - - private void MayBeDST() - { - // - DateTime unclearDate = new DateTime(2007, 11, 4, 1, 30, 0); - // Test if time is ambiguous. - Console.WriteLine("In the {0}, {1} is {2}ambiguous.", - TimeZoneInfo.Local.DisplayName, - unclearDate, - TimeZoneInfo.Local.IsAmbiguousTime(unclearDate) ? "" : "not "); - // Test if time is DST. - Console.WriteLine("In the {0}, {1} is {2}daylight saving time.", - TimeZoneInfo.Local.DisplayName, - unclearDate, - TimeZoneInfo.Local.IsDaylightSavingTime(unclearDate) ? "" : "not "); - Console.WriteLine(); - // Report time as DST if it is either ambiguous or DST. - if (TimeZoneInfo.Local.IsAmbiguousTime(unclearDate) || - TimeZoneInfo.Local.IsDaylightSavingTime(unclearDate)) - Console.WriteLine("{0} may be daylight saving time in {1}.", - unclearDate, TimeZoneInfo.Local.DisplayName); - // The example displays the following output: - // In the (GMT-08:00) Pacific Time (US & Canada), 11/4/2007 1:30:00 AM is ambiguous. - // In the (GMT-08:00) Pacific Time (US & Canada), 11/4/2007 1:30:00 AM is not daylight saving time. - // - // 11/4/2007 1:30:00 AM may be daylight saving time in (GMT-08:00) Pacific Time (US & Canada). - // - } + // + private void DisplayDateWithTimeZoneName(DateTime date1, TimeZoneInfo timeZone) => Console.WriteLine("The time is {0:t} on {0:d} {1}", + date1, + timeZone.IsDaylightSavingTime(date1) ? + timeZone.DaylightName : timeZone.StandardName); + // The example displays output similar to the following: + // The time is 1:00 AM on 4/2/2006 Pacific Standard Time + // + + private void MayBeDST() + { + // + DateTime unclearDate = new(2007, 11, 4, 1, 30, 0); + // Test if time is ambiguous. + Console.WriteLine($"In the {TimeZoneInfo.Local.DisplayName}, {unclearDate} is {(TimeZoneInfo.Local.IsAmbiguousTime(unclearDate) ? "" : "not ")}ambiguous."); + // Test if time is DST. + Console.WriteLine($"In the {TimeZoneInfo.Local.DisplayName}, {unclearDate} is {(TimeZoneInfo.Local.IsDaylightSavingTime(unclearDate) ? "" : "not ")}daylight saving time."); + Console.WriteLine(); + // Report time as DST if it is either ambiguous or DST. + if (TimeZoneInfo.Local.IsAmbiguousTime(unclearDate) || + TimeZoneInfo.Local.IsDaylightSavingTime(unclearDate)) + Console.WriteLine($"{unclearDate} may be daylight saving time in {TimeZoneInfo.Local.DisplayName}."); + // The example displays the following output: + // In the (GMT-08:00) Pacific Time (US & Canada), 11/4/2007 1:30:00 AM is ambiguous. + // In the (GMT-08:00) Pacific Time (US & Canada), 11/4/2007 1:30:00 AM is not daylight saving time. + // + // 11/4/2007 1:30:00 AM may be daylight saving time in (GMT-08:00) Pacific Time (US & Canada). + // + } } diff --git a/snippets/csharp/System/TimeZoneInfo/Equals/equals1.cs b/snippets/csharp/System/TimeZoneInfo/Equals/equals1.cs index f2f192d1c2a..d27f1973e91 100644 --- a/snippets/csharp/System/TimeZoneInfo/Equals/equals1.cs +++ b/snippets/csharp/System/TimeZoneInfo/Equals/equals1.cs @@ -3,17 +3,17 @@ public class Example { - public static void Main() - { - TimeZoneInfo thisTimeZone; - object obj1, obj2; - - thisTimeZone = TimeZoneInfo.Local; - obj1 = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); - obj2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); - Console.WriteLine(thisTimeZone.Equals(obj1)); - Console.WriteLine(thisTimeZone.Equals(obj2)); - } + public static void Main() + { + TimeZoneInfo thisTimeZone; + object obj1, obj2; + + thisTimeZone = TimeZoneInfo.Local; + obj1 = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); + obj2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); + Console.WriteLine(thisTimeZone.Equals(obj1)); + Console.WriteLine(thisTimeZone.Equals(obj2)); + } } // The example displays the following output: // True diff --git a/snippets/csharp/System/TimeZoneInfo/GetAmbiguousTimeOffsets/System.TimeZone2.GetAmbiguousTimeOffsets.cs b/snippets/csharp/System/TimeZoneInfo/GetAmbiguousTimeOffsets/System.TimeZone2.GetAmbiguousTimeOffsets.cs index e1ab69a2697..9314fc9e9b1 100644 --- a/snippets/csharp/System/TimeZoneInfo/GetAmbiguousTimeOffsets/System.TimeZone2.GetAmbiguousTimeOffsets.cs +++ b/snippets/csharp/System/TimeZoneInfo/GetAmbiguousTimeOffsets/System.TimeZone2.GetAmbiguousTimeOffsets.cs @@ -1,102 +1,99 @@ using System; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] namespace TimeZoneInfoCode { -public class TimeOffsets -{ - public static void Main() - { - TimeOffsets to = new TimeOffsets(); - to.Start(); - } - - private void Start() - { - // - Console.WriteLine(); - ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 1, 0, 0), - TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); - Console.WriteLine(); - ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 01, 00, 00, DateTimeKind.Local), - TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); - Console.WriteLine(); - ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 00, 00, 00, DateTimeKind.Local), - TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); - Console.WriteLine(); - ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 01, 00, 00, DateTimeKind.Unspecified), - TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); - Console.WriteLine(); - ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 07, 00, 00, DateTimeKind.Utc), - TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); - // - // This example produces the following output if run in the Pacific time zone: - // - // 11/4/2007 1:00:00 AM (GMT-06:00) Central Time (US & Canada) maps to the following possible times: - // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC - // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC - // - // 11/4/2007 1:00:00 AM Pacific Standard Time is not ambiguous in time zone (GMT-06:00) Central Time (US & Canada). - // - // 11/4/2007 12:00:00 AM local time maps to the following possible times: - // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC - // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC - // - // 11/4/2007 1:00:00 AM (GMT-06:00) Central Time (US & Canada) maps to the following possible times: - // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC - // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC - // - // 11/4/2007 7:00:00 AM UTC maps to the following possible times: - // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC - // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC - // - // - } - - // - private void ShowPossibleUtcTimes(DateTime ambiguousTime, TimeZoneInfo timeZone) - { - // Determine if time is ambiguous in target time zone - if (!timeZone.IsAmbiguousTime(ambiguousTime)) - { - Console.WriteLine("{0} is not ambiguous in time zone {1}.", - ambiguousTime, - timeZone.DisplayName); - } - else - { - // Display time and its time zone (local, UTC, or indicated by timeZone argument) - string originalTimeZoneName; - if (ambiguousTime.Kind == DateTimeKind.Utc) - originalTimeZoneName = "UTC"; - else if (ambiguousTime.Kind == DateTimeKind.Local) - originalTimeZoneName = "local time"; - else - originalTimeZoneName = timeZone.DisplayName; + public class TimeOffsets + { + public static void Main() + { + TimeOffsets to = new(); + to.Start(); + } - Console.WriteLine("{0} {1} maps to the following possible times:", - ambiguousTime, originalTimeZoneName); - // Get ambiguous offsets - TimeSpan[] offsets = timeZone.GetAmbiguousTimeOffsets(ambiguousTime); - // Handle times not in time zone of timeZone argument - // Local time where timeZone is not local zone - if ((ambiguousTime.Kind == DateTimeKind.Local) && ! timeZone.Equals(TimeZoneInfo.Local)) - ambiguousTime = TimeZoneInfo.ConvertTime(ambiguousTime, TimeZoneInfo.Local, timeZone); - // UTC time where timeZone is not UTC zone - else if ((ambiguousTime.Kind == DateTimeKind.Utc) && ! timeZone.Equals(TimeZoneInfo.Utc)) - ambiguousTime = TimeZoneInfo.ConvertTime(ambiguousTime, TimeZoneInfo.Utc, timeZone); + private void Start() + { + // + Console.WriteLine(); + ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 1, 0, 0), + TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); + Console.WriteLine(); + ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 01, 00, 00, DateTimeKind.Local), + TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); + Console.WriteLine(); + ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 00, 00, 00, DateTimeKind.Local), + TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); + Console.WriteLine(); + ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 01, 00, 00, DateTimeKind.Unspecified), + TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); + Console.WriteLine(); + ShowPossibleUtcTimes(new DateTime(2007, 11, 4, 07, 00, 00, DateTimeKind.Utc), + TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time")); + // + // This example produces the following output if run in the Pacific time zone: + // + // 11/4/2007 1:00:00 AM (GMT-06:00) Central Time (US & Canada) maps to the following possible times: + // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC + // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC + // + // 11/4/2007 1:00:00 AM Pacific Standard Time is not ambiguous in time zone (GMT-06:00) Central Time (US & Canada). + // + // 11/4/2007 12:00:00 AM local time maps to the following possible times: + // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC + // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC + // + // 11/4/2007 1:00:00 AM (GMT-06:00) Central Time (US & Canada) maps to the following possible times: + // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC + // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC + // + // 11/4/2007 7:00:00 AM UTC maps to the following possible times: + // If 11/4/2007 1:00:00 AM is Central Standard Time, 11/4/2007 7:00:00 AM UTC + // If 11/4/2007 1:00:00 AM is Central Daylight Time, 11/4/2007 6:00:00 AM UTC + // + // + } - // Display each offset and its mapping to UTC - foreach (TimeSpan offset in offsets) - { - if (offset.Equals(timeZone.BaseUtcOffset)) - Console.WriteLine("If {0} is {1}, {2} UTC", ambiguousTime, timeZone.StandardName, ambiguousTime - offset); + // + private void ShowPossibleUtcTimes(DateTime ambiguousTime, TimeZoneInfo timeZone) + { + // Determine if time is ambiguous in target time zone + if (!timeZone.IsAmbiguousTime(ambiguousTime)) + { + Console.WriteLine($"{ambiguousTime} is not ambiguous in time zone {timeZone.DisplayName}."); + } else - Console.WriteLine("If {0} is {1}, {2} UTC", ambiguousTime, timeZone.DaylightName, ambiguousTime - offset); - } - } - } - // -} + { + // Display time and its time zone (local, UTC, or indicated by timeZone argument) + string originalTimeZoneName; + if (ambiguousTime.Kind == DateTimeKind.Utc) + originalTimeZoneName = "UTC"; + else if (ambiguousTime.Kind == DateTimeKind.Local) + originalTimeZoneName = "local time"; + else + originalTimeZoneName = timeZone.DisplayName; + + Console.WriteLine($"{ambiguousTime} {originalTimeZoneName} maps to the following possible times:"); + // Get ambiguous offsets + TimeSpan[] offsets = timeZone.GetAmbiguousTimeOffsets(ambiguousTime); + // Handle times not in time zone of timeZone argument + // Local time where timeZone is not local zone + if ((ambiguousTime.Kind == DateTimeKind.Local) && !timeZone.Equals(TimeZoneInfo.Local)) + ambiguousTime = TimeZoneInfo.ConvertTime(ambiguousTime, TimeZoneInfo.Local, timeZone); + // UTC time where timeZone is not UTC zone + else if ((ambiguousTime.Kind == DateTimeKind.Utc) && !timeZone.Equals(TimeZoneInfo.Utc)) + ambiguousTime = TimeZoneInfo.ConvertTime(ambiguousTime, TimeZoneInfo.Utc, timeZone); + + // Display each offset and its mapping to UTC + foreach (TimeSpan offset in offsets) + { + if (offset.Equals(timeZone.BaseUtcOffset)) + Console.WriteLine($"If {ambiguousTime} is {timeZone.StandardName}, {ambiguousTime - offset} UTC"); + else + Console.WriteLine($"If {ambiguousTime} is {timeZone.DaylightName}, {ambiguousTime - offset} UTC"); + } + } + } + // + } } // end namespace diff --git a/snippets/csharp/System/TimeZoneInfo/GetUtcOffset/System.TimeZone2.GetUtcOffset.cs b/snippets/csharp/System/TimeZoneInfo/GetUtcOffset/System.TimeZone2.GetUtcOffset.cs index e8362f99e5c..45d37a4afd0 100644 --- a/snippets/csharp/System/TimeZoneInfo/GetUtcOffset/System.TimeZone2.GetUtcOffset.cs +++ b/snippets/csharp/System/TimeZoneInfo/GetUtcOffset/System.TimeZone2.GetUtcOffset.cs @@ -1,113 +1,106 @@ // using System; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] namespace TimeZoneInfoCode { - public class TimeOffsets - { - public static void Main() - { - TimeOffsets timeoff = new TimeOffsets(); - TimeZoneInfo cst = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); - - timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), TimeZoneInfo.Local); - timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), TimeZoneInfo.Local); - timeoff.ShowOffset(new DateTime(2006, 12, 10, 15, 0, 0), TimeZoneInfo.Local); - timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0), TimeZoneInfo.Local); - timeoff.ShowOffset(DateTime.UtcNow, TimeZoneInfo.Local); - timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), TimeZoneInfo.Utc); - timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), TimeZoneInfo.Utc); - timeoff.ShowOffset(new DateTime(2006, 12, 10, 3, 0, 0), TimeZoneInfo.Utc); - timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0), TimeZoneInfo.Utc); - timeoff.ShowOffset(DateTime.Now, TimeZoneInfo.Utc); - timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), cst); - timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), cst); - timeoff.ShowOffset(new DateTime(2006, 12, 10, 15, 0, 0), cst); - timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0, 0), cst); - timeoff.ShowOffset(new DateTime(2007, 11, 14, 00, 00, 00, DateTimeKind.Local), cst); - } - - private void ShowOffset(DateTime time, TimeZoneInfo timeZone) - { - DateTime convertedTime = time; - TimeSpan offset; - - if (time.Kind == DateTimeKind.Local && ! timeZone.Equals(TimeZoneInfo.Local)) - convertedTime = TimeZoneInfo.ConvertTime(time, TimeZoneInfo.Local, timeZone); - else if (time.Kind == DateTimeKind.Utc && ! timeZone.Equals(TimeZoneInfo.Utc)) - convertedTime = TimeZoneInfo.ConvertTime(time, TimeZoneInfo.Utc, timeZone); - - offset = timeZone.GetUtcOffset(time); - if (time == convertedTime) - { - Console.WriteLine("{0} {1} ", time, - timeZone.IsDaylightSavingTime(time) ? timeZone.DaylightName : timeZone.StandardName); - Console.WriteLine(" It differs from UTC by {0} hours, {1} minutes.", - offset.Hours, - offset.Minutes); - } - else - { - Console.WriteLine("{0} {1} ", time, - time.Kind == DateTimeKind.Utc ? "UTC" : TimeZoneInfo.Local.Id); - Console.WriteLine(" converts to {0} {1}.", - convertedTime, - timeZone.Id); - Console.WriteLine(" It differs from UTC by {0} hours, {1} minutes.", - offset.Hours, offset.Minutes); - } - Console.WriteLine(); - } - } + public class TimeOffsets + { + public static void Main() + { + TimeOffsets timeoff = new(); + TimeZoneInfo cst = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"); + + timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), TimeZoneInfo.Local); + timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), TimeZoneInfo.Local); + timeoff.ShowOffset(new DateTime(2006, 12, 10, 15, 0, 0), TimeZoneInfo.Local); + timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0), TimeZoneInfo.Local); + timeoff.ShowOffset(DateTime.UtcNow, TimeZoneInfo.Local); + timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), TimeZoneInfo.Utc); + timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), TimeZoneInfo.Utc); + timeoff.ShowOffset(new DateTime(2006, 12, 10, 3, 0, 0), TimeZoneInfo.Utc); + timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0), TimeZoneInfo.Utc); + timeoff.ShowOffset(DateTime.Now, TimeZoneInfo.Utc); + timeoff.ShowOffset(new DateTime(2006, 6, 12, 11, 0, 0), cst); + timeoff.ShowOffset(new DateTime(2007, 11, 4, 1, 0, 0), cst); + timeoff.ShowOffset(new DateTime(2006, 12, 10, 15, 0, 0), cst); + timeoff.ShowOffset(new DateTime(2007, 3, 11, 2, 30, 0, 0), cst); + timeoff.ShowOffset(new DateTime(2007, 11, 14, 00, 00, 00, DateTimeKind.Local), cst); + } + + private void ShowOffset(DateTime time, TimeZoneInfo timeZone) + { + DateTime convertedTime = time; + TimeSpan offset; + + if (time.Kind == DateTimeKind.Local && !timeZone.Equals(TimeZoneInfo.Local)) + convertedTime = TimeZoneInfo.ConvertTime(time, TimeZoneInfo.Local, timeZone); + else if (time.Kind == DateTimeKind.Utc && !timeZone.Equals(TimeZoneInfo.Utc)) + convertedTime = TimeZoneInfo.ConvertTime(time, TimeZoneInfo.Utc, timeZone); + + offset = timeZone.GetUtcOffset(time); + if (time == convertedTime) + { + Console.WriteLine($"{time} {(timeZone.IsDaylightSavingTime(time) ? timeZone.DaylightName : timeZone.StandardName)} "); + Console.WriteLine($" It differs from UTC by {offset.Hours} hours, {offset.Minutes} minutes."); + } + else + { + Console.WriteLine($"{time} {(time.Kind == DateTimeKind.Utc ? "UTC" : TimeZoneInfo.Local.Id)} "); + Console.WriteLine($" converts to {convertedTime} {timeZone.Id}."); + Console.WriteLine($" It differs from UTC by {offset.Hours} hours, {offset.Minutes} minutes."); + } + Console.WriteLine(); + } + } } // The example produces the following output: // -// 6/12/2006 11:00:00 AM Pacific Daylight Time +// 6/12/2006 11:00:00 AM Pacific Daylight Time // It differs from UTC by -7 hours, 0 minutes. -// -// 11/4/2007 1:00:00 AM Pacific Standard Time +// +// 11/4/2007 1:00:00 AM Pacific Standard Time // It differs from UTC by -8 hours, 0 minutes. -// -// 12/10/2006 3:00:00 PM Pacific Standard Time +// +// 12/10/2006 3:00:00 PM Pacific Standard Time // It differs from UTC by -8 hours, 0 minutes. -// -// 3/11/2007 2:30:00 AM Pacific Standard Time +// +// 3/11/2007 2:30:00 AM Pacific Standard Time // It differs from UTC by -8 hours, 0 minutes. -// -// 2/2/2007 8:35:46 PM UTC +// +// 2/2/2007 8:35:46 PM UTC // converts to 2/2/2007 12:35:46 PM Pacific Standard Time. // It differs from UTC by -8 hours, 0 minutes. -// -// 6/12/2006 11:00:00 AM UTC +// +// 6/12/2006 11:00:00 AM UTC // It differs from UTC by 0 hours, 0 minutes. -// -// 11/4/2007 1:00:00 AM UTC +// +// 11/4/2007 1:00:00 AM UTC // It differs from UTC by 0 hours, 0 minutes. -// -// 12/10/2006 3:00:00 AM UTC +// +// 12/10/2006 3:00:00 AM UTC // It differs from UTC by 0 hours, 0 minutes. -// -// 3/11/2007 2:30:00 AM UTC +// +// 3/11/2007 2:30:00 AM UTC // It differs from UTC by 0 hours, 0 minutes. -// -// 2/2/2007 12:35:46 PM Pacific Standard Time +// +// 2/2/2007 12:35:46 PM Pacific Standard Time // converts to 2/2/2007 8:35:46 PM UTC. // It differs from UTC by 0 hours, 0 minutes. -// -// 6/12/2006 11:00:00 AM Central Daylight Time +// +// 6/12/2006 11:00:00 AM Central Daylight Time // It differs from UTC by -5 hours, 0 minutes. -// -// 11/4/2007 1:00:00 AM Central Standard Time +// +// 11/4/2007 1:00:00 AM Central Standard Time // It differs from UTC by -6 hours, 0 minutes. -// -// 12/10/2006 3:00:00 PM Central Standard Time +// +// 12/10/2006 3:00:00 PM Central Standard Time // It differs from UTC by -6 hours, 0 minutes. -// -// 3/11/2007 2:30:00 AM Central Standard Time +// +// 3/11/2007 2:30:00 AM Central Standard Time // It differs from UTC by -6 hours, 0 minutes. -// -// 11/14/2007 12:00:00 AM Pacific Standard Time +// +// 11/14/2007 12:00:00 AM Pacific Standard Time // converts to 11/14/2007 2:00:00 AM Central Standard Time. // It differs from UTC by -6 hours, 0 minutes. // diff --git a/snippets/csharp/System/TimeZoneInfo/HasSameRules/HasSameRules.cs b/snippets/csharp/System/TimeZoneInfo/HasSameRules/HasSameRules.cs index 7cd2afbac76..cbc1b654be9 100644 --- a/snippets/csharp/System/TimeZoneInfo/HasSameRules/HasSameRules.cs +++ b/snippets/csharp/System/TimeZoneInfo/HasSameRules/HasSameRules.cs @@ -1,37 +1,35 @@ using System; using System.Collections.ObjectModel; -[assembly:CLSCompliant(true)] +[assembly: CLSCompliant(true)] namespace TimeZoneInfoCode { -public sealed class TestSameRules -{ - private TestSameRules() {} + public sealed class TestSameRules + { + private TestSameRules() { } - public static void Main() - { - // - ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); - TimeZoneInfo[] timeZoneArray = new TimeZoneInfo[timeZones.Count]; - timeZones.CopyTo(timeZoneArray, 0); - // Iterate array from top to bottom - for (int ctr = timeZoneArray.GetUpperBound(0); ctr >= 1; ctr--) - { - // Get next item from top - TimeZoneInfo thisTimeZone = timeZoneArray[ctr]; - for (int compareCtr = 0; compareCtr <= ctr - 1; compareCtr++) - { - // Determine if time zones have the same rules - if (thisTimeZone.HasSameRules(timeZoneArray[compareCtr])) + public static void Main() + { + // + ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones(); + TimeZoneInfo[] timeZoneArray = new TimeZoneInfo[timeZones.Count]; + timeZones.CopyTo(timeZoneArray, 0); + // Iterate array from top to bottom + for (int ctr = timeZoneArray.GetUpperBound(0); ctr >= 1; ctr--) { - Console.WriteLine("{0} has the same rules as {1}", - thisTimeZone.StandardName, - timeZoneArray[compareCtr].StandardName); + // Get next item from top + TimeZoneInfo thisTimeZone = timeZoneArray[ctr]; + for (int compareCtr = 0; compareCtr <= ctr - 1; compareCtr++) + { + // Determine if time zones have the same rules + if (thisTimeZone.HasSameRules(timeZoneArray[compareCtr])) + { + Console.WriteLine($"{thisTimeZone.StandardName} has the same rules as {timeZoneArray[compareCtr].StandardName}"); + } + } } - } - } - // - } -} + // + } + } } // End namespace diff --git a/snippets/csharp/System/TimeoutException/Overview/Project.csproj b/snippets/csharp/System/TimeoutException/Overview/Project.csproj new file mode 100644 index 00000000000..32e3c55e48b --- /dev/null +++ b/snippets/csharp/System/TimeoutException/Overview/Project.csproj @@ -0,0 +1,9 @@ + + + Exe + net10.0 + + + + + diff --git a/snippets/csharp/System/TimeoutException/Overview/to.cs b/snippets/csharp/System/TimeoutException/Overview/to.cs index 0043143a9cf..474629ad3db 100644 --- a/snippets/csharp/System/TimeoutException/Overview/to.cs +++ b/snippets/csharp/System/TimeoutException/Overview/to.cs @@ -9,31 +9,31 @@ class Sample { public static void Main() { - string input; - try + string input; + try { -// Set the COM1 serial port to speed = 4800 baud, parity = odd, -// data bits = 8, stop bits = 1. - SerialPort sp = new SerialPort("COM1", - 4800, Parity.Odd, 8, StopBits.One); -// Timeout after 2 seconds. - sp.ReadTimeout = 2000; - sp.Open(); - -// Read until either the default newline termination string -// is detected or the read operation times out. - input = sp.ReadLine(); - - sp.Close(); - -// Echo the input. - Console.WriteLine(input); + // Set the COM1 serial port to speed = 4800 baud, parity = odd, + // data bits = 8, stop bits = 1. + SerialPort sp = new SerialPort("COM1", + 4800, Parity.Odd, 8, StopBits.One); + // Timeout after 2 seconds. + sp.ReadTimeout = 2000; + sp.Open(); + + // Read until either the default newline termination string + // is detected or the read operation times out. + input = sp.ReadLine(); + + sp.Close(); + + // Echo the input. + Console.WriteLine(input); } -// Only catch timeout exceptions. - catch (TimeoutException e) + // Only catch timeout exceptions. + catch (TimeoutException e) { - Console.WriteLine(e); + Console.WriteLine(e); } } } @@ -51,4 +51,4 @@ at System.IO.Ports.SerialPort.ReadTo(String value) at System.IO.Ports.SerialPort.ReadLine() at Sample.Main() */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Tuple/Overview/Program.cs b/snippets/csharp/System/Tuple/Overview/Program.cs new file mode 100644 index 00000000000..c56a5555343 --- /dev/null +++ b/snippets/csharp/System/Tuple/Overview/Program.cs @@ -0,0 +1,5 @@ +TupleCreateC.Create1.Run(args); +CreateNTupleExample.Run(); +Constructor8Example.Run(); +TupleOverviewExample.Run(args); +TupleOverviewExample1.Run(); diff --git a/snippets/csharp/System/Tuple/Overview/Project.csproj b/snippets/csharp/System/Tuple/Overview/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Tuple/Overview/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Tuple/Overview/create1.cs b/snippets/csharp/System/Tuple/Overview/create1.cs index 1de4ab7ccbf..66ea3a5d0ba 100644 --- a/snippets/csharp/System/Tuple/Overview/create1.cs +++ b/snippets/csharp/System/Tuple/Overview/create1.cs @@ -4,7 +4,7 @@ namespace TupleCreateC { class Create1 { - static void Main(string[] args) + public static void Run(string[] args) { Create1Tuple(); New1Tuple(); @@ -47,7 +47,7 @@ private static void Create2Tuple() { // var tuple2 = Tuple.Create("New York", 32.68); - Console.WriteLine("{0}: {1}", tuple2.Item1, tuple2.Item2); + Console.WriteLine($"{tuple2.Item1}: {tuple2.Item2}"); // Displays New York: 32.68 // } @@ -56,7 +56,7 @@ private static void New2Tuple() { // var tuple2 = new Tuple("New York", 32.68); - Console.WriteLine("{0}: {1}", tuple2.Item1, tuple2.Item2); + Console.WriteLine($"{tuple2.Item1}: {tuple2.Item2}"); // Displays New York: 32.68 // } @@ -65,8 +65,7 @@ private static void Create3Tuple() { // var tuple3 = Tuple.Create("New York", 32.68, 51.87); - Console.WriteLine("{0}: lo {1}, hi {2}", - tuple3.Item1, tuple3.Item2, tuple3.Item3); + Console.WriteLine($"{tuple3.Item1}: lo {tuple3.Item2}, hi {tuple3.Item3}"); // Displays New York: lo 32.68, hi 51.87 // } @@ -76,8 +75,7 @@ private static void New3Tuple() // var tuple3 = new Tuple ("New York", 32.68, 51.87); - Console.WriteLine("{0}: lo {1}, hi {2}", - tuple3.Item1, tuple3.Item2, tuple3.Item3); + Console.WriteLine($"{tuple3.Item1}: lo {tuple3.Item2}, hi {tuple3.Item3}"); // Displays New York: lo 32.68, hi 51.87 // } @@ -86,9 +84,7 @@ private static void Create4Tuple() { // var tuple4 = Tuple.Create("New York", 32.68, 51.87, 76.3); - Console.WriteLine("{0}: Hi {1}, Lo {2}, Ave {3}", - tuple4.Item1, tuple4.Item4, tuple4.Item2, - tuple4.Item3); + Console.WriteLine($"{tuple4.Item1}: Hi {tuple4.Item4}, Lo {tuple4.Item2}, Ave {tuple4.Item3}"); // Displays New York: Hi 76.3, Lo 32.68, Ave 51.87 // } @@ -98,9 +94,7 @@ private static void New4Tuple() // var tuple4 = new Tuple ("New York", 32.68, 51.87, 76.3); - Console.WriteLine("{0}: Hi {1}, Lo {2}, Ave {3}", - tuple4.Item1, tuple4.Item4, tuple4.Item2, - tuple4.Item3); + Console.WriteLine($"{tuple4.Item1}: Hi {tuple4.Item4}, Lo {tuple4.Item2}, Ave {tuple4.Item3}"); // Displays New York: Hi 76.3, Lo 32.68, Ave 51.87 // } @@ -109,9 +103,7 @@ private static void Create5Tuple() { // var tuple5 = Tuple.Create("New York", 1990, 7322564, 2000, 8008278); - Console.WriteLine("{0}: {1:N0} in {2}, {3:N0} in {4}", - tuple5.Item1, tuple5.Item3, tuple5.Item2, - tuple5.Item5, tuple5.Item4); + Console.WriteLine($"{tuple5.Item1}: {tuple5.Item3:N0} in {tuple5.Item2}, {tuple5.Item5:N0} in {tuple5.Item4}"); // Displays New York: 7,322,564 in 1990, 8,008,278 in 2000 // } @@ -121,9 +113,7 @@ private static void New5Tuple() // var tuple5 = new Tuple ("New York", 1990, 7322564, 2000, 8008278); - Console.WriteLine("{0}: {1:N0} in {2}, {3:N0} in {4}", - tuple5.Item1, tuple5.Item3, tuple5.Item2, - tuple5.Item5, tuple5.Item4); + Console.WriteLine($"{tuple5.Item1}: {tuple5.Item3:N0} in {tuple5.Item2}, {tuple5.Item5:N0} in {tuple5.Item4}"); // Displays New York: 7,322,564 in 1990, 8,008,278 in 2000 // } @@ -132,9 +122,7 @@ private static void Create6Tuple() { // var tuple6 = Tuple.Create("Jane", 90, 87, 93, 67, 100); - Console.WriteLine("Test scores for {0}: {1}, {2}, {3}, {4}, {5}", - tuple6.Item1, tuple6.Item2, tuple6.Item3, - tuple6.Item4, tuple6.Item5, tuple6.Item6); + Console.WriteLine($"Test scores for {tuple6.Item1}: {tuple6.Item2}, {tuple6.Item3}, {tuple6.Item4}, {tuple6.Item5}, {tuple6.Item6}"); // Displays Test scores for Jane: 90, 87, 93, 67, 100 // } @@ -144,9 +132,7 @@ private static void New6Tuple() // var tuple6 = new Tuple ("Jane", 90, 87, 93, 67, 100); - Console.WriteLine("Test scores for {0}: {1}, {2}, {3}, {4}, {5}", - tuple6.Item1, tuple6.Item2, tuple6.Item3, - tuple6.Item4, tuple6.Item5, tuple6.Item6); + Console.WriteLine($"Test scores for {tuple6.Item1}: {tuple6.Item2}, {tuple6.Item3}, {tuple6.Item4}, {tuple6.Item5}, {tuple6.Item6}"); // Displays Test scores for Jane: 90, 87, 93, 67, 100 // } @@ -155,10 +141,7 @@ private static void Create7Tuple() { // var tuple7 = Tuple.Create("Jane", 90, 87, 93, 67, 100, 92); - Console.WriteLine("Test scores for {0}: {1}, {2}, {3}, {4}, {5}, {6}", - tuple7.Item1, tuple7.Item2, tuple7.Item3, - tuple7.Item4, tuple7.Item5, tuple7.Item6, - tuple7.Item7); + Console.WriteLine($"Test scores for {tuple7.Item1}: {tuple7.Item2}, {tuple7.Item3}, {tuple7.Item4}, {tuple7.Item5}, {tuple7.Item6}, {tuple7.Item7}"); // Displays Test scores for Jane: 90, 87, 93, 67, 100, 92 // } @@ -168,44 +151,41 @@ private static void New7Tuple() // var tuple7 = new Tuple ("Jane", 90, 87, 93, 67, 100, 92); - Console.WriteLine("Test scores for {0}: {1}, {2}, {3}, {4}, {5}, {6}", - tuple7.Item1, tuple7.Item2, tuple7.Item3, - tuple7.Item4, tuple7.Item5, tuple7.Item6, - tuple7.Item7); + Console.WriteLine($"Test scores for {tuple7.Item1}: {tuple7.Item2}, {tuple7.Item3}, {tuple7.Item4}, {tuple7.Item5}, {tuple7.Item6}, {tuple7.Item7}"); // Displays Test scores for Jane: 90, 87, 93, 67, 100, 92 // } private static void CreateNTuple() { -// Tuple innerTuple = -// Tuple.Create(1960, 1670140, 1980, 1203339, 2000, 951270); -// Tuple> tuple8 = -// Tuple.Create("Detroit", 1900, 285704, 1920, 993078, 1940, 1623452, innerTuple); + // Tuple innerTuple = + // Tuple.Create(1960, 1670140, 1980, 1203339, 2000, 951270); + // Tuple> tuple8 = + // Tuple.Create("Detroit", 1900, 285704, 1920, 993078, 1940, 1623452, innerTuple); } private static void NewNTuple() { // - var innerTuple = new Tuple - (1960, 1670140, 1980, 1203339, + var innerTuple = new Tuple + (1960, 1670140, 1980, 1203339, 2000, 951270); var tuple8 = new Tuple> ("Detroit", 1900, 285704, 1920, 993078, 1940, 1623452, innerTuple); Console.WriteLine("Population of {0} in:\n {1}: {2,10:N0} \n" + - " {3}: {4,10:N0} \n" + - " {5}: {6,10:N0} \n" + - " {7}: {8,10:N0} \n" + - " {9}: {10,10:N0} \n" + + " {3}: {4,10:N0} \n" + + " {5}: {6,10:N0} \n" + + " {7}: {8,10:N0} \n" + + " {9}: {10,10:N0} \n" + " {11}: {12,10:N0} \n", tuple8.Item1, tuple8.Item2, tuple8.Item3, tuple8.Item4, tuple8.Item5, tuple8.Item6, tuple8.Item7, tuple8.Rest.Item1, tuple8.Rest.Item2, tuple8.Rest.Item3, tuple8.Rest.Item4, - tuple8.Rest.Item5, tuple8.Rest.Item6); + tuple8.Rest.Item5, tuple8.Rest.Item6); // The example displays the following output: // Population of Detroit in: // 1900: 285,704 @@ -213,18 +193,18 @@ private static void NewNTuple() // 1940: 1,623,452 // 1960: 1,670,140 // 1980: 1,203,339 - // 2000: 951,270 + // 2000: 951,270 // } private static void Example() { - var from1980 = Tuple.Create(1203339, 1027974, 951270); - var from1910 = new Tuple> - (465766, 993078, 1568622, 1623452, 1849568, 1670144, 1511462, from1980); - var population = new Tuple>> - ("Detroit", 1860, 45619, 79577, 116340, 205876, 285704, from1910); + var from1980 = Tuple.Create(1203339, 1027974, 951270); + var from1910 = new Tuple> + (465766, 993078, 1568622, 1623452, 1849568, 1670144, 1511462, from1980); + var population = new Tuple>> + ("Detroit", 1860, 45619, 79577, 116340, 205876, 285704, from1910); } } } diff --git a/snippets/csharp/System/Tuple/Overview/createntuple.cs b/snippets/csharp/System/Tuple/Overview/createntuple.cs index a254a670b99..e3229d8fc79 100644 --- a/snippets/csharp/System/Tuple/Overview/createntuple.cs +++ b/snippets/csharp/System/Tuple/Overview/createntuple.cs @@ -1,19 +1,19 @@ using System; -public class Example +public class CreateNTupleExample { - public static void Main() - { - // - var primes = Tuple.Create(2, 3, 5, 7, 11, 13, 17, 19); - Console.WriteLine("Prime numbers less than 20: " + - "{0}, {1}, {2}, {3}, {4}, {5}, {6}, and {7}", - primes.Item1, primes.Item2, primes.Item3, - primes.Item4, primes.Item5, primes.Item6, - primes.Item7, primes.Rest.Item1); - // The example displays the following output: - // Prime numbers less than 20: 2, 3, 5, 7, 11, 13, 17, and 19 - // - Console.WriteLine(primes.ToString()); - } + public static void Run() + { + // + var primes = Tuple.Create(2, 3, 5, 7, 11, 13, 17, 19); + Console.WriteLine("Prime numbers less than 20: " + + "{0}, {1}, {2}, {3}, {4}, {5}, {6}, and {7}", + primes.Item1, primes.Item2, primes.Item3, + primes.Item4, primes.Item5, primes.Item6, + primes.Item7, primes.Rest.Item1); + // The example displays the following output: + // Prime numbers less than 20: 2, 3, 5, 7, 11, 13, 17, and 19 + // + Console.WriteLine(primes); + } } diff --git a/snippets/csharp/System/Tuple/Overview/ctor8.cs b/snippets/csharp/System/Tuple/Overview/ctor8.cs index d1b551e9334..2ca778424f6 100644 --- a/snippets/csharp/System/Tuple/Overview/ctor8.cs +++ b/snippets/csharp/System/Tuple/Overview/ctor8.cs @@ -1,14 +1,14 @@ using System; -public class Example +public class Constructor8Example { - public static void Main() - { - // - var primes = new Tuple>(2, 3, 5, 7, 11, 13, 16, - new Tuple(19)); - // - Console.WriteLine(primes.ToString()); - } + public static void Run() + { + // + var primes = new Tuple>(2, 3, 5, 7, 11, 13, 16, + new Tuple(19)); + // + Console.WriteLine(primes); + } } diff --git a/snippets/csharp/System/Tuple/Overview/example.cs b/snippets/csharp/System/Tuple/Overview/example.cs index 78752e41f58..5677e08b60d 100644 --- a/snippets/csharp/System/Tuple/Overview/example.cs +++ b/snippets/csharp/System/Tuple/Overview/example.cs @@ -1,20 +1,20 @@ using System; -class Example +class TupleOverviewExample { - static void Main(string[] args) + public static void Run(string[] args) { // var from1980 = Tuple.Create(1203339, 1027974, 951270); - var from1910 = new Tuple> + var from1910 = new Tuple> (465766, 993078, 1568622, 1623452, 1849568, 1670144, 1511462, from1980); var population = new Tuple>> + Tuple>> ("Detroit", 1860, 45619, 79577, 116340, 205876, 285704, from1910); // - Console.WriteLine("Population of {0}", population.Item1); + Console.WriteLine($"Population of {population.Item1}"); Console.WriteLine(); - Console.WriteLine("{0,5} {1,14} {2,10}", "Year", "Population", "Change"); + Console.WriteLine($"{"Year",5} {"Population",14} {"Change",10}"); int year = population.Item2; ShowPopulation(year, population.Item3); @@ -48,16 +48,9 @@ static void Main(string[] args) ShowPopulationChange(year, population.Rest.Rest.Item3, population.Rest.Rest.Item2); } - private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, - ((double)(newPopulation - oldPopulation) / oldPopulation) / 10); - } + private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {((double)(newPopulation - oldPopulation) / oldPopulation) / 10,10:P2}"); - private static void ShowPopulation(int year, int newPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, "n/a"); - } + private static void ShowPopulation(int year, int newPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {"n/a",10}"); } // The example displays the following output: // diff --git a/snippets/csharp/System/Tuple/Overview/example1.cs b/snippets/csharp/System/Tuple/Overview/example1.cs index dd02f8bc30a..af468923e9a 100644 --- a/snippets/csharp/System/Tuple/Overview/example1.cs +++ b/snippets/csharp/System/Tuple/Overview/example1.cs @@ -1,38 +1,36 @@ using System; -public class Example +public class TupleOverviewExample1 { - public static void Main() - { - Ctor1(); - Factory(); - } + public static void Run() + { + Ctor1(); + Factory(); + } - private static void Ctor1() - { - // - // Create a 7-tuple. - var population = new Tuple( - "New York", 7891957, 7781984, - 7894862, 7071639, 7322564, 8008278); - // Display the first and last elements. - Console.WriteLine("Population of {0} in 2000: {1:N0}", - population.Item1, population.Item7); - // The example displays the following output: - // Population of New York in 2000: 8,008,278 - // - } + private static void Ctor1() + { + // + // Create a 7-tuple. + var population = new Tuple( + "New York", 7891957, 7781984, + 7894862, 7071639, 7322564, 8008278); + // Display the first and last elements. + Console.WriteLine($"Population of {population.Item1} in 2000: {population.Item7:N0}"); + // The example displays the following output: + // Population of New York in 2000: 8,008,278 + // + } - private static void Factory() - { - // - // Create a 7-tuple. - var population = Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278); - // Display the first and last elements. - Console.WriteLine("Population of {0} in 2000: {1:N0}", - population.Item1, population.Item7); - // The example displays the following output: - // Population of New York in 2000: 8,008,278 - // - } + private static void Factory() + { + // + // Create a 7-tuple. + var population = Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278); + // Display the first and last elements. + Console.WriteLine($"Population of {population.Item1} in 2000: {population.Item7:N0}"); + // The example displays the following output: + // Population of New York in 2000: 8,008,278 + // + } } diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Equals/equals1.cs index 4f900260888..09af1b8e0ef 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Equals/equals1.cs @@ -3,33 +3,33 @@ public class Class1 { - public static void Main() - { - // Create five 8-tuple objects containing prime numbers. - var prime1 = new Tuple> (2, 3, 5, 7, 11, 13, 17, - new Tuple(19)); - var prime2 = new Tuple> (23, 29, 31, 37, 41, 43, 47, - new Tuple(55)); - var prime3 = new Tuple> (3, 2, 5, 7, 11, 13, 17, - new Tuple(19)); - var prime4 = new Tuple> (2, 3, 5, 7, 11, 13, 17, - new Tuple(19, 23)); - var prime5 = new Tuple> (2, 3, 5, 7, 11, 13, 17, - new Tuple(19)); - Console.WriteLine("{0} = {1} : {2}", prime1, prime2, prime1.Equals(prime2)); - Console.WriteLine("{0} = {1} : {2}", prime1, prime3, prime1.Equals(prime3)); - Console.WriteLine("{0} = {1} : {2}", prime1, prime4, prime1.Equals(prime4)); - Console.WriteLine("{0} = {1} : {2}", prime1, prime5, prime1.Equals(prime5)); - } + public static void Main() + { + // Create five 8-tuple objects containing prime numbers. + var prime1 = new Tuple>(2, 3, 5, 7, 11, 13, 17, + new Tuple(19)); + var prime2 = new Tuple>(23, 29, 31, 37, 41, 43, 47, + new Tuple(55)); + var prime3 = new Tuple>(3, 2, 5, 7, 11, 13, 17, + new Tuple(19)); + var prime4 = new Tuple>(2, 3, 5, 7, 11, 13, 17, + new Tuple(19, 23)); + var prime5 = new Tuple>(2, 3, 5, 7, 11, 13, 17, + new Tuple(19)); + Console.WriteLine($"{prime1} = {prime2} : {prime1.Equals(prime2)}"); + Console.WriteLine($"{prime1} = {prime3} : {prime1.Equals(prime3)}"); + Console.WriteLine($"{prime1} = {prime4} : {prime1.Equals(prime4)}"); + Console.WriteLine($"{prime1} = {prime5} : {prime1.Equals(prime5)}"); + } } // The example displays the following output: // (2, 3, 5, 7, 11, 13, 17, 19) = (23, 29, 31, 37, 41, 43, 47, 55) : False // (2, 3, 5, 7, 11, 13, 17, 19) = (3, 2, 5, 7, 11, 13, 17, 19) : False // (2, 3, 5, 7, 11, 13, 17, 19) = (2, 3, 5, 7, 11, 13, 17, 19, 23) : False // (2, 3, 5, 7, 11, 13, 17, 19) = (2, 3, 5, 7, 11, 13, 17, 19) : True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Item1/item1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Item1/item1.cs index 7c709f3213f..7828b98e0e5 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Item1/item1.cs @@ -6,15 +6,15 @@ class Example static void Main(string[] args) { Tuple from1980 = Tuple.Create(1203339, 1027974, 951270); - var from1910 = new Tuple> + var from1910 = new Tuple> (465766, 993078, 1568622, 1623452, 1849568, 1670144, 1511462, from1980); var population = new Tuple>> + Tuple>> ("Detroit", 1860, 45619, 79577, 116340, 205876, 285704, from1910); - Console.WriteLine("Population of {0}", population.Item1); + Console.WriteLine($"Population of {population.Item1}"); Console.WriteLine(); - Console.WriteLine("{0,5} {1,14} {2,10}", "Year", "Population", "Change"); + Console.WriteLine($"{"Year",5} {"Population",14} {"Change",10}"); int year = population.Item2; ShowPopulation(year, population.Item3); @@ -48,16 +48,9 @@ static void Main(string[] args) ShowPopulationChange(year, population.Rest.Rest.Item3, population.Rest.Rest.Item2); } - private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, - ((double)(newPopulation - oldPopulation) / oldPopulation) / 10); - } + private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {((double)(newPopulation - oldPopulation) / oldPopulation) / 10,10:P2}"); - private static void ShowPopulation(int year, int newPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, "n/a"); - } + private static void ShowPopulation(int year, int newPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {"n/a",10}"); } // The example displays the following output: // @@ -78,4 +71,4 @@ private static void ShowPopulation(int year, int newPopulation) // 1980 1,203,339 -2.04 % // 1990 1,027,974 -1.46 % // 2000 951,270 -0.75 % -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Overview/octuple1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Overview/octuple1.cs index e4f1950590e..6e28f8e8778 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Overview/octuple1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/Overview/octuple1.cs @@ -2,12 +2,12 @@ public class Class1 { - public static void Main() - { - // - var primes = new Tuple> (2, 3, 5, 7, 11, 13, 17, new Tuple(19)); - // - Console.WriteLine(primes.ToString()); - } + public static void Main() + { + // + var primes = new Tuple>(2, 3, 5, 7, 11, 13, 17, new Tuple(19)); + // + Console.WriteLine(primes); + } } diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index d4caf4d74e8..980c072d1e5 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,35 +1,35 @@ // using System; -public class Example +public class CompareToExample1 { - public static void Main() - { - // Create array of 8-tuple objects containing prime numbers. - Tuple>[] primes = - { new Tuple>(2, 3, 5, 7, 11, 13, 17, new Tuple(19)), - new Tuple>(23, 29, 31, 37, 41, 43, 47, new Tuple(55)), - new Tuple>(3, 2, 5, 7, 11, 13, 17, new Tuple(19)) }; - // Display 8-tuples in unsorted order. - foreach (var prime in primes) - Console.WriteLine(prime.ToString()); - Console.WriteLine(); - - // Sort the array and display its 8-tuples. - Array.Sort(primes); - foreach (var prime in primes) - Console.WriteLine(prime.ToString()); - } + public static void Run() + { + // Create array of 8-tuple objects containing prime numbers. + Tuple>[] primes = + [ new Tuple>(2, 3, 5, 7, 11, 13, 17, new Tuple(19)), + new Tuple>(23, 29, 31, 37, 41, 43, 47, new Tuple(55)), + new Tuple>(3, 2, 5, 7, 11, 13, 17, new Tuple(19)) ]; + // Display 8-tuples in unsorted order. + foreach (var prime in primes) + Console.WriteLine(prime); + Console.WriteLine(); + + // Sort the array and display its 8-tuples. + Array.Sort(primes); + foreach (var prime in primes) + Console.WriteLine(prime); + } } // The example displays the following output: // (2, 3, 5, 7, 11, 13, 17, 19) // (23, 29, 31, 37, 41, 43, 47, 55) // (3, 2, 5, 7, 11, 13, 17, 19) -// +// // (2, 3, 5, 7, 11, 13, 17, 19) // (3, 2, 5, 7, 11, 13, 17, 19) // (23, 29, 31, 37, 41, 43, 47, 55) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index e9ff5e13cea..436587ab05c 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,85 +5,76 @@ public class PopulationComparer : IComparer { - private int itemPosition; - private int multiplier = -1; + private int itemPosition; + private int multiplier = -1; - public PopulationComparer(int component) : this(component, true) - { } + public PopulationComparer(int component) : this(component, true) + { } - public PopulationComparer(int component, bool descending) - { - if (!descending) multiplier = 1; + public PopulationComparer(int component, bool descending) + { + if (!descending) multiplier = 1; - if (component <= 0 || component > 8) - throw new ArgumentException("The component argument is out of range."); + if (component <= 0 || component > 8) + throw new ArgumentException("The component argument is out of range."); - itemPosition = component; - } + itemPosition = component; + } - public int Compare(object x, object y) - { - Tuple> tX = x as Tuple>; - if (tX == null) - return 0; + public int Compare(object x, object y) + { + Tuple> tX = x as Tuple>; + if (tX == null) + return 0; - Tuple> tY = y as Tuple>; - switch (itemPosition) - { - case 1: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - case 2: - return Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier; - case 3: - return Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier; - case 4: - return Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier; - case 5: - return Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier; - case 6: - return Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier; - case 7: - return Comparer.Default.Compare(tX.Item7, tY.Item7) * multiplier; - case 8: - return Comparer.Default.Compare(tX.Rest.Item1, tY.Rest.Item1) * multiplier; - default: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - } - } + Tuple> tY = y as Tuple>; + return itemPosition switch + { + 1 => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier, + 2 => Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier, + 3 => Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier, + 4 => Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier, + 5 => Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier, + 6 => Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier, + 7 => Comparer.Default.Compare(tX.Item7, tY.Item7) * multiplier, + 8 => Comparer.Default.Compare(tX.Rest.Item1, tY.Rest.Item1) * multiplier, + _ => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier + }; + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - // Create array of octuples with population data for three U.S. - // cities, 1940-2000. - Tuple>[] cities = - { Tuple.Create("Los Angeles", 1504277, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), - Tuple.Create("New York", 7454995, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("Chicago", 3396808, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016), - Tuple.Create("Detroit", 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) }; - // Display array in unsorted order. - Console.WriteLine("In unsorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); - - Array.Sort(cities, new PopulationComparer(2)); - - // Display array in sorted order. - Console.WriteLine("Sorted by population in 1950:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); - - Array.Sort(cities, new PopulationComparer(8)); - - // Display array in sorted order. - Console.WriteLine("Sorted by population in 2000:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - } + public static void Run() + { + // Create array of octuples with population data for three U.S. + // cities, 1940-2000. + Tuple>[] cities = + [ Tuple.Create("Los Angeles", 1504277, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), + Tuple.Create("New York", 7454995, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), + Tuple.Create("Chicago", 3396808, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016), + Tuple.Create("Detroit", 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) ]; + // Display array in unsorted order. + Console.WriteLine("In unsorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); + + Array.Sort(cities, new PopulationComparer(2)); + + // Display array in sorted order. + Console.WriteLine("Sorted by population in 1950:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); + + Array.Sort(cities, new PopulationComparer(8)); + + // Display array in sorted order. + Console.WriteLine("Sorted by population in 2000:"); + foreach (var city in cities) + Console.WriteLine(city); + } } // The example displays the following output: // In unsorted order: @@ -91,16 +82,16 @@ public static void Main() // (New York, 7454995, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3396808, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) // (Detroit, 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) -// +// // Sorted by population in 1950: // (New York, 7454995, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3396808, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) // (Detroit, 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) // (Los Angeles, 1504277, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) -// +// // Sorted by population in 2000: // (New York, 7454995, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Los Angeles, 1504277, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) // (Chicago, 3396808, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) // (Detroit, 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/ToString/tostring1.cs index 00ba6e5cf63..d16e813e7ae 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7,TRest/ToString/tostring1.cs @@ -6,27 +6,20 @@ class Example static void Main(string[] args) { Tuple from1980 = Tuple.Create(1203339, 1027974, 951270); - var from1910 = new Tuple> + var from1910 = new Tuple> (465766, 993078, 1568622, 1623452, 1849568, 1670144, 1511462, from1980); var population = new Tuple>> + Tuple>> ("Detroit", 1860, 45619, 79577, 116340, 205876, 285704, from1910); Console.WriteLine(population.ToString()); } - private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, - ((double)(newPopulation - oldPopulation) / oldPopulation) / 10); - } + private static void ShowPopulationChange(int year, int newPopulation, int oldPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {((double)(newPopulation - oldPopulation) / oldPopulation) / 10,10:P2}"); - private static void ShowPopulation(int year, int newPopulation) - { - Console.WriteLine("{0,5} {1,14:N0} {2,10:P2}", year, newPopulation, "n/a"); - } + private static void ShowPopulation(int year, int newPopulation) => Console.WriteLine($"{year,5} {newPopulation,14:N0} {"n/a",10}"); } // The example displays the following output: -// (Detroit, 1860, 45619, 79577, 116340, 205876, 285704, 465766, 993078, +// (Detroit, 1860, 45619, 79577, 116340, 205876, 285704, 465766, 993078, // 1568622, 1623452, 1849568, 1670144, 1511462, 1203339, 1027974, 951270) // diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Program.cs new file mode 100644 index 00000000000..76c3e934c0b --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsExample1.Run(); +EqualsExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals1.cs index cf24490a8d4..183e82cfabb 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals1.cs @@ -1,38 +1,37 @@ // using System; -public class Example +public class EqualsExample1 { - public static void Main() - { - // Get population data for New York City and Los Angeles, 1960-2000. - Tuple[] urbanPopulations = - { Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), + public static void Run() + { + // Get population data for New York City and Los Angeles, 1960-2000. + Tuple[] urbanPopulations = + [ Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), Tuple.Create("New York City", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) }; - // Compare each tuple with every other tuple for equality. - for (int ctr = 0; ctr <= urbanPopulations.Length - 2; ctr++) - { - var urbanPopulation = urbanPopulations[ctr]; - Console.WriteLine(urbanPopulation.ToString() + " = "); - for (int innerCtr = ctr +1; innerCtr <= urbanPopulations.Length - 1; innerCtr++) - Console.WriteLine(" {0}: {1}", urbanPopulations[innerCtr], - urbanPopulation.Equals(urbanPopulations[innerCtr])); - Console.WriteLine(); - } - } + Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) ]; + // Compare each tuple with every other tuple for equality. + for (int ctr = 0; ctr <= urbanPopulations.Length - 2; ctr++) + { + var urbanPopulation = urbanPopulations[ctr]; + Console.WriteLine(urbanPopulation + " = "); + for (int innerCtr = ctr + 1; innerCtr <= urbanPopulations.Length - 1; innerCtr++) + Console.WriteLine($" {urbanPopulations[innerCtr]}: {urbanPopulation.Equals(urbanPopulations[innerCtr])}"); + Console.WriteLine(); + } + } } // The example displays the following output: // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) = // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820): False // (New York City, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278): False // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278): True -// +// // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) = // (New York City, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278): False // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278): False -// +// // (New York City, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) = // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals2.cs index 9bacff3b868..64e4aa75c97 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Equals/equals2.cs @@ -4,61 +4,58 @@ public class RateComparer : IEqualityComparer { - private int argument = 0; + private int argument = 0; - public new bool Equals(object x, object y) - { - argument++; - if (argument == 1) return true; + public new bool Equals(object x, object y) + { + argument++; + if (argument == 1) return true; - double fx, fy; - if (x is Double || x is Single) - { - fx = (double) x; - fy = (double) y; + double fx, fy; + if (x is double || x is float) + { + fx = (double)x; + fy = (double)y; return Math.Round(fx * 1000).Equals(Math.Round(fy * 1000)); - } - else - { - return x.Equals(y); - } - } + } + else + { + return x.Equals(y); + } + } - public int GetHashCode(object obj) - { - if (obj is Single || obj is Double) - return Math.Round(((double) obj) * 1000).GetHashCode(); - else - return obj.GetHashCode(); - } + public int GetHashCode(object obj) + { + if (obj is float || obj is double) + return Math.Round(((double)obj) * 1000).GetHashCode(); + else + return obj.GetHashCode(); + } } -public class Example +public class EqualsExample2 { - public static void Main() - { - var rate1 = Tuple.Create("New York", -.013934, .014505, - -.1042733, .0354833, .093644, .0290792); - var rate2 = Tuple.Create("Unknown City", -.013934, .014505, - -.1042733, .0354833, .093644, .0290792); - var rate3 = Tuple.Create("Unknown City", -.013934, .014505, - -.1042733, .0354833, .093644, .029079); - var rate4 = Tuple.Create("San Francisco", -.0451934, -.0332858, - -.0512803, .0662544, .0728964, .0491912); - IStructuralEquatable eq = rate1; - // Compare first tuple with remaining two tuples. - Console.WriteLine("{0} = ", rate1.ToString()); - Console.WriteLine(" {0} : {1}", rate2, - eq.Equals(rate2, new RateComparer())); - Console.WriteLine(" {0} : {1}", rate3, - eq.Equals(rate3, new RateComparer())); - Console.WriteLine(" {0} : {1}", rate4, - eq.Equals(rate4, new RateComparer())); - } + public static void Run() + { + var rate1 = Tuple.Create("New York", -.013934, .014505, + -.1042733, .0354833, .093644, .0290792); + var rate2 = Tuple.Create("Unknown City", -.013934, .014505, + -.1042733, .0354833, .093644, .0290792); + var rate3 = Tuple.Create("Unknown City", -.013934, .014505, + -.1042733, .0354833, .093644, .029079); + var rate4 = Tuple.Create("San Francisco", -.0451934, -.0332858, + -.0512803, .0662544, .0728964, .0491912); + IStructuralEquatable eq = rate1; + // Compare first tuple with remaining two tuples. + Console.WriteLine($"{rate1} = "); + Console.WriteLine($" {rate2} : {eq.Equals(rate2, new RateComparer())}"); + Console.WriteLine($" {rate3} : {eq.Equals(rate3, new RateComparer())}"); + Console.WriteLine($" {rate4} : {eq.Equals(rate4, new RateComparer())}"); + } } // The example displays the following output: // (New York, -0.013934, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.0290792) = // (Unknown City, -0.013934, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.0290792) : True // (Unknown City, -0.013934, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.029079) : True // (San Francisco, -0.0451934, -0.0332858, -0.0512803, 0.0662544, 0.0728964, 0.0491912) : False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Item1/item1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Item1/item1.cs index e9ec3039ced..6e957c5fab3 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Item1/item1.cs @@ -1,31 +1,27 @@ // using System; -using System.Text.RegularExpressions; + public class Class1 { - public static void Main() - { - // Create tuples containing population data for New York, Chicago, - // and Los Angeles, 1960-2000. - Tuple[] cities = - { Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), + public static void Main() + { + // Create tuples containing population data for New York, Chicago, + // and Los Angeles, 1960-2000. + Tuple[] cities = + [ Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), - Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) }; + Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) ]; - // Display tuple data in table. - string header = "Population in"; - Console.WriteLine("{0,-12} {1,66}", - "City", new String('-',(66-header.Length)/2) + header + - new String('-', (66-header.Length)/2)); - Console.WriteLine("{0,24}{1,11}{2,11}{3,11}{4,11}{5,11}\n", - "1950", "1960", "1970", "1980", "1990", "2000"); + // Display tuple data in table. + string header = "Population in"; + Console.WriteLine($"{"City",-12} {new string('-', (66 - header.Length) / 2) + header + + new string('-', (66 - header.Length) / 2),66}"); + Console.WriteLine($"{"1950",24}{"1960",11}{"1970",11}{"1980",11}{"1990",11}{"2000",11}\n"); - foreach (var city in cities) - Console.WriteLine("{0,-12} {1,11:N0}{2,11:N0}{3,11:N0}{4,11:N0}{5,11:N0}{6,11:N0}", - city.Item1, city.Item2, city.Item3, city.Item4, - city.Item5, city.Item6, city.Item7); - } + foreach (var city in cities) + Console.WriteLine($"{city.Item1,-12} {city.Item2,11:N0}{city.Item3,11:N0}{city.Item4,11:N0}{city.Item5,11:N0}{city.Item6,11:N0}{city.Item7,11:N0}"); + } } // The example displays the following output: // City --------------------------Population in-------------------------- @@ -34,4 +30,4 @@ public static void Main() // New York 7,891,957 7,781,984 7,894,862 7,071,639 7,322,564 8,008,278 // Los Angeles 1,970,358 2,479,015 2,816,061 2,966,850 3,485,398 3,694,820 // Chicago 3,620,962 3,550,904 3,366,957 3,005,072 2,783,726 2,896,016 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Overview/example1.cs index 4e81449329c..9f206853fc2 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/Overview/example1.cs @@ -3,41 +3,41 @@ public class Example { - public static void Main() - { - // Get population data for New York City, 1950-2000. - var population = Tuple.Create("New York", 7891957, 7781984, - 7894862, 7071639, 7322564, 8008278); - var rate = ComputePopulationChange(population); - // Display results. - Console.WriteLine("Population Change, {0}, 1950-2000\n", population.Item1); - Console.WriteLine("Year {0,10} {1,9}", "Population", "Annual Rate"); - Console.WriteLine("1950 {0,10:N0} {1,11}", population.Item2, "NA"); - Console.WriteLine("1960 {0,10:N0} {1,11:P2}", population.Item3, rate.Item2/10); - Console.WriteLine("1970 {0,10:N0} {1,11:P2}", population.Item4, rate.Item3/10); - Console.WriteLine("1980 {0,10:N0} {1,11:P2}", population.Item5, rate.Item4/10); - Console.WriteLine("1990 {0,10:N0} {1,11:P2}", population.Item6, rate.Item5/10); - Console.WriteLine("2000 {0,10:N0} {1,11:P2}", population.Item7, rate.Item6/10); - Console.WriteLine("1950-2000 {0,10:N0} {1,11:P2}", "", rate.Item7/50); - } + public static void Main() + { + // Get population data for New York City, 1950-2000. + var population = Tuple.Create("New York", 7891957, 7781984, + 7894862, 7071639, 7322564, 8008278); + var rate = ComputePopulationChange(population); + // Display results. + Console.WriteLine($"Population Change, {population.Item1}, 1950-2000\n"); + Console.WriteLine($"Year {"Population",10} {"Annual Rate",9}"); + Console.WriteLine($"1950 {population.Item2,10:N0} {"NA",11}"); + Console.WriteLine($"1960 {population.Item3,10:N0} {rate.Item2 / 10,11:P2}"); + Console.WriteLine($"1970 {population.Item4,10:N0} {rate.Item3 / 10,11:P2}"); + Console.WriteLine($"1980 {population.Item5,10:N0} {rate.Item4 / 10,11:P2}"); + Console.WriteLine($"1990 {population.Item6,10:N0} {rate.Item5 / 10,11:P2}"); + Console.WriteLine($"2000 {population.Item7,10:N0} {rate.Item6 / 10,11:P2}"); + Console.WriteLine($"1950-2000 {"",10:N0} {rate.Item7 / 50,11:P2}"); + } - private static Tuple - ComputePopulationChange( - Tuple data) - { - var rate = Tuple.Create(data.Item1, - (double)(data.Item3 - data.Item2)/data.Item2, - (double)(data.Item4 - data.Item3)/data.Item3, - (double)(data.Item5 - data.Item4)/data.Item4, - (double)(data.Item6 - data.Item5)/data.Item5, - (double)(data.Item7 - data.Item6)/data.Item6, - (double)(data.Item7 - data.Item2)/data.Item2 ); - return rate; - } + private static Tuple + ComputePopulationChange( + Tuple data) + { + var rate = Tuple.Create(data.Item1, + (double)(data.Item3 - data.Item2) / data.Item2, + (double)(data.Item4 - data.Item3) / data.Item3, + (double)(data.Item5 - data.Item4) / data.Item4, + (double)(data.Item6 - data.Item5) / data.Item5, + (double)(data.Item7 - data.Item6) / data.Item6, + (double)(data.Item7 - data.Item2) / data.Item2); + return rate; + } } // The example displays the following output: // Population Change, New York, 1950-2000 -// +// // Year Population Annual Rate // 1950 7,891,957 NA // 1960 7,781,984 -0.14 % @@ -46,4 +46,4 @@ private static Tuple // 1990 7,322,564 0.35 % // 2000 8,008,278 0.94 % // 1950-2000 0.03 % -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index 231499e88ac..c0fd73593c4 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,40 +1,40 @@ // using System; -public class Example +public class CompareToExample1 { - public static void Main() - { - // Create array of sextuple with population data for three U.S. - // cities, 1950-2000. - Tuple[] cities = - { Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), - Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) }; - - // Display array in unsorted order. - Console.WriteLine("In unsorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); + public static void Run() + { + // Create array of sextuple with population data for three U.S. + // cities, 1950-2000. + Tuple[] cities = + [ Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), + Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), + Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) ]; - Console.WriteLine(); - - Array.Sort(cities); - - // Display array in sorted order. - Console.WriteLine("In sorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - } + // Display array in unsorted order. + Console.WriteLine("In unsorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + + Console.WriteLine(); + + Array.Sort(cities); + + // Display array in sorted order. + Console.WriteLine("In sorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + } } // The example displays the following output: // In unsorted order: // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) -// +// // In sorted order: // (Chicago, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 3c9c896baf8..00dd33ca788 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,99 +5,91 @@ public class PopulationComparer : IComparer { - private int itemPosition; - private int multiplier = -1; + private int itemPosition; + private int multiplier = -1; - public PopulationComparer(int component) : this(component, true) - { } + public PopulationComparer(int component) : this(component, true) + { } - public PopulationComparer(int component, bool descending) - { - if (!descending) multiplier = 1; + public PopulationComparer(int component, bool descending) + { + if (!descending) multiplier = 1; - if (component <= 0 || component > 7) - throw new ArgumentException("The component argument is out of range."); + if (component <= 0 || component > 7) + throw new ArgumentException("The component argument is out of range."); - itemPosition = component; - } + itemPosition = component; + } - public int Compare(object x, object y) - { - Tuple tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - Tuple tY = y as Tuple; - switch (itemPosition) - { - case 1: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - case 2: - return Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier; - case 3: - return Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier; - case 4: - return Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier; - case 5: - return Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier; - case 6: - return Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier; - case 7: - return Comparer.Default.Compare(tX.Item7, tY.Item7) * multiplier; - default: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - } - } - } + public int Compare(object x, object y) + { + Tuple tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + Tuple tY = y as Tuple; + return itemPosition switch + { + 1 => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier, + 2 => Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier, + 3 => Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier, + 4 => Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier, + 5 => Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier, + 6 => Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier, + 7 => Comparer.Default.Compare(tX.Item7, tY.Item7) * multiplier, + _ => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier + }; + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - // Create array of sextuple with population data for three U.S. - // cities, 1960-2000. - Tuple[] cities = - { Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), + public static void Run() + { + // Create array of sextuple with population data for three U.S. + // cities, 1960-2000. + Tuple[] cities = + [ Tuple.Create("Los Angeles", 1970358, 2479015, 2816061, 2966850, 3485398, 3694820), Tuple.Create("New York", 7891957, 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) }; + Tuple.Create("Chicago", 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) ]; - // Display array in unsorted order. - Console.WriteLine("In unsorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); + // Display array in unsorted order. + Console.WriteLine("In unsorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); - Array.Sort(cities, new PopulationComparer(3)); + Array.Sort(cities, new PopulationComparer(3)); - // Display array in sorted order. - Console.WriteLine("Sorted by population in 1960:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); + // Display array in sorted order. + Console.WriteLine("Sorted by population in 1960:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); - Array.Sort(cities, new PopulationComparer(6)); + Array.Sort(cities, new PopulationComparer(6)); - // Display array in sorted order. - Console.WriteLine("Sorted by population in 1990:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - } + // Display array in sorted order. + Console.WriteLine("Sorted by population in 1990:"); + foreach (var city in cities) + Console.WriteLine(city); + } } // The example displays the following output: // In unsorted order: // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) -// +// // Sorted by population in 1960: // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3620962, 3550904, 3366957, 3005072, 2783726, 2896016) // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) -// +// // Sorted by population in 1990: // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) // (Los Angeles, 1970358, 2479015, 2816061, 2966850, 3485398, 3694820) diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/ToString/tostring1.cs index 82c8f897b7e..6d5a9ad88cc 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6,T7/ToString/tostring1.cs @@ -3,13 +3,13 @@ public class Example { - public static void Main() - { - // Get population data for New York City, 1960-2000. - var population = Tuple.Create("New York", 7891957, 7781984, - 7894862, 7071639, 7322564, 8008278); - Console.WriteLine(population.ToString()); - } + public static void Main() + { + // Get population data for New York City, 1960-2000. + var population = Tuple.Create("New York", 7891957, 7781984, + 7894862, 7071639, 7322564, 8008278); + Console.WriteLine(population.ToString()); + } } // The example displays the following output: // (New York, 7891957, 7781984, 7894862, 7071639, 7322564, 8008278) diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Program.cs new file mode 100644 index 00000000000..76c3e934c0b --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsExample1.Run(); +EqualsExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals1.cs index 38c47c0953b..14b70dcd1f5 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals1.cs @@ -1,38 +1,37 @@ // using System; -public class Example +public class EqualsExample1 { - public static void Main() - { - // Get population data for New York City and Los Angeles, 1960-2000. - Tuple[] urbanPopulations = - { Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), + public static void Run() + { + // Get population data for New York City and Los Angeles, 1960-2000. + Tuple[] urbanPopulations = + [ Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), Tuple.Create("New York City", 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278) }; - // Compare each tuple with every other tuple for equality. - for (int ctr = 0; ctr <= urbanPopulations.Length - 2; ctr++) - { - var urbanPopulation = urbanPopulations[ctr]; - Console.WriteLine(urbanPopulation.ToString() + " = "); - for (int innerCtr = ctr +1; innerCtr <= urbanPopulations.Length - 1; innerCtr++) - Console.WriteLine(" {0}: {1}", urbanPopulations[innerCtr], - urbanPopulation.Equals(urbanPopulations[innerCtr])); - Console.WriteLine(); - } - } + Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278) ]; + // Compare each tuple with every other tuple for equality. + for (int ctr = 0; ctr <= urbanPopulations.Length - 2; ctr++) + { + var urbanPopulation = urbanPopulations[ctr]; + Console.WriteLine(urbanPopulation + " = "); + for (int innerCtr = ctr + 1; innerCtr <= urbanPopulations.Length - 1; innerCtr++) + Console.WriteLine($" {urbanPopulations[innerCtr]}: {urbanPopulation.Equals(urbanPopulations[innerCtr])}"); + Console.WriteLine(); + } + } } // The example displays the following output: // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) = // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820): False // (New York City, 7781984, 7894862, 7071639, 7322564, 8008278): False // (New York, 7781984, 7894862, 7071639, 7322564, 8008278): True -// +// // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) = // (New York City, 7781984, 7894862, 7071639, 7322564, 8008278): False // (New York, 7781984, 7894862, 7071639, 7322564, 8008278): False -// +// // (New York City, 7781984, 7894862, 7071639, 7322564, 8008278) = // (New York, 7781984, 7894862, 7071639, 7322564, 8008278): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals2.cs index 1714585fed3..af2fec23ed5 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Equals/equals2.cs @@ -4,61 +4,58 @@ public class RateComparer : IEqualityComparer { - private int argument = 0; + private int argument = 0; - public new bool Equals(object x, object y) - { - argument++; - if (argument == 1) return true; + public new bool Equals(object x, object y) + { + argument++; + if (argument == 1) return true; - double fx, fy; - if (x is Double || x is Single) - { - fx = (double) x; - fy = (double) y; + double fx, fy; + if (x is double || x is float) + { + fx = (double)x; + fy = (double)y; return Math.Round(fx * 1000).Equals(Math.Round(fy * 1000)); - } - else - { - return x.Equals(y); - } - } - - public int GetHashCode(object obj) - { - if (obj is Single || obj is Double) - return Math.Round(((double) obj) * 1000).GetHashCode(); - else - return obj.GetHashCode(); - } + } + else + { + return x.Equals(y); + } + } + + public int GetHashCode(object obj) + { + if (obj is float || obj is double) + return Math.Round(((double)obj) * 1000).GetHashCode(); + else + return obj.GetHashCode(); + } } -public class Example +public class EqualsExample2 { - public static void Main() - { - var rate1 = Tuple.Create("New York", .014505, -.1042733, - .0354833, .093644, .0290792); - var rate2 = Tuple.Create("Unknown City", .014505, -.1042733, - .0354833, .093644, .0290792); - var rate3 = Tuple.Create("Unknown City", .014505, -.1042733, - .0354833, .093644, .029079); - var rate4 = Tuple.Create("San Francisco", -.0332858, -.0512803, - .0662544, .0728964, .0491912); - IStructuralEquatable eq = rate1; - // Compare first tuple with remaining two tuples. - Console.WriteLine("{0} = ", rate1.ToString()); - Console.WriteLine(" {0} : {1}", rate2, - eq.Equals(rate2, new RateComparer())); - Console.WriteLine(" {0} : {1}", rate3, - eq.Equals(rate3, new RateComparer())); - Console.WriteLine(" {0} : {1}", rate4, - eq.Equals(rate4, new RateComparer())); - } + public static void Run() + { + var rate1 = Tuple.Create("New York", .014505, -.1042733, + .0354833, .093644, .0290792); + var rate2 = Tuple.Create("Unknown City", .014505, -.1042733, + .0354833, .093644, .0290792); + var rate3 = Tuple.Create("Unknown City", .014505, -.1042733, + .0354833, .093644, .029079); + var rate4 = Tuple.Create("San Francisco", -.0332858, -.0512803, + .0662544, .0728964, .0491912); + IStructuralEquatable eq = rate1; + // Compare first tuple with remaining two tuples. + Console.WriteLine($"{rate1} = "); + Console.WriteLine($" {rate2} : {eq.Equals(rate2, new RateComparer())}"); + Console.WriteLine($" {rate3} : {eq.Equals(rate3, new RateComparer())}"); + Console.WriteLine($" {rate4} : {eq.Equals(rate4, new RateComparer())}"); + } } // The example displays the following output: // (New York, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.0290792) = // (Unknown City, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.0290792) : True // (Unknown City, 0.014505, -0.1042733, 0.0354833, 0.093644, 0.029079) : True // (San Francisco, -0.0332858, -0.0512803, 0.0662544, 0.0728964, 0.0491912) : False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Item1/item1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Item1/item1.cs index 39873aa49e6..4cf8e038e53 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Item1/item1.cs @@ -1,37 +1,33 @@ // using System; -using System.Text.RegularExpressions; + public class Class1 { - public static void Main() - { - // Create tuples containing population data for New York, Chicago, - // and Los Angeles, 1960-2000. - Tuple[] cities = - { Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), + public static void Main() + { + // Create tuples containing population data for New York, Chicago, + // and Los Angeles, 1960-2000. + Tuple[] cities = + [ Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), - Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) }; + Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) ]; - // Display tuple data in table. - string header = "Population in"; - Console.WriteLine("{0,-12} {1,60}", - "City", new String('-',(60-header.Length)/2) + header + - new String('-', (60-header.Length)/2)); - Console.WriteLine("{0,25}{1,12}{2,12}{3,12}{4,12}\n", - "1960", "1970", "1980", "1990", "2000"); + // Display tuple data in table. + string header = "Population in"; + Console.WriteLine($"{"City",-12} {new string('-', (60 - header.Length) / 2) + header + + new string('-', (60 - header.Length) / 2),60}"); + Console.WriteLine($"{"1960",25}{"1970",12}{"1980",12}{"1990",12}{"2000",12}\n"); - foreach (var city in cities) - Console.WriteLine("{0,-12} {1,12:N0}{2,12:N0}{3,12:N0}{4,12:N0}{5,12:N0}", - city.Item1, city.Item2, city.Item3, city.Item4, - city.Item5, city.Item6); - } + foreach (var city in cities) + Console.WriteLine($"{city.Item1,-12} {city.Item2,12:N0}{city.Item3,12:N0}{city.Item4,12:N0}{city.Item5,12:N0}{city.Item6,12:N0}"); + } } // The example displays the following output: // City -----------------------Population in----------------------- // 1960 1970 1980 1990 2000 -// +// // New York 7,781,984 7,894,862 7,071,639 7,322,564 8,008,278 // Los Angeles 2,479,015 2,816,061 2,966,850 3,485,398 3,694,820 // Chicago 3,550,904 3,366,957 3,005,072 2,783,726 2,896,016 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Overview/example1.cs index 6bf08fde43e..a09e91f460a 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/Overview/example1.cs @@ -3,38 +3,38 @@ public class Example { - public static void Main() - { - // Get population data for New York City, 1960-2000. - var population = - Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278); - var rate = ComputePopulationChange(population); - // Display results. - Console.WriteLine("Population Change, {0}, 1960-2000\n", population.Item1); - Console.WriteLine("Year {0,10} {1,9}", "Population", "Annual Rate"); - Console.WriteLine("1960 {0,10:N0} {1,11}", population.Item2, "NA"); - Console.WriteLine("1970 {0,10:N0} {1,11:P2}", population.Item3, rate.Item2/10); - Console.WriteLine("1980 {0,10:N0} {1,11:P2}", population.Item4, rate.Item3/10); - Console.WriteLine("1990 {0,10:N0} {1,11:P2}", population.Item5, rate.Item4/10); - Console.WriteLine("2000 {0,10:N0} {1,11:P2}", population.Item6, rate.Item5/10); - Console.WriteLine("1960-2000 {0,10:N0} {1,11:P2}", "", rate.Item6/50); - } + public static void Main() + { + // Get population data for New York City, 1960-2000. + var population = + Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278); + var rate = ComputePopulationChange(population); + // Display results. + Console.WriteLine($"Population Change, {population.Item1}, 1960-2000\n"); + Console.WriteLine($"Year {"Population",10} {"Annual Rate",9}"); + Console.WriteLine($"1960 {population.Item2,10:N0} {"NA",11}"); + Console.WriteLine($"1970 {population.Item3,10:N0} {rate.Item2 / 10,11:P2}"); + Console.WriteLine($"1980 {population.Item4,10:N0} {rate.Item3 / 10,11:P2}"); + Console.WriteLine($"1990 {population.Item5,10:N0} {rate.Item4 / 10,11:P2}"); + Console.WriteLine($"2000 {population.Item6,10:N0} {rate.Item5 / 10,11:P2}"); + Console.WriteLine($"1960-2000 {"",10:N0} {rate.Item6 / 50,11:P2}"); + } - private static Tuple ComputePopulationChange( - Tuple data) - { - var rate = Tuple.Create(data.Item1, - (double)(data.Item3 - data.Item2)/data.Item2, - (double)(data.Item4 - data.Item3)/data.Item3, - (double)(data.Item5 - data.Item4)/data.Item4, - (double)(data.Item6 - data.Item5)/data.Item5, - (double)(data.Item6 - data.Item2)/data.Item2 ); - return rate; - } + private static Tuple ComputePopulationChange( + Tuple data) + { + var rate = Tuple.Create(data.Item1, + (double)(data.Item3 - data.Item2) / data.Item2, + (double)(data.Item4 - data.Item3) / data.Item3, + (double)(data.Item5 - data.Item4) / data.Item4, + (double)(data.Item6 - data.Item5) / data.Item5, + (double)(data.Item6 - data.Item2) / data.Item2); + return rate; + } } // The example displays the following output: // Population Change, New York, 1960-2000 -// +// // Year Population Annual Rate // 1960 7,781,984 NA // 1970 7,894,862 0.15 % @@ -42,4 +42,4 @@ private static Tuple ComputePopu // 1990 7,322,564 0.35 % // 2000 8,008,278 0.94 % // 1960-2000 0.06 % -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index a52c2493602..c71795a8bdf 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,40 +1,40 @@ // using System; -public class Example +public class CompareToExample1 { - public static void Main() - { - // Create array of sextuple with population data for three U.S. - // cities, 1960-2000. - Tuple[] cities = - { Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), - Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) }; - - // Display array in unsorted order. - Console.WriteLine("In unsorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); + public static void Run() + { + // Create array of sextuple with population data for three U.S. + // cities, 1960-2000. + Tuple[] cities = + [ Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), + Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), + Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) ]; - Console.WriteLine(); - - Array.Sort(cities); - - // Display array in sorted order. - Console.WriteLine("In sorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - } + // Display array in unsorted order. + Console.WriteLine("In unsorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + + Console.WriteLine(); + + Array.Sort(cities); + + // Display array in sorted order. + Console.WriteLine("In sorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + } } // The example displays the following output: // In unsorted order: // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3550904, 3366957, 3005072, 2783726, 2896016) -// +// // In sorted order: // (Chicago, 3550904, 3366957, 3005072, 2783726, 2896016) // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 8bd3fa29ccf..6808606184a 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,97 +5,90 @@ public class PopulationComparer : IComparer { - private int itemPosition; - private int multiplier = -1; + private int itemPosition; + private int multiplier = -1; - public PopulationComparer(int component) : this(component, true) - { } + public PopulationComparer(int component) : this(component, true) + { } - public PopulationComparer(int component, bool descending) - { - if (!descending) multiplier = 1; + public PopulationComparer(int component, bool descending) + { + if (!descending) multiplier = 1; - if (component <= 0 || component > 6) - throw new ArgumentException("The component argument is out of range."); + if (component <= 0 || component > 6) + throw new ArgumentException("The component argument is out of range."); - itemPosition = component; - } + itemPosition = component; + } - public int Compare(object x, object y) - { - var tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - var tY = y as Tuple; - switch (itemPosition) - { - case 1: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - case 2: - return Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier; - case 3: - return Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier; - case 4: - return Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier; - case 5: - return Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier; - case 6: - return Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier; - default: - return Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier; - } - } - } + public int Compare(object x, object y) + { + var tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + var tY = y as Tuple; + return itemPosition switch + { + 1 => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier, + 2 => Comparer.Default.Compare(tX.Item2, tY.Item2) * multiplier, + 3 => Comparer.Default.Compare(tX.Item3, tY.Item3) * multiplier, + 4 => Comparer.Default.Compare(tX.Item4, tY.Item4) * multiplier, + 5 => Comparer.Default.Compare(tX.Item5, tY.Item5) * multiplier, + 6 => Comparer.Default.Compare(tX.Item6, tY.Item6) * multiplier, + _ => Comparer.Default.Compare(tX.Item1, tY.Item1) * multiplier + }; + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - // Create array of sextuple with population data for three U.S. - // cities, 1960-2000. - Tuple[] cities = - { Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), + public static void Run() + { + // Create array of sextuple with population data for three U.S. + // cities, 1960-2000. + Tuple[] cities = + [ Tuple.Create("Los Angeles", 2479015, 2816061, 2966850, 3485398, 3694820), Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278), - Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) }; + Tuple.Create("Chicago", 3550904, 3366957, 3005072, 2783726, 2896016) ]; - // Display array in unsorted order. - Console.WriteLine("In unsorted order:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); + // Display array in unsorted order. + Console.WriteLine("In unsorted order:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); - Array.Sort(cities, new PopulationComparer(3)); + Array.Sort(cities, new PopulationComparer(3)); - // Display array in sorted order. - Console.WriteLine("Sorted by population in 1970:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - Console.WriteLine(); + // Display array in sorted order. + Console.WriteLine("Sorted by population in 1970:"); + foreach (var city in cities) + Console.WriteLine(city); + Console.WriteLine(); - Array.Sort(cities, new PopulationComparer(6)); + Array.Sort(cities, new PopulationComparer(6)); - // Display array in sorted order. - Console.WriteLine("Sorted by population in 2000:"); - foreach (var city in cities) - Console.WriteLine(city.ToString()); - } + // Display array in sorted order. + Console.WriteLine("Sorted by population in 2000:"); + foreach (var city in cities) + Console.WriteLine(city); + } } // The example displays the following output: // In unsorted order: // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3550904, 3366957, 3005072, 2783726, 2896016) -// +// // Sorted by population in 1970: // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) // (Chicago, 3550904, 3366957, 3005072, 2783726, 2896016) // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) -// +// // Sorted by population in 2000: // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) // (Los Angeles, 2479015, 2816061, 2966850, 3485398, 3694820) diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/ToString/tostring1.cs index 4e4d4248140..d8f9ed2e95b 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5,T6/ToString/tostring1.cs @@ -3,13 +3,13 @@ public class Example { - public static void Main() - { - // Get population data for New York City, 1960-2000. - var population = Tuple.Create("New York", 7781984, 7894862, - 7071639, 7322564, 8008278); - Console.WriteLine(population.ToString()); - } + public static void Main() + { + // Get population data for New York City, 1960-2000. + var population = Tuple.Create("New York", 7781984, 7894862, + 7071639, 7322564, 8008278); + Console.WriteLine(population.ToString()); + } } // The example displays the following output: // (New York, 7781984, 7894862, 7071639, 7322564, 8008278) diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals1.cs index cb0a1aa1032..210a0263836 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals1.cs @@ -3,25 +3,24 @@ public class Class1 { - public static void Main() - { - Tuple[] temperatureInfos = - { Tuple.Create(2, 97.9, 97.8, 98.0, 98.2), - Tuple.Create(1, 98.6, 98.8, 98.8, 99.0), + public static void Main() + { + Tuple[] temperatureInfos = + [ Tuple.Create(2, 97.9, 97.8, 98.0, 98.2), + Tuple.Create(1, 98.6, 98.8, 98.8, 99.0), Tuple.Create(2, 98.6, 98.6, 98.6, 98.4), Tuple.Create(1, 98.4, 98.6, 99.0, 99.2), Tuple.Create(2, 98.6, 98.6, 98.6, 98.4), - Tuple.Create(1, 98.6, 98.8, 98.8, 99.0) }; - // Compare each item with every other item for equality. - for (int ctr = 0; ctr < temperatureInfos.Length; ctr++) - { - var temperatureInfo = temperatureInfos[ctr]; - for (int ctr2 = ctr + 1; ctr2 < temperatureInfos.Length; ctr2++) - Console.WriteLine("{0} = {1}: {2}", temperatureInfo, temperatureInfos[ctr2], - temperatureInfo.Equals(temperatureInfos[ctr2])); - Console.WriteLine(); - } - } + Tuple.Create(1, 98.6, 98.8, 98.8, 99.0) ]; + // Compare each item with every other item for equality. + for (int ctr = 0; ctr < temperatureInfos.Length; ctr++) + { + var temperatureInfo = temperatureInfos[ctr]; + for (int ctr2 = ctr + 1; ctr2 < temperatureInfos.Length; ctr2++) + Console.WriteLine($"{temperatureInfo} = {temperatureInfos[ctr2]}: {temperatureInfo.Equals(temperatureInfos[ctr2])}"); + Console.WriteLine(); + } + } } // The example displays the following output: // (2, 97.9, 97.8, 98, 98.2) = (1, 98.6, 98.8, 98.8, 99): False @@ -29,18 +28,18 @@ public static void Main() // (2, 97.9, 97.8, 98, 98.2) = (1, 98.4, 98.6, 99, 99.2): False // (2, 97.9, 97.8, 98, 98.2) = (2, 98.6, 98.6, 98.6, 98.4): False // (2, 97.9, 97.8, 98, 98.2) = (1, 98.6, 98.8, 98.8, 99): False -// +// // (1, 98.6, 98.8, 98.8, 99) = (2, 98.6, 98.6, 98.6, 98.4): False // (1, 98.6, 98.8, 98.8, 99) = (1, 98.4, 98.6, 99, 99.2): False // (1, 98.6, 98.8, 98.8, 99) = (2, 98.6, 98.6, 98.6, 98.4): False // (1, 98.6, 98.8, 98.8, 99) = (1, 98.6, 98.8, 98.8, 99): True -// +// // (2, 98.6, 98.6, 98.6, 98.4) = (1, 98.4, 98.6, 99, 99.2): False // (2, 98.6, 98.6, 98.6, 98.4) = (2, 98.6, 98.6, 98.6, 98.4): True // (2, 98.6, 98.6, 98.6, 98.4) = (1, 98.6, 98.8, 98.8, 99): False -// +// // (1, 98.4, 98.6, 99, 99.2) = (2, 98.6, 98.6, 98.6, 98.4): False // (1, 98.4, 98.6, 99, 99.2) = (1, 98.6, 98.8, 98.8, 99): False -// +// // (2, 98.6, 98.6, 98.6, 98.4) = (1, 98.6, 98.8, 98.8, 99): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals2.cs index 210eae5e9b4..99b8ce06a56 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Equals/equals2.cs @@ -4,63 +4,59 @@ public class DoubleComparer : IEqualityComparer { - private double difference; - private int argument = 0; - - public DoubleComparer(double difference) - { - this.difference = difference; - } - - new public bool Equals(object x, object y) - { - argument += 1; - - // Return true for Item1. - if (argument == 1) return true; + private double difference; + private int argument = 0; - double d1 = (double) x; - double d2 = (double) y; + public DoubleComparer(double difference) => this.difference = difference; - if (d1 - d2 < d1 * difference) - return true; - else - return false; - } - - public int GetHashCode(object obj) - { - if (obj is T1) - return ((T1) obj).GetHashCode(); - else if (obj is T2) - return ((T2) obj).GetHashCode(); - else if (obj is T3) - return ((T3) obj).GetHashCode(); - else if (obj is T4) - return ((T4) obj).GetHashCode(); - else - return ((T5) obj).GetHashCode(); - } + new public bool Equals(object x, object y) + { + argument += 1; + + // Return true for Item1. + if (argument == 1) return true; + + double d1 = (double)x; + double d2 = (double)y; + + if (d1 - d2 < d1 * difference) + return true; + else + return false; + } + + public int GetHashCode(object obj) + { + if (obj is T1) + return ((T1)obj).GetHashCode(); + else if (obj is T2) + return ((T2)obj).GetHashCode(); + else if (obj is T3) + return ((T3)obj).GetHashCode(); + else if (obj is T4) + return ((T4)obj).GetHashCode(); + else + return ((T5)obj).GetHashCode(); + } } public class Example { - public static void Main() - { - var value1 = GetValues(1); - var value2 = GetValues(2); - IStructuralEquatable iValue1 = value1; - Console.WriteLine("{0} =\n{1} :\n{2}", value1, value2, - iValue1.Equals(value2, - new DoubleComparer(.01))); - } + public static void Main() + { + var value1 = GetValues(1); + var value2 = GetValues(2); + IStructuralEquatable iValue1 = value1; + Console.WriteLine($"{value1} =\n{value2} :\n{iValue1.Equals(value2, + new DoubleComparer(.01))}"); + } - private static Tuple GetValues(int ctr) - { - // Generate four random numbers between 0 and 1 - Random rnd = new Random((int)DateTime.Now.Ticks >> 32 >> ctr); - return Tuple.Create(ctr, rnd.NextDouble(), rnd.NextDouble(), - rnd.NextDouble(), rnd.NextDouble()); - } + private static Tuple GetValues(int ctr) + { + // Generate four random numbers between 0 and 1 + Random rnd = new((int)DateTime.Now.Ticks >> 32 >> ctr); + return Tuple.Create(ctr, rnd.NextDouble(), rnd.NextDouble(), + rnd.NextDouble(), rnd.NextDouble()); + } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Item1/item1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Item1/item1.cs index b8c1131213d..5916cb1bdb4 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Item1/item1.cs @@ -3,28 +3,24 @@ public class Example { - public static void Main() - { - // Define array of tuples reflecting population change by state, 1990-2000. - Tuple[] statesData = - { Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), - Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), - Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) }; + public static void Main() + { + // Define array of tuples reflecting population change by state, 1990-2000. + Tuple[] statesData = + [ Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), + Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), + Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) ]; - // Display the items of each tuple - Console.WriteLine("{0,-12}{1,18}{2,18}{3,15}{4,12}\n", "State", - "Population 1990", "Population 2000", "Change", - "% Change"); - foreach(Tuple stateData in statesData) - Console.WriteLine("{0,-12}{1,18:N0}{2,18:N0}{3,15:N0}{4,12:P1}", - stateData.Item1, stateData.Item2, - stateData.Item3, stateData.Item4, stateData.Item5/100); - } + // Display the items of each tuple + Console.WriteLine($"{"State",-12}{"Population 1990",18}{"Population 2000",18}{"Change",15}{"% Change",12}\n"); + foreach (Tuple stateData in statesData) + Console.WriteLine($"{stateData.Item1,-12}{stateData.Item2,18:N0}{stateData.Item3,18:N0}{stateData.Item4,15:N0}{stateData.Item5 / 100,12:P1}"); + } } // The example displays the following output: // State Population 1990 Population 2000 Change % Change -// +// // California 29,760,021 33,871,648 4,111,627 13.8 % // Illinois 11,430,602 12,419,293 988,691 8.6 % // Washington 4,866,692 5,894,121 1,027,429 21.1 % -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Overview/example1.cs index f90ff6e9b47..71931116b33 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/Overview/example1.cs @@ -4,70 +4,65 @@ public class Example { - public static void Main() - { - // Organization of runningBacks 5-tuple: - // Component 1: Player name - // Component 2: Number of games played - // Component 3: Number of attempts (carries) - // Component 4: Number of yards gained - // Component 5: Number of touchdowns - Tuple[] runningBacks = - { Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), - Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), - Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), - Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), - Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) }; - // Calculate statistics. - // Organization of runningStats 5-tuple: - // Component 1: Player name - // Component 2: Number of attempts per game - // Component 3: Number of yards per game - // Component 4: Number of yards per attempt - // Component 5: Number of touchdowns per attempt - Tuple[] runningStats = - ComputeStatistics(runningBacks); + public static void Main() + { + // Organization of runningBacks 5-tuple: + // Component 1: Player name + // Component 2: Number of games played + // Component 3: Number of attempts (carries) + // Component 4: Number of yards gained + // Component 5: Number of touchdowns + Tuple[] runningBacks = + [ Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), + Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), + Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), + Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), + Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) ]; + // Calculate statistics. + // Organization of runningStats 5-tuple: + // Component 1: Player name + // Component 2: Number of attempts per game + // Component 3: Number of yards per game + // Component 4: Number of yards per attempt + // Component 5: Number of touchdowns per attempt + Tuple[] runningStats = + ComputeStatistics(runningBacks); - // Display the result. - Console.WriteLine("{0,-16} {1,5} {2,6} {3,7} {4,7} {5,7} {6,7} {7,5} {8,7}\n", - "Name", "Games", "Att", "Att/Gm", "Yards", "Yds/Gm", - "Yds/Att", "TD", "TD/Att"); - for (int ctr = 0; ctr < runningBacks.Length; ctr++) - Console.WriteLine("{0,-16} {1,5} {2,6:N0} {3,7:N1} {4,7:N0} {5,7:N1} {6,7:N2} {7,5} {8,7:N3}\n", - runningBacks[ctr].Item1, runningBacks[ctr].Item2, runningBacks[ctr].Item3, - runningStats[ctr].Item2, runningBacks[ctr].Item4, runningStats[ctr].Item3, - runningStats[ctr].Item4, runningBacks[ctr].Item5, runningStats[ctr].Item5); - } + // Display the result. + Console.WriteLine($"{"Name",-16} {"Games",5} {"Att",6} {"Att/Gm",7} {"Yards",7} {"Yds/Gm",7} {"Yds/Att",7} {"TD",5} {"TD/Att",7}\n"); + for (int ctr = 0; ctr < runningBacks.Length; ctr++) + Console.WriteLine($"{runningBacks[ctr].Item1,-16} {runningBacks[ctr].Item2,5} {runningBacks[ctr].Item3,6:N0} {runningStats[ctr].Item2,7:N1} {runningBacks[ctr].Item4,7:N0} {runningStats[ctr].Item3,7:N1} {runningStats[ctr].Item4,7:N2} {runningBacks[ctr].Item5,5} {runningStats[ctr].Item5,7:N3}\n"); + } - private static Tuple[] ComputeStatistics( - Tuple[] players) - { - Tuple result; - var list = new List>(); - - foreach (var player in players) - { - // Create result object containing player name and statistics. - result = Tuple.Create(player.Item1, - player.Item3/((double)player.Item2), - player.Item4/((double)player.Item2), - player.Item4/((double)player.Item3), - player.Item5/((double)player.Item3)); - list.Add(result); - } - return list.ToArray(); - } + private static Tuple[] ComputeStatistics( + Tuple[] players) + { + Tuple result; + List> list = []; + + foreach (var player in players) + { + // Create result object containing player name and statistics. + result = Tuple.Create(player.Item1, + player.Item3 / ((double)player.Item2), + player.Item4 / ((double)player.Item2), + player.Item4 / ((double)player.Item3), + player.Item5 / ((double)player.Item3)); + list.Add(result); + } + return list.ToArray(); + } } // The example displays the following output: // Name Games Att Att/Gm Yards Yds/Gm Yds/Att TD TD/Att -// +// // Payton, Walter 190 3,838 20.2 16,726 88.0 4.36 110 0.029 -// +// // Sanders, Barry 153 3,062 20.0 15,269 99.8 4.99 99 0.032 -// +// // Brown, Jim 118 2,359 20.0 12,312 104.3 5.22 106 0.045 -// +// // Dickerson, Eric 144 2,996 20.8 13,259 92.1 4.43 90 0.030 -// +// // Faulk, Marshall 176 2,836 16.1 12,279 69.8 4.33 100 0.035 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index 44ae3b18e8c..539d8161455 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,38 +1,38 @@ // using System; -using System.Collections.Generic; -public class Example + +public class CompareToExample1 { - public static void Main() - { - // Organization of runningBacks 5-tuple: - // Component 1: Player name - // Component 2: Number of games played - // Component 3: Number of attempts (carries) - // Component 4: Number of yards gained - // Component 5: Number of touchdowns - Tuple[] runningBacks = - { Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), - Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), - Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), - Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), - Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) }; + public static void Run() + { + // Organization of runningBacks 5-tuple: + // Component 1: Player name + // Component 2: Number of games played + // Component 3: Number of attempts (carries) + // Component 4: Number of yards gained + // Component 5: Number of touchdowns + Tuple[] runningBacks = + [ Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), + Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), + Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), + Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), + Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) ]; + + // Display the array in unsorted order. + Console.WriteLine("The values in unsorted order:"); + foreach (var runningBack in runningBacks) + Console.WriteLine(runningBack); + Console.WriteLine(); + + // Sort the array + Array.Sort(runningBacks); - // Display the array in unsorted order. - Console.WriteLine("The values in unsorted order:"); - foreach (var runningBack in runningBacks) - Console.WriteLine(runningBack.ToString()); - Console.WriteLine(); - - // Sort the array - Array.Sort(runningBacks); - - // Display the array in sorted order. - Console.WriteLine("The values in sorted order:"); - foreach (var runningBack in runningBacks) - Console.WriteLine(runningBack.ToString()); - } + // Display the array in sorted order. + Console.WriteLine("The values in sorted order:"); + foreach (var runningBack in runningBacks) + Console.WriteLine(runningBack); + } } // The example displays the following output: // The values in unsorted order: @@ -41,11 +41,11 @@ public static void Main() // (Brown, Jim, 118, 2359, 12312, 106) // (Dickerson, Eric, 144, 2996, 13259, 90) // (Faulk, Marshall, 176, 2836, 12279, 100) -// +// // The values in sorted order: // (Brown, Jim, 118, 2359, 12312, 106) // (Dickerson, Eric, 144, 2996, 13259, 90) // (Faulk, Marshall, 176, 2836, 12279, 100) // (Payton, Walter, 190, 3838, 16726, 110) // (Sanders, Barry, 153, 3062, 15269, 99) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index a1f9c1c7da2..bf0742d5aeb 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,52 +5,52 @@ public class YardsGained : IComparer { - public int Compare(object x, object y) - { - Tuple tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - Tuple tY = y as Tuple; - return -1 * Comparer.Default.Compare(tX.Item4, tY.Item4); - } - } + public int Compare(object x, object y) + { + Tuple tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + Tuple tY = y as Tuple; + return -1 * Comparer.Default.Compare(tX.Item4, tY.Item4); + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - // Organization of runningBacks 5-tuple: - // Component 1: Player name - // Component 2: Number of games played - // Component 3: Number of attempts (carries) - // Component 4: Number of yards gained - // Component 5: Number of touchdowns - Tuple[] runningBacks = - { Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), - Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), - Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), - Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), - Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) }; + public static void Run() + { + // Organization of runningBacks 5-tuple: + // Component 1: Player name + // Component 2: Number of games played + // Component 3: Number of attempts (carries) + // Component 4: Number of yards gained + // Component 5: Number of touchdowns + Tuple[] runningBacks = + [ Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), + Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), + Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), + Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), + Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) ]; - // Display the array in unsorted order. - Console.WriteLine("The values in unsorted order:"); - foreach (var runningBack in runningBacks) - Console.WriteLine(runningBack.ToString()); - Console.WriteLine(); - - // Sort the array - Array.Sort(runningBacks, new YardsGained()); - - // Display the array in sorted order. - Console.WriteLine("The values in sorted order:"); - foreach (var runningBack in runningBacks) - Console.WriteLine(runningBack.ToString()); - } + // Display the array in unsorted order. + Console.WriteLine("The values in unsorted order:"); + foreach (var runningBack in runningBacks) + Console.WriteLine(runningBack); + Console.WriteLine(); + + // Sort the array + Array.Sort(runningBacks, new YardsGained()); + + // Display the array in sorted order. + Console.WriteLine("The values in sorted order:"); + foreach (var runningBack in runningBacks) + Console.WriteLine(runningBack); + } } // The example displays the following output: // The values in unsorted order: @@ -59,11 +59,11 @@ public static void Main() // (Brown, Jim, 118, 2359, 12312, 106) // (Dickerson, Eric, 144, 2996, 13259, 90) // (Faulk, Marshall, 176, 2836, 12279, 100) -// +// // The values in sorted order: // (Brown, Jim, 118, 2359, 12312, 106) // (Dickerson, Eric, 144, 2996, 13259, 90) // (Faulk, Marshall, 176, 2836, 12279, 100) // (Payton, Walter, 190, 3838, 16726, 110) // (Sanders, Barry, 153, 3062, 15269, 99) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/ToString/tostring1.cs index 5354516ce78..1aa649bc5b1 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4,T5/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4,T5/ToString/tostring1.cs @@ -3,20 +3,20 @@ public class Example { - public static void Main() - { - // Define array of tuples reflecting population change by state, 1990-2000. - Tuple[] populationChanges = - { Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), - Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), - Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) }; - // Display each tuple. - foreach (var item in populationChanges) - Console.WriteLine(item.ToString()); - } + public static void Main() + { + // Define array of tuples reflecting population change by state, 1990-2000. + Tuple[] populationChanges = + [ Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), + Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), + Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) ]; + // Display each tuple. + foreach (var item in populationChanges) + Console.WriteLine(item.ToString()); + } } // The example displays the following output: // (California, 29760021, 33871648, 4111627, 13.8) // (Illinois, 11430602, 12419293, 988691, 8.6) // (Washington, 4866692, 5894121, 1027429, 21.1) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals1.cs index b7bd2128f39..ff7b5fab1a3 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals1.cs @@ -3,25 +3,24 @@ public class Class1 { - public static void Main() - { - Tuple[] temperatures = - { Tuple.Create(new DateTime(2009, 1, 16), 3.0, 5.0, 4.0), - Tuple.Create(new DateTime(2009, 4, 22), 9.0, 14.0, 11.0), + public static void Main() + { + Tuple[] temperatures = + [ Tuple.Create(new DateTime(2009, 1, 16), 3.0, 5.0, 4.0), + Tuple.Create(new DateTime(2009, 4, 22), 9.0, 14.0, 11.0), Tuple.Create(new DateTime(2009, 4, 22), 9.0, 14.0, 10.0), Tuple.Create(new DateTime(2009, 6, 1), 23.0, 28.0, 21.0), Tuple.Create(new DateTime(2009, 4, 22), 9.0, 14.0, 11.0), - Tuple.Create(new DateTime(2009, 9, 6), 25.0, 30.0, 25.0) }; - // Compare each item with every other item for equality. - for (int ctr = 0; ctr < temperatures.Length; ctr++) - { - var temperatureInfo = temperatures[ctr]; - for (int ctr2 = ctr + 1; ctr2 < temperatures.Length; ctr2++) - Console.WriteLine("{0} = {1}: {2}", temperatureInfo, temperatures[ctr2], - temperatureInfo.Equals(temperatures[ctr2])); - Console.WriteLine(); - } - } + Tuple.Create(new DateTime(2009, 9, 6), 25.0, 30.0, 25.0) ]; + // Compare each item with every other item for equality. + for (int ctr = 0; ctr < temperatures.Length; ctr++) + { + var temperatureInfo = temperatures[ctr]; + for (int ctr2 = ctr + 1; ctr2 < temperatures.Length; ctr2++) + Console.WriteLine($"{temperatureInfo} = {temperatures[ctr2]}: {temperatureInfo.Equals(temperatures[ctr2])}"); + Console.WriteLine(); + } + } } // The example displays the following output: // (1/16/2009 12:00:00 AM, 3, 5, 4) = (4/22/2009 12:00:00 AM, 9, 14, 11): False @@ -29,18 +28,18 @@ public static void Main() // (1/16/2009 12:00:00 AM, 3, 5, 4) = (6/1/2009 12:00:00 AM, 23, 28, 21): False // (1/16/2009 12:00:00 AM, 3, 5, 4) = (4/22/2009 12:00:00 AM, 9, 14, 11): False // (1/16/2009 12:00:00 AM, 3, 5, 4) = (9/6/2009 12:00:00 AM, 25, 30, 25): False -// +// // (4/22/2009 12:00:00 AM, 9, 14, 11) = (4/22/2009 12:00:00 AM, 9, 14, 10): False // (4/22/2009 12:00:00 AM, 9, 14, 11) = (6/1/2009 12:00:00 AM, 23, 28, 21): False // (4/22/2009 12:00:00 AM, 9, 14, 11) = (4/22/2009 12:00:00 AM, 9, 14, 11): True // (4/22/2009 12:00:00 AM, 9, 14, 11) = (9/6/2009 12:00:00 AM, 25, 30, 25): False -// +// // (4/22/2009 12:00:00 AM, 9, 14, 10) = (6/1/2009 12:00:00 AM, 23, 28, 21): False // (4/22/2009 12:00:00 AM, 9, 14, 10) = (4/22/2009 12:00:00 AM, 9, 14, 11): False // (4/22/2009 12:00:00 AM, 9, 14, 10) = (9/6/2009 12:00:00 AM, 25, 30, 25): False -// +// // (6/1/2009 12:00:00 AM, 23, 28, 21) = (4/22/2009 12:00:00 AM, 9, 14, 11): False // (6/1/2009 12:00:00 AM, 23, 28, 21) = (9/6/2009 12:00:00 AM, 25, 30, 25): False -// +// // (4/22/2009 12:00:00 AM, 9, 14, 11) = (9/6/2009 12:00:00 AM, 25, 30, 25): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals2.cs index d660b7a65cf..96e453de0f1 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/Equals/equals2.cs @@ -4,56 +4,54 @@ public class Item3And4Comparer : IEqualityComparer { - private int argument = 0; - - new public bool Equals(object x, object y) - { - argument++; - - // Return true for all values of Item1, Item2. - if (argument <= 2) - return true; - else - return x.Equals(y); - } - - public int GetHashCode(object obj) - { - if (obj is T1) - return ((T1) obj).GetHashCode(); - else if (obj is T2) - return ((T2) obj).GetHashCode(); - else if (obj is T3) - return ((T3) obj).GetHashCode(); - else - return ((T4) obj).GetHashCode(); - } + private int argument = 0; + + new public bool Equals(object x, object y) + { + argument++; + + // Return true for all values of Item1, Item2. + if (argument <= 2) + return true; + else + return x.Equals(y); + } + + public int GetHashCode(object obj) + { + if (obj is T1) + return ((T1)obj).GetHashCode(); + else if (obj is T2) + return ((T2)obj).GetHashCode(); + else if (obj is T3) + return ((T3)obj).GetHashCode(); + else + return ((T4)obj).GetHashCode(); + } } public class Example { - public static void Main() - { - Tuple[] temperatures = - { Tuple.Create("New York, NY", 4, 61.0, 43.0), - Tuple.Create("Chicago, IL", 2, 34.0, 18.0), + public static void Main() + { + Tuple[] temperatures = + [ Tuple.Create("New York, NY", 4, 61.0, 43.0), + Tuple.Create("Chicago, IL", 2, 34.0, 18.0), Tuple.Create("Newark, NJ", 4, 61.0, 43.0), Tuple.Create("Boston, MA", 6, 77.0, 59.0), Tuple.Create("Detroit, MI", 9, 74.0, 53.0), - Tuple.Create("Minneapolis, MN", 8, 81.0, 61.0) }; - // Compare each item with every other item for equality. - for (int ctr = 0; ctr < temperatures.Length; ctr++) - { - IStructuralEquatable temperatureInfo = temperatures[ctr]; - for (int ctr2 = ctr + 1; ctr2 < temperatures.Length; ctr2++) - Console.WriteLine("{0} = {1}: {2}", - temperatureInfo, temperatures[ctr2], - temperatureInfo.Equals(temperatures[ctr2], - new Item3And4Comparer())); + Tuple.Create("Minneapolis, MN", 8, 81.0, 61.0) ]; + // Compare each item with every other item for equality. + for (int ctr = 0; ctr < temperatures.Length; ctr++) + { + IStructuralEquatable temperatureInfo = temperatures[ctr]; + for (int ctr2 = ctr + 1; ctr2 < temperatures.Length; ctr2++) + Console.WriteLine($"{temperatureInfo} = {temperatures[ctr2]}: {temperatureInfo.Equals(temperatures[ctr2], + new Item3And4Comparer())}"); - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output: // (New York, NY, 4, 61, 43) = (Chicago, IL, 2, 34, 18): False @@ -61,18 +59,18 @@ public static void Main() // (New York, NY, 4, 61, 43) = (Boston, MA, 6, 77, 59): False // (New York, NY, 4, 61, 43) = (Detroit, MI, 9, 74, 53): False // (New York, NY, 4, 61, 43) = (Minneapolis, MN, 8, 81, 61): False -// +// // (Chicago, IL, 2, 34, 18) = (Newark, NJ, 4, 61, 43): False // (Chicago, IL, 2, 34, 18) = (Boston, MA, 6, 77, 59): False // (Chicago, IL, 2, 34, 18) = (Detroit, MI, 9, 74, 53): False // (Chicago, IL, 2, 34, 18) = (Minneapolis, MN, 8, 81, 61): False -// +// // (Newark, NJ, 4, 61, 43) = (Boston, MA, 6, 77, 59): False // (Newark, NJ, 4, 61, 43) = (Detroit, MI, 9, 74, 53): False // (Newark, NJ, 4, 61, 43) = (Minneapolis, MN, 8, 81, 61): False -// +// // (Boston, MA, 6, 77, 59) = (Detroit, MI, 9, 74, 53): False // (Boston, MA, 6, 77, 59) = (Minneapolis, MN, 8, 81, 61): False -// +// // (Detroit, MI, 9, 74, 53) = (Minneapolis, MN, 8, 81, 61): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/Item1/item1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/Item1/item1.cs index 74b42593592..c4f2a8aaab0 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/Item1/item1.cs @@ -4,34 +4,30 @@ public class Example { - public static void Main() - { - Tuple[] temperatures = - { Tuple.Create("New York, NY", 4, 61.0, 43.0), - Tuple.Create("Chicago, IL", 2, 34.0, 18.0), + public static void Main() + { + Tuple[] temperatures = + [ Tuple.Create("New York, NY", 4, 61.0, 43.0), + Tuple.Create("Chicago, IL", 2, 34.0, 18.0), Tuple.Create("Newark, NJ", 4, 61.0, 43.0), Tuple.Create("Boston, MA", 6, 77.0, 59.0), Tuple.Create("Detroit, MI", 9, 74.0, 53.0), - Tuple.Create("Minneapolis, MN", 8, 81.0, 61.0) }; - // Display the array of 4-tuple objects. - Console.WriteLine("{0,41}", "Temperatures"); - Console.WriteLine("{0,-20} {1,5} {2,4} {3,4}\n", - "City", "Month", "High", "Low"); - foreach (var temperature in temperatures) - Console.WriteLine("{0,-20} {1,5} {2,4:N1} {3,4:N1}", - temperature.Item1, - DateTimeFormatInfo.CurrentInfo.GetAbbreviatedMonthName(temperature.Item2 - 1), - temperature.Item3, temperature.Item4); - } + Tuple.Create("Minneapolis, MN", 8, 81.0, 61.0) ]; + // Display the array of 4-tuple objects. + Console.WriteLine($"{"Temperatures",41}"); + Console.WriteLine($"{"City",-20} {"Month",5} {"High",4} {"Low",4}\n"); + foreach (var temperature in temperatures) + Console.WriteLine($"{temperature.Item1,-20} {DateTimeFormatInfo.CurrentInfo.GetAbbreviatedMonthName(temperature.Item2 - 1),5} {temperature.Item3,4:N1} {temperature.Item4,4:N1}"); + } } // The example displays the following output: // Temperatures // City Month High Low -// +// // New York, NY Mar 61.0 43.0 // Chicago, IL Jan 34.0 18.0 // Newark, NJ Mar 61.0 43.0 // Boston, MA May 77.0 59.0 // Detroit, MI Aug 74.0 53.0 // Minneapolis, MN Jul 81.0 61.0 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/Overview/example1.cs index 503e29b5222..4f0eb494b13 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/Overview/example1.cs @@ -4,50 +4,47 @@ public class Example { - public static void Main() - { - Tuple[] pitchers = - { Tuple.Create("McHale, Joe", 240.1m, 221, 96), - Tuple.Create("Paul, Dave", 233.1m, 231, 84), + public static void Main() + { + Tuple[] pitchers = + [ Tuple.Create("McHale, Joe", 240.1m, 221, 96), + Tuple.Create("Paul, Dave", 233.1m, 231, 84), Tuple.Create("Williams, Mike", 193.2m, 183, 86), - Tuple.Create("Blair, Jack", 168.1m, 146, 65), + Tuple.Create("Blair, Jack", 168.1m, 146, 65), Tuple.Create("Henry, Walt", 140.1m, 96, 30), Tuple.Create("Lee, Adam", 137.2m, 109, 45), - Tuple.Create("Rohr, Don", 101.0m, 110, 42) }; - Tuple[] results= ComputeStatistics(pitchers); + Tuple.Create("Rohr, Don", 101.0m, 110, 42) ]; + Tuple[] results = ComputeStatistics(pitchers); - // Display the results. - Console.WriteLine("{0,-20} {1,9} {2,11} {3,15}\n", - "Pitcher", "ERA", "Hits/Inn.", "Effectiveness"); - foreach (var result in results) - Console.WriteLine("{0,-20} {1,9:F2} {2,11:F2} {3,15:F2}", - result.Item1, result.Item2, result.Item3, result.Item4); - } + // Display the results. + Console.WriteLine($"{"Pitcher",-20} {"ERA",9} {"Hits/Inn.",11} {"Effectiveness",15}\n"); + foreach (var result in results) + Console.WriteLine($"{result.Item1,-20} {result.Item2,9:F2} {result.Item3,11:F2} {result.Item4,15:F2}"); + } - private static Tuple[] ComputeStatistics(Tuple[] pitchers) - { - var list = new List>(); - Tuple result; + private static Tuple[] ComputeStatistics(Tuple[] pitchers) + { + List> list = []; + Tuple result; - foreach (var pitcher in pitchers) - { - // Decimal portion of innings pitched represents 1/3 of an inning - double innings = (double) Math.Truncate(pitcher.Item2); - innings = innings + (((double)pitcher.Item2 - innings) * .33); - - double ERA = pitcher.Item4/innings * 9; - double hitsPerInning = pitcher.Item3/innings; - double EI = (ERA * 2 + hitsPerInning * 9)/3; - result = new Tuple - (pitcher.Item1, ERA, hitsPerInning, EI); - list.Add(result); - } - return list.ToArray(); - } + foreach (var pitcher in pitchers) + { + // Decimal portion of innings pitched represents 1/3 of an inning + double innings = (double)Math.Truncate(pitcher.Item2); + innings = innings + (((double)pitcher.Item2 - innings) * .33); + + double ERA = pitcher.Item4 / innings * 9; + double hitsPerInning = pitcher.Item3 / innings; + double EI = (ERA * 2 + hitsPerInning * 9) / 3; + result = new(pitcher.Item1, ERA, hitsPerInning, EI); + list.Add(result); + } + return list.ToArray(); + } } // The example displays the following output; // Pitcher ERA Hits/Inn. Effectiveness -// +// // McHale, Joe 3.60 0.92 5.16 // Paul, Dave 3.24 0.99 5.14 // Williams, Mike 4.01 0.95 5.52 @@ -55,4 +52,4 @@ private static Tuple[] ComputeStatistics(Tuple \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index 81c29e178a4..507cec4e02d 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,34 +1,34 @@ // using System; -using System.Collections.Generic; -public class Example + +public class CompareToExample1 { - public static void Main() - { - Tuple[] pitchers = - { Tuple.Create("McHale, Joe", 240.1m, 221, 96), - Tuple.Create("Paul, Dave", 233.1m, 231, 84), + public static void Run() + { + Tuple[] pitchers = + [ Tuple.Create("McHale, Joe", 240.1m, 221, 96), + Tuple.Create("Paul, Dave", 233.1m, 231, 84), Tuple.Create("Williams, Mike", 193.2m, 183, 86), - Tuple.Create("Blair, Jack", 168.1m, 146, 65), + Tuple.Create("Blair, Jack", 168.1m, 146, 65), Tuple.Create("Henry, Walt", 140.1m, 96, 30), Tuple.Create("Lee, Adam", 137.2m, 109, 45), - Tuple.Create("Rohr, Don", 101.0m, 110, 42) }; + Tuple.Create("Rohr, Don", 101.0m, 110, 42) ]; + + // Display the array in unsorted order. + Console.WriteLine("The values in unsorted order:"); + foreach (var pitcher in pitchers) + Console.WriteLine(pitcher); + Console.WriteLine(); + + // Sort the array + Array.Sort(pitchers); - // Display the array in unsorted order. - Console.WriteLine("The values in unsorted order:"); - foreach (var pitcher in pitchers) - Console.WriteLine(pitcher.ToString()); - Console.WriteLine(); - - // Sort the array - Array.Sort(pitchers); - - // Display the array in sorted order. - Console.WriteLine("The values in sorted order:"); - foreach (var pitcher in pitchers) - Console.WriteLine(pitcher.ToString()); - } + // Display the array in sorted order. + Console.WriteLine("The values in sorted order:"); + foreach (var pitcher in pitchers) + Console.WriteLine(pitcher); + } } // The example displays the following output; // The values in unsorted order: @@ -39,7 +39,7 @@ public static void Main() // (Henry, Walt, 140.1, 96, 30) // (Lee, Adam, 137.2, 109, 45) // (Rohr, Don, 101, 110, 42) -// +// // The values in sorted order: // (Blair, Jack, 168.1, 146, 65) // (Henry, Walt, 140.1, 96, 30) @@ -48,4 +48,4 @@ public static void Main() // (Paul, Dave, 233.1, 231, 84) // (Rohr, Don, 101, 110, 42) // (Williams, Mike, 193.2, 183, 86) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 63ac793f8b2..e865230ce19 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,46 +5,46 @@ public class PitcherComparer : IComparer { - public int Compare(object x, object y) - { - Tuple tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - Tuple tY = y as Tuple; - return Comparer.Default.Compare(tX.Item3, tY.Item3); - } - } + public int Compare(object x, object y) + { + Tuple tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + Tuple tY = y as Tuple; + return Comparer.Default.Compare(tX.Item3, tY.Item3); + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - Tuple[] pitchers = - { Tuple.Create("McHale, Joe", 240.1, 3.60, 221), - Tuple.Create("Paul, Dave", 233.1, 3.24, 231), + public static void Run() + { + Tuple[] pitchers = + [ Tuple.Create("McHale, Joe", 240.1, 3.60, 221), + Tuple.Create("Paul, Dave", 233.1, 3.24, 231), Tuple.Create("Williams, Mike", 193.2, 4.00, 183), - Tuple.Create("Blair, Jack", 168.1, 3.48, 146), + Tuple.Create("Blair, Jack", 168.1, 3.48, 146), Tuple.Create("Henry, Walt", 140.1, 1.92, 96), Tuple.Create("Lee, Adam", 137.2, 2.94, 109), - Tuple.Create("Rohr, Don", 101.0, 3.74, 110) }; + Tuple.Create("Rohr, Don", 101.0, 3.74, 110) ]; - Console.WriteLine("The values in unsorted order:"); - foreach (var pitcher in pitchers) - Console.WriteLine(pitcher.ToString()); + Console.WriteLine("The values in unsorted order:"); + foreach (var pitcher in pitchers) + Console.WriteLine(pitcher); - Console.WriteLine(); + Console.WriteLine(); - Array.Sort(pitchers, new PitcherComparer()); + Array.Sort(pitchers, new PitcherComparer()); - Console.WriteLine("The values sorted by earned run average (component 3):"); - foreach (var pitcher in pitchers) - Console.WriteLine(pitcher.ToString()); - } + Console.WriteLine("The values sorted by earned run average (component 3):"); + foreach (var pitcher in pitchers) + Console.WriteLine(pitcher); + } } // The example displays the following output; // The values in unsorted order: @@ -55,7 +55,7 @@ public static void Main() // (Henry, Walt, 140.1, 1.92, 96) // (Lee, Adam, 137.2, 2.94, 109) // (Rohr, Don, 101, 3.74, 110) -// +// // The values sorted by earned run average (component 3): // (Henry, Walt, 140.1, 1.92, 96) // (Lee, Adam, 137.2, 2.94, 109) diff --git a/snippets/csharp/System/TupleT1,T2,T3,T4/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3,T4/ToString/tostring1.cs index 009918fab0a..d2763f2aa90 100644 --- a/snippets/csharp/System/TupleT1,T2,T3,T4/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3,T4/ToString/tostring1.cs @@ -3,19 +3,19 @@ public class Example { - public static void Main() - { - Tuple[] temperatures = - { Tuple.Create("New York, NY", 4, 61, 43), - Tuple.Create("Chicago, IL", 2, 34, 18), + public static void Main() + { + Tuple[] temperatures = + [ Tuple.Create("New York, NY", 4, 61, 43), + Tuple.Create("Chicago, IL", 2, 34, 18), Tuple.Create("Newark, NJ", 4, 61, 43), Tuple.Create("Boston, MA", 6, 77, 59), Tuple.Create("Detroit, MI", 9, 74, 53), - Tuple.Create("Minneapolis, MN", 8, 81, 61) }; - // Display the array of 4-tuple objects. - foreach (var temperature in temperatures) - Console.WriteLine(temperature.ToString()); - } + Tuple.Create("Minneapolis, MN", 8, 81, 61) ]; + // Display the array of 4-tuple objects. + foreach (var temperature in temperatures) + Console.WriteLine(temperature.ToString()); + } } // The example displays the following output: // (New York, NY, 4, 61, 43) @@ -24,4 +24,4 @@ public static void Main() // (Boston, MA, 6, 77, 59) // (Detroit, MI, 9, 74, 53) // (Minneapolis, MN, 8, 81, 61) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3/Equals/Program.cs b/snippets/csharp/System/TupleT1,T2,T3/Equals/Program.cs new file mode 100644 index 00000000000..76c3e934c0b --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsExample1.Run(); +EqualsExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3/Equals/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2,T3/Equals/equals1.cs index 24aec55f956..8ba5dddad3e 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/Equals/equals1.cs @@ -1,31 +1,30 @@ // using System; -public class Example +public class EqualsExample1 { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Ed", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + public static void Run() + { + Tuple[] scores = + [ Tuple.Create("Ed", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Ed", 71.2, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Ed", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Ed", 71.2, 9), - Tuple.Create("Judith", 84.3, 9) }; + Tuple.Create("Judith", 84.3, 9) ]; - // Test each tuple object for equality with every other tuple. - for (int ctr = 0; ctr < scores.Length; ctr++) - { - var currentTuple = scores[ctr]; - for (int ctr2 = ctr + 1; ctr2 < scores.Length; ctr2++) - Console.WriteLine("{0} = {1}: {2}", currentTuple, scores[ctr2], - currentTuple.Equals(scores[ctr2])); + // Test each tuple object for equality with every other tuple. + for (int ctr = 0; ctr < scores.Length; ctr++) + { + var currentTuple = scores[ctr]; + for (int ctr2 = ctr + 1; ctr2 < scores.Length; ctr2++) + Console.WriteLine($"{currentTuple} = {scores[ctr2]}: {currentTuple.Equals(scores[ctr2])}"); - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example displays the following output; // (Ed, 78.8, 8) = (Abbey, 92.1, 9): False @@ -35,31 +34,31 @@ public static void Main() // (Ed, 78.8, 8) = (Penelope, 82.9, 8): False // (Ed, 78.8, 8) = (Ed, 71.2, 9): False // (Ed, 78.8, 8) = (Judith, 84.3, 9): False -// +// // (Abbey, 92.1, 9) = (Ed, 71.2, 9): False // (Abbey, 92.1, 9) = (Sam, 91.7, 8): False // (Abbey, 92.1, 9) = (Ed, 71.2, 5): False // (Abbey, 92.1, 9) = (Penelope, 82.9, 8): False // (Abbey, 92.1, 9) = (Ed, 71.2, 9): False // (Abbey, 92.1, 9) = (Judith, 84.3, 9): False -// +// // (Ed, 71.2, 9) = (Sam, 91.7, 8): False // (Ed, 71.2, 9) = (Ed, 71.2, 5): False // (Ed, 71.2, 9) = (Penelope, 82.9, 8): False // (Ed, 71.2, 9) = (Ed, 71.2, 9): True // (Ed, 71.2, 9) = (Judith, 84.3, 9): False -// +// // (Sam, 91.7, 8) = (Ed, 71.2, 5): False // (Sam, 91.7, 8) = (Penelope, 82.9, 8): False // (Sam, 91.7, 8) = (Ed, 71.2, 9): False // (Sam, 91.7, 8) = (Judith, 84.3, 9): False -// +// // (Ed, 71.2, 5) = (Penelope, 82.9, 8): False // (Ed, 71.2, 5) = (Ed, 71.2, 9): False // (Ed, 71.2, 5) = (Judith, 84.3, 9): False -// +// // (Penelope, 82.9, 8) = (Ed, 71.2, 9): False // (Penelope, 82.9, 8) = (Judith, 84.3, 9): False -// +// // (Ed, 71.2, 9) = (Judith, 84.3, 9): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2,T3/Equals/equals2.cs index dff73822973..23b181ee11c 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/Equals/equals2.cs @@ -4,55 +4,53 @@ public class Item2Comparer : IEqualityComparer { - new public bool Equals(object x, object y) - { - // Return true for all values of Item1. - if (x is T1) - return true; - else if (x is T2) - return x.Equals(y); - else - return true; - } - - public int GetHashCode(object obj) - { - if (obj is T1) - return ((T1) obj).GetHashCode(); - else if (obj is T2) - return ((T2) obj).GetHashCode(); - else - return ((T3) obj).GetHashCode(); - } + new public bool Equals(object x, object y) + { + // Return true for all values of Item1. + if (x is T1) + return true; + else if (x is T2) + return x.Equals(y); + else + return true; + } + + public int GetHashCode(object obj) + { + if (obj is T1) + return ((T1)obj).GetHashCode(); + else if (obj is T2) + return ((T2)obj).GetHashCode(); + else + return ((T3)obj).GetHashCode(); + } } -public class Example +public class EqualsExample2 { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Ed", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + public static void Run() + { + Tuple[] scores = + [ Tuple.Create("Ed", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Jim", 71.2, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Sandy", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Serena", 71.2, 9), - Tuple.Create("Judith", 84.3, 9) }; + Tuple.Create("Judith", 84.3, 9) ]; - for (int ctr = 0; ctr < scores.Length; ctr++) - { - IStructuralEquatable score = scores[ctr]; - for (int ctr2 = ctr + 1; ctr2 < scores.Length; ctr2++) - { - Console.WriteLine("{0} = {1}: {2}", score, - scores[ctr2], - score.Equals(scores[ctr2], - new Item2Comparer())); - } - Console.WriteLine(); - } - } + for (int ctr = 0; ctr < scores.Length; ctr++) + { + IStructuralEquatable score = scores[ctr]; + for (int ctr2 = ctr + 1; ctr2 < scores.Length; ctr2++) + { + Console.WriteLine($"{score} = {scores[ctr2]}: {score.Equals(scores[ctr2], + new Item2Comparer())}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // (Ed, 78.8, 8) = (Abbey, 92.1, 9): False @@ -69,7 +67,7 @@ public static void Main() // (Abbey, 92.1, 9) = (Penelope, 82.9, 8): False // (Abbey, 92.1, 9) = (Serena, 71.2, 9): False // (Abbey, 92.1, 9) = (Judith, 84.3, 9): False -// +// // (Jim, 71.2, 9) = (Sam, 91.7, 8): False // (Jim, 71.2, 9) = (Sandy, 71.2, 5): True // (Jim, 71.2, 9) = (Penelope, 82.9, 8): False @@ -89,4 +87,4 @@ public static void Main() // (Penelope, 82.9, 8) = (Judith, 84.3, 9): False // // (Serena, 71.2, 9) = (Judith, 84.3, 9): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2,T3/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2,T3/Overview/example1.cs index 9a557df905a..1a54d079df8 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/Overview/example1.cs @@ -1,47 +1,48 @@ -// -using System; +using System; public class Example { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Jack", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + // + public static void Main() + { + Tuple[] scores = + [ Tuple.Create("Jack", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Dave", 88.3, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Ed", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Linda", 99.0, 9), - Tuple.Create("Judith", 84.3, 9) }; - var result = ComputeStatistics(scores); - Console.WriteLine("Mean score: {0:N2} (SD={1:N2}) (n={2})", - result.Item2, result.Item3, result.Item1); - } + Tuple.Create("Judith", 84.3, 9) ]; + var result = ComputeStatistics(scores); + Console.WriteLine($"Mean score: {result.Item2:N2} (SD={result.Item3:N2}) (n={result.Item1})"); + } - private static Tuple ComputeStatistics(Tuple[] scores) - { - int n = 0; - double sum = 0; + private static Tuple ComputeStatistics(Tuple[] scores) + { + int n = 0; + double sum = 0; - // Compute the mean. - foreach (var score in scores) - { - n += score.Item3; - sum += score.Item2 * score.Item3; - } - double mean = sum / n; - - // Compute the standard deviation. - double ss = 0; - foreach (var score in scores) - { - ss = Math.Pow(score.Item2 - mean, 2); - } - double sd = Math.Sqrt(ss/scores.Length); - return Tuple.Create(scores.Length, mean, sd); - } + // Compute the mean. + foreach (Tuple score in scores) + { + n += score.Item3; + sum += score.Item2 * score.Item3; + } + double mean = sum / n; + + // Compute the standard deviation. + double ss = 0; + foreach (Tuple score in scores) + { + ss += Math.Pow(score.Item2 - mean, 2); + } + double sd = Math.Sqrt(ss / scores.Length); + return Tuple.Create(scores.Length, mean, sd); + } + + // The example displays the following output: + // Mean score: 87.02 (SD=8.18) (n=8) + + // } -// The example displays the following output: -// Mean score: 87.02 (SD=0.96) (n=8) -// \ No newline at end of file diff --git a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index a1ad9e789f0..d708ac6b3fb 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,32 +1,32 @@ // using System; -public class Example +public class CompareToExample1 { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Jack", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + public static void Run() + { + Tuple[] scores = + [ Tuple.Create("Jack", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Dave", 88.3, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Ed", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Linda", 99.0, 9), - Tuple.Create("Judith", 84.3, 9) }; + Tuple.Create("Judith", 84.3, 9) ]; - Console.WriteLine("The values in unsorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); + Console.WriteLine("The values in unsorted order:"); + foreach (var score in scores) + Console.WriteLine(score); - Console.WriteLine(); + Console.WriteLine(); - Array.Sort(scores); + Array.Sort(scores); - Console.WriteLine("The values in sorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); - } + Console.WriteLine("The values in sorted order:"); + foreach (var score in scores) + Console.WriteLine(score); + } } // The example displays the following output; // The values in unsorted order: @@ -38,7 +38,7 @@ public static void Main() // (Penelope, 82.9, 8) // (Linda, 99, 9) // (Judith, 84.3, 9) -// +// // The values in sorted order: // (Abbey, 92.1, 9) // (Dave, 88.3, 9) diff --git a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 1af88bd54ed..0b9b3e25782 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,47 +5,47 @@ public class ScoreComparer : IComparer { - public int Compare(object x, object y) - { - Tuple tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - Tuple tY = y as Tuple; - return Comparer.Default.Compare(tX.Item2, tY.Item2); - } - } + public int Compare(object x, object y) + { + Tuple tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + Tuple tY = y as Tuple; + return Comparer.Default.Compare(tX.Item2, tY.Item2); + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Jack", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + public static void Run() + { + Tuple[] scores = + [ Tuple.Create("Jack", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Dave", 88.3, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Ed", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Linda", 99.0, 9), - Tuple.Create("Judith", 84.3, 9) }; + Tuple.Create("Judith", 84.3, 9) ]; - Console.WriteLine("The values in unsorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); + Console.WriteLine("The values in unsorted order:"); + foreach (var score in scores) + Console.WriteLine(score); - Console.WriteLine(); + Console.WriteLine(); - Array.Sort(scores, new ScoreComparer()); + Array.Sort(scores, new ScoreComparer()); - Console.WriteLine("The values in sorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); - } + Console.WriteLine("The values in sorted order:"); + foreach (var score in scores) + Console.WriteLine(score); + } } // The example displays the following output; // The values in unsorted order: @@ -57,7 +57,7 @@ public static void Main() // (Penelope, 82.9, 8) // (Linda, 99, 9) // (Judith, 84.3, 9) -// +// // The values in sorted order: // (Ed, 71.2, 5) // (Jack, 78.8, 8) diff --git a/snippets/csharp/System/TupleT1,T2,T3/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2,T3/ToString/tostring1.cs index a42543f6550..832c29ade58 100644 --- a/snippets/csharp/System/TupleT1,T2,T3/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2,T3/ToString/tostring1.cs @@ -3,21 +3,21 @@ public class Example { - public static void Main() - { - Tuple[] scores = - { Tuple.Create("Jack", 78.8, 8), - Tuple.Create("Abbey", 92.1, 9), + public static void Main() + { + Tuple[] scores = + [ Tuple.Create("Jack", 78.8, 8), + Tuple.Create("Abbey", 92.1, 9), Tuple.Create("Dave", 88.3, 9), - Tuple.Create("Sam", 91.7, 8), + Tuple.Create("Sam", 91.7, 8), Tuple.Create("Ed", 71.2, 5), Tuple.Create("Penelope", 82.9, 8), Tuple.Create("Linda", 99.0, 9), - Tuple.Create("Judith", 84.3, 9) }; - Array.Sort(scores); - foreach (var score in scores) - Console.WriteLine(score.ToString()); - } + Tuple.Create("Judith", 84.3, 9) ]; + Array.Sort(scores); + foreach (var score in scores) + Console.WriteLine(score.ToString()); + } } // The example displays the following output; // (Abbey, 92.1, 9) diff --git a/snippets/csharp/System/TupleT1,T2/Equals/Program.cs b/snippets/csharp/System/TupleT1,T2/Equals/Program.cs new file mode 100644 index 00000000000..76c3e934c0b --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsExample1.Run(); +EqualsExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2/Equals/Project.csproj b/snippets/csharp/System/TupleT1,T2/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2/Equals/equals1.cs b/snippets/csharp/System/TupleT1,T2/Equals/equals1.cs index 9ccf93e354a..0ca2da4557f 100644 --- a/snippets/csharp/System/TupleT1,T2/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1,T2/Equals/equals1.cs @@ -1,30 +1,28 @@ // using System; -public class Example +public class EqualsExample1 { - public static void Main() - { - Tuple>[] scores = - { new Tuple>("Dan", 90), + public static void Run() + { + Tuple>[] scores = + [ new Tuple>("Dan", 90), new Tuple>("Ernie", null), new Tuple>("Jill", 88), - new Tuple>("Ernie", null), - new Tuple>("Nancy", 88), - new Tuple>("Dan", 90) }; + new Tuple>("Ernie", null), + new Tuple>("Nancy", 88), + new Tuple>("Dan", 90) ]; - // Compare the Tuple objects - for (int ctr = 0; ctr < scores.Length; ctr++) - { - for (int innerCtr = ctr + 1; innerCtr < scores.Length; innerCtr++) - { - Console.WriteLine("{0} = {1}: {2}", - scores[ctr], scores[innerCtr], - scores[ctr].Equals(scores[innerCtr])); - } - Console.WriteLine(); - } - } + // Compare the Tuple objects + for (int ctr = 0; ctr < scores.Length; ctr++) + { + for (int innerCtr = ctr + 1; innerCtr < scores.Length; innerCtr++) + { + Console.WriteLine($"{scores[ctr]} = {scores[innerCtr]}: {scores[ctr].Equals(scores[innerCtr])}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // (Dan, 90) = (Ernie, ): False @@ -32,18 +30,18 @@ public static void Main() // (Dan, 90) = (Ernie, ): False // (Dan, 90) = (Nancy, 88): False // (Dan, 90) = (Dan, 90): True -// +// // (Ernie, ) = (Jill, 88): False // (Ernie, ) = (Ernie, ): True // (Ernie, ) = (Nancy, 88): False // (Ernie, ) = (Dan, 90): False -// +// // (Jill, 88) = (Ernie, ): False // (Jill, 88) = (Nancy, 88): False // (Jill, 88) = (Dan, 90): False -// +// // (Ernie, ) = (Nancy, 88): False // (Ernie, ) = (Dan, 90): False -// +// // (Nancy, 88) = (Dan, 90): False // diff --git a/snippets/csharp/System/TupleT1,T2/Equals/equals2.cs b/snippets/csharp/System/TupleT1,T2/Equals/equals2.cs index f045c09c1c3..dc343a7d775 100644 --- a/snippets/csharp/System/TupleT1,T2/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1,T2/Equals/equals2.cs @@ -4,61 +4,59 @@ public class Item2Comparer : IEqualityComparer { - new public bool Equals(object x, object y) - { - // Return true for all values of Item1. - if (x is T1) - //if (typeof(x) is string) - return true; - else - return x.Equals(y); - } - - public int GetHashCode(object obj) - { - if (obj is T1) - return ((T1) obj).GetHashCode(); - else - return ((T2) obj).GetHashCode(); - } + new public bool Equals(object x, object y) + { + // Return true for all values of Item1. + if (x is T1) + //if (typeof(x) is string) + return true; + else + return x.Equals(y); + } + + public int GetHashCode(object obj) + { + if (obj is T1) + return ((T1)obj).GetHashCode(); + else + return ((T2)obj).GetHashCode(); + } } -public class Example +public class EqualsExample2 { - public static void Main() - { - Tuple[] distancesWalked = { - Tuple.Create("Jan", Double.NaN), - Tuple.Create("Joe", Double.NaN), - Tuple.Create("Adam", 1.36), + public static void Run() + { + Tuple[] distancesWalked = [ + Tuple.Create("Jan", double.NaN), + Tuple.Create("Joe", double.NaN), + Tuple.Create("Adam", 1.36), Tuple.Create("Selena", 2.01), - Tuple.Create("Jake", 1.36) }; - for (int ctr = 0; ctr < distancesWalked.Length; ctr++) - { - Tuple distanceWalked = distancesWalked[ctr]; - for (int ctr2 = ctr + 1; ctr2 < distancesWalked.Length; ctr2++) - { - Console.WriteLine("{0} = {1}: {2}", distanceWalked, - distancesWalked[ctr2], - ((IStructuralEquatable)distanceWalked).Equals(distancesWalked[ctr2], - new Item2Comparer())); - } - Console.WriteLine(); - } - } + Tuple.Create("Jake", 1.36) ]; + for (int ctr = 0; ctr < distancesWalked.Length; ctr++) + { + Tuple distanceWalked = distancesWalked[ctr]; + for (int ctr2 = ctr + 1; ctr2 < distancesWalked.Length; ctr2++) + { + Console.WriteLine($"{distanceWalked} = {distancesWalked[ctr2]}: {((IStructuralEquatable)distanceWalked).Equals(distancesWalked[ctr2], + new Item2Comparer())}"); + } + Console.WriteLine(); + } + } } // The example displays the following output: // (Jan, NaN) = (Joe, NaN): True // (Jan, NaN) = (Adam, 1.36): False // (Jan, NaN) = (Selena, 2.01): False // (Jan, NaN) = (Jake, 1.36): False -// +// // (Joe, NaN) = (Adam, 1.36): False // (Joe, NaN) = (Selena, 2.01): False // (Joe, NaN) = (Jake, 1.36): False -// +// // (Adam, 1.36) = (Selena, 2.01): False // (Adam, 1.36) = (Jake, 1.36): True -// +// // (Selena, 2.01) = (Jake, 1.36): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2/Overview/example1.cs b/snippets/csharp/System/TupleT1,T2/Overview/example1.cs index a1a02fcecdc..02dc697b4e3 100644 --- a/snippets/csharp/System/TupleT1,T2/Overview/example1.cs +++ b/snippets/csharp/System/TupleT1,T2/Overview/example1.cs @@ -3,40 +3,40 @@ public class Example { - public static void Main() - { - Tuple>[] scores = - { new Tuple>("Jack", 78), - new Tuple>("Abbey", 92), + public static void Main() + { + Tuple>[] scores = + [ new Tuple>("Jack", 78), + new Tuple>("Abbey", 92), new Tuple>("Dave", 88), - new Tuple>("Sam", 91), + new Tuple>("Sam", 91), new Tuple>("Ed", null), new Tuple>("Penelope", 82), new Tuple>("Linda", 99), - new Tuple>("Judith", 84) }; - int number; - double mean = ComputeMean(scores, out number); - Console.WriteLine("Average test score: {0:N2} (n={1})", mean, number); - } + new Tuple>("Judith", 84) ]; + int number; + double mean = ComputeMean(scores, out number); + Console.WriteLine($"Average test score: {mean:N2} (n={number})"); + } - private static double ComputeMean(Tuple>[] scores, out int n) - { - n = 0; - int sum = 0; - foreach (var score in scores) - { - if (score.Item2.HasValue) - { - n += 1; - sum += score.Item2.Value; - } - } - if (n > 0) - return sum / (double) n; - else - return 0; - } + private static double ComputeMean(Tuple>[] scores, out int n) + { + n = 0; + int sum = 0; + foreach (var score in scores) + { + if (score.Item2.HasValue) + { + n += 1; + sum += score.Item2.Value; + } + } + if (n > 0) + return sum / (double)n; + else + return 0; + } } // The example displays the following output: // Average test score: 87.71 (n=7) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2/Overview/item1.cs b/snippets/csharp/System/TupleT1,T2/Overview/item1.cs index a57aef25409..c861a905a2d 100644 --- a/snippets/csharp/System/TupleT1,T2/Overview/item1.cs +++ b/snippets/csharp/System/TupleT1,T2/Overview/item1.cs @@ -3,41 +3,41 @@ public class Class1 { - public static void Main() - { - int dividend, divisor; - Tuple result; - - dividend = 136945; divisor = 178; - result = IntegerDivide(dividend, divisor); - if (result != null) - Console.WriteLine(@"{0} \ {1} = {2}, remainder {3}", - dividend, divisor, result.Item1, result.Item2); - else - Console.WriteLine(@"{0} \ {1} = ", dividend, divisor); - - dividend = Int32.MaxValue; divisor = -2073; - result = IntegerDivide(dividend, divisor); - if (result != null) - Console.WriteLine(@"{0} \ {1} = {2}, remainder {3}", - dividend, divisor, result.Item1, result.Item2); - else - Console.WriteLine(@"{0} \ {1} = ", dividend, divisor); - } + public static void Main() + { + int dividend, divisor; + Tuple result; - private static Tuple IntegerDivide(int dividend, int divisor) - { - try { - int remainder; - int quotient = Math.DivRem(dividend, divisor, out remainder); - return new Tuple(quotient, remainder); - } - catch (DivideByZeroException) { - return null; - } - } + dividend = 136945; divisor = 178; + result = IntegerDivide(dividend, divisor); + if (result != null) + Console.WriteLine($"{dividend} \\ {divisor} = {result.Item1}, remainder {result.Item2}"); + else + Console.WriteLine($"{dividend} \\ {divisor} = "); + + dividend = int.MaxValue; divisor = -2073; + result = IntegerDivide(dividend, divisor); + if (result != null) + Console.WriteLine($"{dividend} \\ {divisor} = {result.Item1}, remainder {result.Item2}"); + else + Console.WriteLine($"{dividend} \\ {divisor} = "); + } + + private static Tuple IntegerDivide(int dividend, int divisor) + { + try + { + int remainder; + int quotient = Math.DivRem(dividend, divisor, out remainder); + return new Tuple(quotient, remainder); + } + catch (DivideByZeroException) + { + return null; + } + } } // The example displays the following output: // 136945 \ 178 = 769, remainder 63 // 2147483647 \ -2073 = -1035930, remainder 757 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Program.cs b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Program.cs new file mode 100644 index 00000000000..e84b3c44eae --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Program.cs @@ -0,0 +1,2 @@ +CompareToExample1.Run(); +CompareToExample2.Run(); diff --git a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Project.csproj b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index d0996174ea7..73b2143e66d 100644 --- a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -1,32 +1,32 @@ // using System; -public class Example +public class CompareToExample1 { - public static void Main() - { - Tuple>[] scores = - { new Tuple>("Jack", 78), - new Tuple>("Abbey", 92), + public static void Run() + { + Tuple>[] scores = + [ new Tuple>("Jack", 78), + new Tuple>("Abbey", 92), new Tuple>("Dave", 88), - new Tuple>("Sam", 91), + new Tuple>("Sam", 91), new Tuple>("Ed", null), new Tuple>("Penelope", 82), new Tuple>("Linda", 99), - new Tuple>("Judith", 84) }; + new Tuple>("Judith", 84) ]; - Console.WriteLine("The values in unsorted order:"); - foreach (Tuple> score in scores) - Console.WriteLine(score.ToString()); + Console.WriteLine("The values in unsorted order:"); + foreach (Tuple> score in scores) + Console.WriteLine(score); - Console.WriteLine(); + Console.WriteLine(); - Array.Sort(scores); + Array.Sort(scores); - Console.WriteLine("The values in sorted order:"); - foreach (Tuple> score in scores) - Console.WriteLine(score.ToString()); - } + Console.WriteLine("The values in sorted order:"); + foreach (Tuple> score in scores) + Console.WriteLine(score); + } } // The example displays the following output; // The values in unsorted order: @@ -38,7 +38,7 @@ public static void Main() // (Penelope, 82) // (Linda, 99) // (Judith, 84) -// +// // The values in sorted order: // (Abbey, 92) // (Dave, 88) diff --git a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 10f13edf8ca..7cc9e07b8c3 100644 --- a/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1,T2/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -5,47 +5,47 @@ public class ScoreComparer : IComparer { - public int Compare(object x, object y) - { - Tuple tX = x as Tuple; - if (tX == null) - { - return 0; - } - else - { - Tuple tY = y as Tuple; - return Comparer.Default.Compare(tX.Item2, tY.Item2); - } - } + public int Compare(object x, object y) + { + Tuple tX = x as Tuple; + if (tX == null) + { + return 0; + } + else + { + Tuple tY = y as Tuple; + return Comparer.Default.Compare(tX.Item2, tY.Item2); + } + } } -public class Example +public class CompareToExample2 { - public static void Main() - { - Tuple>[] scores = - { new Tuple>("Jack", 78), - new Tuple>("Abbey", 92), + public static void Run() + { + Tuple>[] scores = + [ new Tuple>("Jack", 78), + new Tuple>("Abbey", 92), new Tuple>("Dave", 88), - new Tuple>("Sam", 91), + new Tuple>("Sam", 91), new Tuple>("Ed", null), new Tuple>("Penelope", 82), new Tuple>("Linda", 99), - new Tuple>("Judith", 84) }; + new Tuple>("Judith", 84) ]; - Console.WriteLine("The values in unsorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); + Console.WriteLine("The values in unsorted order:"); + foreach (var score in scores) + Console.WriteLine(score); - Console.WriteLine(); + Console.WriteLine(); - Array.Sort(scores, new ScoreComparer>()); + Array.Sort(scores, new ScoreComparer>()); - Console.WriteLine("The values in sorted order:"); - foreach (var score in scores) - Console.WriteLine(score.ToString()); - } + Console.WriteLine("The values in sorted order:"); + foreach (var score in scores) + Console.WriteLine(score); + } } // The example displays the following output; // The values in unsorted order: @@ -57,7 +57,7 @@ public static void Main() // (Penelope, 82) // (Linda, 99) // (Judith, 84) -// +// // The values in sorted order: // (Ed, ) // (Jack, 78) diff --git a/snippets/csharp/System/TupleT1,T2/ToString/tostring1.cs b/snippets/csharp/System/TupleT1,T2/ToString/tostring1.cs index 47d86b30856..0356a33334f 100644 --- a/snippets/csharp/System/TupleT1,T2/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1,T2/ToString/tostring1.cs @@ -3,20 +3,20 @@ public class Class1 { - public static void Main() - { - Tuple>[] scores = - { new Tuple>("Abbey", 92), + public static void Main() + { + Tuple>[] scores = + [ new Tuple>("Abbey", 92), new Tuple>("Dave", 88), new Tuple>("Ed", null), new Tuple>("Jack", 78), new Tuple>("Linda", 99), - new Tuple>("Judith", 84), + new Tuple>("Judith", 84), new Tuple>("Penelope", 82), - new Tuple>("Sam", 91) }; - foreach (var score in scores) - Console.WriteLine(score.ToString()); - } + new Tuple>("Sam", 91) ]; + foreach (var score in scores) + Console.WriteLine(score.ToString()); + } } // The example displays the following output: // (Abbey, 92) @@ -27,4 +27,4 @@ public static void Main() // (Judith, 84) // (Penelope, 82) // (Sam, 91) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1/Equals/Program.cs b/snippets/csharp/System/TupleT1/Equals/Program.cs new file mode 100644 index 00000000000..76c3e934c0b --- /dev/null +++ b/snippets/csharp/System/TupleT1/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsExample1.Run(); +EqualsExample2.Run(); diff --git a/snippets/csharp/System/TupleT1/Equals/Project.csproj b/snippets/csharp/System/TupleT1/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/TupleT1/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/TupleT1/Equals/equals1.cs b/snippets/csharp/System/TupleT1/Equals/equals1.cs index 5a365c682c9..2c60f157b24 100644 --- a/snippets/csharp/System/TupleT1/Equals/equals1.cs +++ b/snippets/csharp/System/TupleT1/Equals/equals1.cs @@ -1,36 +1,31 @@ // using System; -public class Example +public class EqualsExample1 { - public static void Main() - { - var doubleTuple1 = Tuple.Create(12.3455); - var doubleTuple2 = Tuple.Create(16.8912); - var doubleTuple3 = Tuple.Create(12.3455); - var singleTuple1 = Tuple.Create(12.3455f); - var tuple2 = Tuple.Create("James", 97.3); - - // Compare first tuple with a Tuple(Of Double) with a different value. - TestEquality(doubleTuple1, doubleTuple2); - // Compare first tuple with a Tuple(Of Double) with the same value. - TestEquality(doubleTuple1, doubleTuple3); - // Compare first tuple with a Tuple(Of Single) with the same value. - TestEquality(doubleTuple1, singleTuple1); - // Compare a 1-tuple with a 2-tuple. - TestEquality(doubleTuple1, tuple2); - } + public static void Run() + { + var doubleTuple1 = Tuple.Create(12.3455); + var doubleTuple2 = Tuple.Create(16.8912); + var doubleTuple3 = Tuple.Create(12.3455); + var singleTuple1 = Tuple.Create(12.3455f); + var tuple2 = Tuple.Create("James", 97.3); - private static void TestEquality(Tuple tuple, object obj) - { - Console.WriteLine("{0} = {1}: {2}", tuple.ToString(), - obj.ToString(), - tuple.Equals(obj)); - } + // Compare first tuple with a Tuple(Of Double) with a different value. + TestEquality(doubleTuple1, doubleTuple2); + // Compare first tuple with a Tuple(Of Double) with the same value. + TestEquality(doubleTuple1, doubleTuple3); + // Compare first tuple with a Tuple(Of Single) with the same value. + TestEquality(doubleTuple1, singleTuple1); + // Compare a 1-tuple with a 2-tuple. + TestEquality(doubleTuple1, tuple2); + } + + private static void TestEquality(Tuple tuple, object obj) => Console.WriteLine($"{tuple} = {obj}: {tuple.Equals(obj)}"); } // The example displays the following output: // (12.3455) = (16.8912): False // (12.3455) = (12.3455): True // (12.3455) = (12.3455): False // (12.3455) = (James, 97.3): False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1/Equals/equals2.cs b/snippets/csharp/System/TupleT1/Equals/equals2.cs index cc3bfa89197..24acf28869f 100644 --- a/snippets/csharp/System/TupleT1/Equals/equals2.cs +++ b/snippets/csharp/System/TupleT1/Equals/equals2.cs @@ -4,55 +4,47 @@ public class Tuple1Comparer : IEqualityComparer { - new public bool Equals(object x, object y) - { - // Check if x is a floating point type. If x is, then y is. - if (x is double | x is float) - { - // Convert to Double values. - double dblX = (double) x; - double dblY = (double) y; - if (Double.IsNaN(dblX) | Double.IsInfinity(dblX) | - Double.IsNaN(dblY) | Double.IsInfinity(dblY)) - return dblX.Equals(dblY); - else - return Math.Abs(dblX - dblY) <= dblX * .0001; - } - else - { - return x.Equals(y); - } - } - - public int GetHashCode(object obj) - { - return obj.GetHashCode(); - } + new public bool Equals(object x, object y) + { + // Check if x is a floating point type. If x is, then y is. + if (x is double | x is float) + { + // Convert to Double values. + double dblX = (double)x; + double dblY = (double)y; + if (double.IsNaN(dblX) | double.IsInfinity(dblX) | + double.IsNaN(dblY) | double.IsInfinity(dblY)) + return dblX.Equals(dblY); + else + return Math.Abs(dblX - dblY) <= dblX * .0001; + } + else + { + return x.Equals(y); + } + } + + public int GetHashCode(object obj) => obj.GetHashCode(); } -public class Example +public class EqualsExample2 { - public static void Main() - { - var doubleTuple1 = Tuple.Create(12.3455); + public static void Run() + { + var doubleTuple1 = Tuple.Create(12.3455); - var doubleTuple2 = Tuple.Create(16.8912); - var doubleTuple3 = Tuple.Create(12.3449599); + var doubleTuple2 = Tuple.Create(16.8912); + var doubleTuple3 = Tuple.Create(12.3449599); - // Compare first tuple with a Tuple with a different value. - TestEquality(doubleTuple1, doubleTuple2); - //Compare first tuple with a Tuple with the same value. - TestEquality(doubleTuple1, doubleTuple3); - } + // Compare first tuple with a Tuple with a different value. + TestEquality(doubleTuple1, doubleTuple2); + //Compare first tuple with a Tuple with the same value. + TestEquality(doubleTuple1, doubleTuple3); + } - private static void TestEquality(Tuple tuple, object obj) - { - Console.WriteLine("{0} = {1}: {2}", tuple.ToString(), - obj.ToString(), - ((IStructuralEquatable)tuple).Equals(obj, new Tuple1Comparer())); - } + private static void TestEquality(Tuple tuple, object obj) => Console.WriteLine($"{tuple} = {obj}: {((IStructuralEquatable)tuple).Equals(obj, new Tuple1Comparer())}"); } // The example displays the following output: // (12.3455) = (16.8912): False // (12.3455) = (12.3449599): True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1/Item1/item1.cs b/snippets/csharp/System/TupleT1/Item1/item1.cs index d5d736a519c..95686fa2c6d 100644 --- a/snippets/csharp/System/TupleT1/Item1/item1.cs +++ b/snippets/csharp/System/TupleT1/Item1/item1.cs @@ -4,31 +4,27 @@ public class Example { - public static void Main() - { - var tuple1 = Tuple.Create(-1.23445e-32); - // Display information about this singleton. - Type tuple1Type = tuple1.GetType(); - Console.WriteLine("First 1-Tuple:"); - Console.WriteLine(" Type: {0}", tuple1Type.Name); - Console.WriteLine(" Generic Parameter Type: {0}", - tuple1Type.GetGenericArguments()[0]); - Console.WriteLine(" Component Value: {0}", tuple1.Item1); - Console.WriteLine(" Component Value Type: {0}", - tuple1.Item1.GetType().Name); - Console.WriteLine(); - - var tuple2 = Tuple.Create((BigInteger)1.83789322281780983781356676e103); - // Display information about this singleton. - Type tuple2Type = tuple2.GetType(); - Console.WriteLine("Second 1-Tuple:"); - Console.WriteLine(" Type: {0}", tuple2Type.Name); - Console.WriteLine(" Generic Parameter Type: {0}", - tuple2Type.GetGenericArguments()[0]); - Console.WriteLine(" Component Value: {0}", tuple2.Item1); - Console.WriteLine(" Component Value Type: {0}", - tuple2.Item1.GetType().Name); - } + public static void Main() + { + var tuple1 = Tuple.Create(-1.23445e-32); + // Display information about this singleton. + Type tuple1Type = tuple1.GetType(); + Console.WriteLine("First 1-Tuple:"); + Console.WriteLine($" Type: {tuple1Type.Name}"); + Console.WriteLine($" Generic Parameter Type: {tuple1Type.GetGenericArguments()[0]}"); + Console.WriteLine($" Component Value: {tuple1.Item1}"); + Console.WriteLine($" Component Value Type: {tuple1.Item1.GetType().Name}"); + Console.WriteLine(); + + var tuple2 = Tuple.Create((BigInteger)1.83789322281780983781356676e103); + // Display information about this singleton. + Type tuple2Type = tuple2.GetType(); + Console.WriteLine("Second 1-Tuple:"); + Console.WriteLine($" Type: {tuple2Type.Name}"); + Console.WriteLine($" Generic Parameter Type: {tuple2Type.GetGenericArguments()[0]}"); + Console.WriteLine($" Component Value: {tuple2.Item1}"); + Console.WriteLine($" Component Value Type: {tuple2.Item1.GetType().Name}"); + } } // The example displays the following output: // First 1-Tuple: @@ -36,10 +32,10 @@ public static void Main() // Generic Parameter Type: System.Double // Component Value: -1.23445E-32 // Component Value Type: Double -// +// // Second 1-Tuple: // Type: Tuple`1 // Generic Parameter Type: System.Numerics.BigInteger // Component Value: 1.8378932228178098168858909492E+103 // Component Value Type: BigInteger -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto1.cs b/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto1.cs index 23cac7f3614..37ac3d25cef 100644 --- a/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto1.cs +++ b/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto1.cs @@ -3,34 +3,34 @@ class Example { - static void Main() - { - Tuple[] values = { Tuple.Create(13.54), - Tuple.Create(Double.NaN), + static void Main() + { + Tuple[] values = [ Tuple.Create(13.54), + Tuple.Create(double.NaN), Tuple.Create(-189.42993), - Tuple.Create(Double.PositiveInfinity), - Tuple.Create(Double.Epsilon), + Tuple.Create(double.PositiveInfinity), + Tuple.Create(double.Epsilon), Tuple.Create(1.934E-17), - Tuple.Create(Double.NegativeInfinity), + Tuple.Create(double.NegativeInfinity), Tuple.Create(-0.000000000003588), - null }; - Console.WriteLine("The values in unsorted order:"); - foreach (var value in values) - if (value != null) - Console.WriteLine(" {0}", value.Item1); - else - Console.WriteLine(" "); - Console.WriteLine(); + null ]; + Console.WriteLine("The values in unsorted order:"); + foreach (var value in values) + if (value != null) + Console.WriteLine($" {value.Item1}"); + else + Console.WriteLine(" "); + Console.WriteLine(); - Array.Sort(values); + Array.Sort(values); - Console.WriteLine("The values in sorted order:"); - foreach (var value in values) - if (value != null) - Console.WriteLine(" {0}", value.Item1); - else - Console.WriteLine(" "); - } + Console.WriteLine("The values in sorted order:"); + foreach (var value in values) + if (value != null) + Console.WriteLine($" {value.Item1}"); + else + Console.WriteLine(" "); + } } // The example displays the following output: // The values in unsorted order: diff --git a/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto2.cs b/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto2.cs index 430bb392f3e..045e620f409 100644 --- a/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto2.cs +++ b/snippets/csharp/System/TupleT1/System.Collections.IStructuralComparable.CompareTo/compareto2.cs @@ -4,41 +4,38 @@ public class DescendingComparer : IComparer { - public int Compare(T x, T y) - { - return -1 * Comparer.Default.Compare(x, y); - } + public int Compare(T x, T y) => -1 * Comparer.Default.Compare(x, y); } class CompareTo2 { - static void Main() - { - Tuple[] values = { Tuple.Create(13.54), - Tuple.Create(Double.NaN), + static void Main() + { + Tuple[] values = [ Tuple.Create(13.54), + Tuple.Create(double.NaN), Tuple.Create(-189.42993), - Tuple.Create(Double.PositiveInfinity), - Tuple.Create(Double.Epsilon), + Tuple.Create(double.PositiveInfinity), + Tuple.Create(double.Epsilon), Tuple.Create(1.934E-17), - Tuple.Create(Double.NegativeInfinity), + Tuple.Create(double.NegativeInfinity), Tuple.Create(-0.000000000003588), - null }; - Console.WriteLine("The values in unsorted order:"); - foreach (var value in values) - if (value != null) - Console.WriteLine(" {0}", value.Item1); - else - Console.WriteLine(" "); - Console.WriteLine(); + null ]; + Console.WriteLine("The values in unsorted order:"); + foreach (var value in values) + if (value != null) + Console.WriteLine($" {value.Item1}"); + else + Console.WriteLine(" "); + Console.WriteLine(); - Array.Sort(values, new DescendingComparer>()); + Array.Sort(values, new DescendingComparer>()); - Console.WriteLine("The values sorted in descending order:"); - foreach (var value in values) - if (value != null) - Console.WriteLine(" {0}", value.Item1); - else - Console.WriteLine(" "); + Console.WriteLine("The values sorted in descending order:"); + foreach (var value in values) + if (value != null) + Console.WriteLine($" {value.Item1}"); + else + Console.WriteLine(" "); } } // The example displays the following output: diff --git a/snippets/csharp/System/TupleT1/ToString/tostring1.cs b/snippets/csharp/System/TupleT1/ToString/tostring1.cs index ff6f5293107..6136d54443b 100644 --- a/snippets/csharp/System/TupleT1/ToString/tostring1.cs +++ b/snippets/csharp/System/TupleT1/ToString/tostring1.cs @@ -3,29 +3,26 @@ public class Example { - public static void Main() - { - var tuple1Double = Tuple.Create(3.456e-18); - DisplayTuple(tuple1Double); - - var tuple1String = Tuple.Create("Australia"); - DisplayTuple(tuple1String); - - var tuple1Bool = Tuple.Create(true); - DisplayTuple(tuple1Bool); - - var tuple1Char = Tuple.Create('a'); - DisplayTuple(tuple1Char); - } + public static void Main() + { + var tuple1Double = Tuple.Create(3.456e-18); + DisplayTuple(tuple1Double); - private static void DisplayTuple(object obj) - { - Console.WriteLine(obj.ToString()); - } + var tuple1String = Tuple.Create("Australia"); + DisplayTuple(tuple1String); + + var tuple1Bool = Tuple.Create(true); + DisplayTuple(tuple1Bool); + + var tuple1Char = Tuple.Create('a'); + DisplayTuple(tuple1Char); + } + + private static void DisplayTuple(object obj) => Console.WriteLine(obj.ToString()); } // The example displays the following output: // (3.456E-18) // (Australia) // (True) // (a) -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/AssemblyQualifiedName/fullname1.cs b/snippets/csharp/System/Type/AssemblyQualifiedName/fullname1.cs index 4ff74780f6b..ce3d21c98c2 100644 --- a/snippets/csharp/System/Type/AssemblyQualifiedName/fullname1.cs +++ b/snippets/csharp/System/Type/AssemblyQualifiedName/fullname1.cs @@ -7,17 +7,17 @@ public class Example { public static void Main() { - Type t = typeof(String); + Type t = typeof(string); ShowTypeInfo(t); t = typeof(List<>); ShowTypeInfo(t); - var list = new List(); + var list = new List(); t = list.GetType(); ShowTypeInfo(t); - Object v = 12; + object v = 12; t = v.GetType(); ShowTypeInfo(t); diff --git a/snippets/csharp/System/Type/Attributes/attributes1.cs b/snippets/csharp/System/Type/Attributes/attributes1.cs index c76637c5c15..290499fb41e 100644 --- a/snippets/csharp/System/Type/Attributes/attributes1.cs +++ b/snippets/csharp/System/Type/Attributes/attributes1.cs @@ -9,99 +9,99 @@ internal struct S public abstract class Example { - protected sealed class NestedClass {} + protected sealed class NestedClass { } - public interface INested {} + public interface INested { } public static void Main() { // Create an array of types. - Type[] types = { typeof(Example), typeof(NestedClass), - typeof(INested), typeof(S) }; + Type[] types = [typeof(Example), typeof(NestedClass), + typeof(INested), typeof(S)]; - foreach (var t in types) + foreach (var t in types) { - Console.WriteLine("Attributes for type {0}:", t.Name); + Console.WriteLine($"Attributes for type {t.Name}:"); - TypeAttributes attr = t.Attributes; + TypeAttributes attr = t.Attributes; - // To test for visibility attributes, you must use the visibility mask. - TypeAttributes visibility = attr & TypeAttributes.VisibilityMask; - switch (visibility) - { - case TypeAttributes.NotPublic: - Console.WriteLine(" ...is not public"); - break; - case TypeAttributes.Public: - Console.WriteLine(" ...is public"); - break; - case TypeAttributes.NestedPublic: - Console.WriteLine(" ...is nested and public"); - break; - case TypeAttributes.NestedPrivate: - Console.WriteLine(" ...is nested and private"); - break; - case TypeAttributes.NestedFamANDAssem: - Console.WriteLine(" ...is nested, and inheritable only within the assembly" + - "\n (cannot be declared in C#)"); - break; - case TypeAttributes.NestedAssembly: - Console.WriteLine(" ...is nested and internal"); - break; - case TypeAttributes.NestedFamily: - Console.WriteLine(" ...is nested and protected"); - break; - case TypeAttributes.NestedFamORAssem: - Console.WriteLine(" ...is nested and protected internal"); - break; - } + // To test for visibility attributes, you must use the visibility mask. + TypeAttributes visibility = attr & TypeAttributes.VisibilityMask; + switch (visibility) + { + case TypeAttributes.NotPublic: + Console.WriteLine(" ...is not public"); + break; + case TypeAttributes.Public: + Console.WriteLine(" ...is public"); + break; + case TypeAttributes.NestedPublic: + Console.WriteLine(" ...is nested and public"); + break; + case TypeAttributes.NestedPrivate: + Console.WriteLine(" ...is nested and private"); + break; + case TypeAttributes.NestedFamANDAssem: + Console.WriteLine(" ...is nested, and inheritable only within the assembly" + + "\n (cannot be declared in C#)"); + break; + case TypeAttributes.NestedAssembly: + Console.WriteLine(" ...is nested and internal"); + break; + case TypeAttributes.NestedFamily: + Console.WriteLine(" ...is nested and protected"); + break; + case TypeAttributes.NestedFamORAssem: + Console.WriteLine(" ...is nested and protected internal"); + break; + } - // Use the layout mask to test for layout attributes. - TypeAttributes layout = attr & TypeAttributes.LayoutMask; - switch (layout) - { - case TypeAttributes.AutoLayout: - Console.WriteLine(" ...is AutoLayout"); - break; - case TypeAttributes.SequentialLayout: - Console.WriteLine(" ...is SequentialLayout"); - break; - case TypeAttributes.ExplicitLayout: - Console.WriteLine(" ...is ExplicitLayout"); - break; - } + // Use the layout mask to test for layout attributes. + TypeAttributes layout = attr & TypeAttributes.LayoutMask; + switch (layout) + { + case TypeAttributes.AutoLayout: + Console.WriteLine(" ...is AutoLayout"); + break; + case TypeAttributes.SequentialLayout: + Console.WriteLine(" ...is SequentialLayout"); + break; + case TypeAttributes.ExplicitLayout: + Console.WriteLine(" ...is ExplicitLayout"); + break; + } - // Use the class semantics mask to test for class semantics attributes. - TypeAttributes classSemantics = attr & TypeAttributes.ClassSemanticsMask; - switch (classSemantics) - { - case TypeAttributes.Class: - if (t.IsValueType) - { - Console.WriteLine(" ...is a value type"); - } - else - { - Console.WriteLine(" ...is a class"); - } - break; - case TypeAttributes.Interface: - Console.WriteLine(" ...is an interface"); - break; - } + // Use the class semantics mask to test for class semantics attributes. + TypeAttributes classSemantics = attr & TypeAttributes.ClassSemanticsMask; + switch (classSemantics) + { + case TypeAttributes.Class: + if (t.IsValueType) + { + Console.WriteLine(" ...is a value type"); + } + else + { + Console.WriteLine(" ...is a class"); + } + break; + case TypeAttributes.Interface: + Console.WriteLine(" ...is an interface"); + break; + } - if ((attr & TypeAttributes.Abstract) != 0) - { - Console.WriteLine(" ...is abstract"); - } + if ((attr & TypeAttributes.Abstract) != 0) + { + Console.WriteLine(" ...is abstract"); + } - if ((attr & TypeAttributes.Sealed) != 0) - { - Console.WriteLine(" ...is sealed"); - } - - Console.WriteLine(); - } + if ((attr & TypeAttributes.Sealed) != 0) + { + Console.WriteLine(" ...is sealed"); + } + + Console.WriteLine(); + } } } // The example displays the following output: @@ -128,4 +128,4 @@ public static void Main() // ...is SequentialLayout // ...is a value type // ...is sealed -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/BaseType/basetype3.cs b/snippets/csharp/System/Type/BaseType/basetype3.cs index 500bf5b7dd4..6d0aed03f61 100644 --- a/snippets/csharp/System/Type/BaseType/basetype3.cs +++ b/snippets/csharp/System/Type/BaseType/basetype3.cs @@ -3,39 +3,41 @@ public class Example { - public static void Main() - { - foreach (var t in typeof(Example).Assembly.GetTypes()) { - Console.WriteLine("{0} derived from: ", t.FullName); - var derived = t; - do { - derived = derived.BaseType; - if (derived != null) - Console.WriteLine(" {0}", derived.FullName); - } while (derived != null); - Console.WriteLine(); - } - } + public static void Main() + { + foreach (var t in typeof(Example).Assembly.GetTypes()) + { + Console.WriteLine($"{t.FullName} derived from: "); + var derived = t; + do + { + derived = derived.BaseType; + if (derived != null) + Console.WriteLine($" {derived.FullName}"); + } while (derived != null); + Console.WriteLine(); + } + } } -public class A {} +public class A { } public class B : A -{} +{ } -public class C : B -{} +public class C : B +{ } // The example displays the following output: // Example derived from: // System.Object -// +// // A derived from: // System.Object -// +// // B derived from: // A // System.Object -// +// // C derived from: // B // A diff --git a/snippets/csharp/System/Type/BaseType/remarks.cs b/snippets/csharp/System/Type/BaseType/remarks.cs index fbc5b1bee05..252849ac5a5 100644 --- a/snippets/csharp/System/Type/BaseType/remarks.cs +++ b/snippets/csharp/System/Type/BaseType/remarks.cs @@ -1,4 +1,4 @@ -using System; + // class B { } @@ -7,5 +7,5 @@ class C : B { } class ProgStubClass { - public static void Main() {} -} \ No newline at end of file + public static void Main() { } +} diff --git a/snippets/csharp/System/Type/BaseType/testbasetype.cs b/snippets/csharp/System/Type/BaseType/testbasetype.cs index 08e8fc01e5e..f324d83297c 100644 --- a/snippets/csharp/System/Type/BaseType/testbasetype.cs +++ b/snippets/csharp/System/Type/BaseType/testbasetype.cs @@ -5,7 +5,7 @@ class TestType public static void Main() { Type t = typeof(int); - Console.WriteLine("{0} inherits from {1}.", t,t.BaseType); + Console.WriteLine($"{t} inherits from {t.BaseType}."); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/ContainsGenericParameters/source.cs b/snippets/csharp/System/Type/ContainsGenericParameters/source.cs index 065bda276aa..c4d1e611e5c 100644 --- a/snippets/csharp/System/Type/ContainsGenericParameters/source.cs +++ b/snippets/csharp/System/Type/ContainsGenericParameters/source.cs @@ -1,7 +1,7 @@ // using System; -using System.Reflection; -using System.Collections.Generic; + + // Define a base class with two type parameters. public class Base { } @@ -25,10 +25,10 @@ public static void Main() "\r\n--- Display a generic type and the open constructed"); Console.WriteLine(" type from which it is derived."); - // Create a Type object representing the generic type definition + // Create a Type object representing the generic type definition // for the Derived type, by omitting the type argument. (For // types with multiple type parameters, supply the commas but - // omit the type arguments.) + // omit the type arguments.) // Type derivedType = typeof(Derived<>); DisplayGenericTypeInfo(derivedType); @@ -39,16 +39,13 @@ public static void Main() private static void DisplayGenericTypeInfo(Type t) { - Console.WriteLine("\r\n{0}", t); + Console.WriteLine($"\r\n{t}"); - Console.WriteLine("\tIs this a generic type definition? {0}", - t.IsGenericTypeDefinition); + Console.WriteLine($"\tIs this a generic type definition? {t.IsGenericTypeDefinition}"); - Console.WriteLine("\tIs it a generic type? {0}", - t.IsGenericType); + Console.WriteLine($"\tIs it a generic type? {t.IsGenericType}"); - Console.WriteLine("\tDoes it have unassigned generic parameters? {0}", - t.ContainsGenericParameters); + Console.WriteLine($"\tDoes it have unassigned generic parameters? {t.ContainsGenericParameters}"); if (t.IsGenericType) { @@ -56,8 +53,7 @@ private static void DisplayGenericTypeInfo(Type t) // Type[] typeArguments = t.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", - typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { @@ -66,14 +62,11 @@ private static void DisplayGenericTypeInfo(Type t) // if (tParam.IsGenericParameter) { - Console.WriteLine( - "\t\t{0} (unassigned - parameter position {1})", - tParam, - tParam.GenericParameterPosition); + Console.WriteLine($"\t\t{tParam} (unassigned - parameter position {tParam.GenericParameterPosition})"); } else { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } diff --git a/snippets/csharp/System/Type/DeclaringMethod/source.cs b/snippets/csharp/System/Type/DeclaringMethod/source.cs index 486c25baa98..391fd17f392 100644 --- a/snippets/csharp/System/Type/DeclaringMethod/source.cs +++ b/snippets/csharp/System/Type/DeclaringMethod/source.cs @@ -6,10 +6,7 @@ // Define a class with a generic method. public class Example { - public static void Generic(T toDisplay) - { - Console.WriteLine("\r\nHere it is: {0}", toDisplay); - } + public static void Generic(T toDisplay) => Console.WriteLine($"\r\nHere it is: {toDisplay}"); } // @@ -37,7 +34,7 @@ public static void Main() // // Invoke the method. - object[] args = {42}; + object[] args = [42]; miConstructed.Invoke(null, args); // Invoke the method normally. @@ -48,28 +45,24 @@ public static void Main() // and show it's the same as the original definition. // MethodInfo miDef = miConstructed.GetGenericMethodDefinition(); - Console.WriteLine("\r\nThe definition is the same: {0}", - miDef == mi); + Console.WriteLine($"\r\nThe definition is the same: {miDef == mi}"); // } private static void DisplayGenericMethodInfo(MethodInfo mi) { - Console.WriteLine("\r\n{0}", mi); + Console.WriteLine($"\r\n{mi}"); // - Console.WriteLine("\tIs this a generic method definition? {0}", - mi.IsGenericMethodDefinition); + Console.WriteLine($"\tIs this a generic method definition? {mi.IsGenericMethodDefinition}"); // // - Console.WriteLine("\tIs it a generic method? {0}", - mi.IsGenericMethod); + Console.WriteLine($"\tIs it a generic method? {mi.IsGenericMethod}"); // // - Console.WriteLine("\tDoes it have unassigned generic parameters? {0}", - mi.ContainsGenericParameters); + Console.WriteLine($"\tDoes it have unassigned generic parameters? {mi.ContainsGenericParameters}"); // // @@ -79,8 +72,7 @@ private static void DisplayGenericMethodInfo(MethodInfo mi) { Type[] typeArguments = mi.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", - typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { @@ -97,7 +89,7 @@ private static void DisplayGenericMethodInfo(MethodInfo mi) } else { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } diff --git a/snippets/csharp/System/Type/DeclaringType/remarks.cs b/snippets/csharp/System/Type/DeclaringType/remarks.cs index 65cefe2b1d1..8df6af54a2b 100644 --- a/snippets/csharp/System/Type/DeclaringType/remarks.cs +++ b/snippets/csharp/System/Type/DeclaringType/remarks.cs @@ -5,9 +5,9 @@ class ProgStubClass { public static void Main() { -// + // Type t = typeof(List).GetMethod("ConvertAll").GetGenericArguments()[0].DeclaringType; -// - Console.WriteLine("Declaring type: {0:s}", t.FullName); + // + Console.WriteLine($"Declaring type: {t.FullName:s}"); } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Type/DeclaringType/source.cs b/snippets/csharp/System/Type/DeclaringType/source.cs index c89abffcee0..1ed1680ee72 100644 --- a/snippets/csharp/System/Type/DeclaringType/source.cs +++ b/snippets/csharp/System/Type/DeclaringType/source.cs @@ -1,6 +1,6 @@ // using System; -using System.Reflection; + public abstract class dtype { @@ -14,11 +14,7 @@ public abstract class MyClassB : MyClassA { } - public static void Main(string[] args) - { - Console.WriteLine("The declaring type of m is {0}.", - typeof(MyClassB).GetMethod("m").DeclaringType); - } + public static void Main(string[] args) => Console.WriteLine($"The declaring type of m is {typeof(MyClassB).GetMethod("m").DeclaringType}."); } /* The example produces the following output: diff --git a/snippets/csharp/System/Type/DefaultBinder/type_defaultbinder.cs b/snippets/csharp/System/Type/DefaultBinder/type_defaultbinder.cs index cf63b5bcb1d..79837db8991 100644 --- a/snippets/csharp/System/Type/DefaultBinder/type_defaultbinder.cs +++ b/snippets/csharp/System/Type/DefaultBinder/type_defaultbinder.cs @@ -9,23 +9,20 @@ public static void Main() try { Binder defaultBinder = Type.DefaultBinder; - MyClass myClass = new MyClass(); + MyClass myClass = new(); // Invoke the HelloWorld method of MyClass. myClass.GetType().InvokeMember("HelloWorld", BindingFlags.InvokeMethod, - defaultBinder, myClass, new object [] {}); + defaultBinder, myClass, []); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception :" + e.Message); } - } + } class MyClass { - public void HelloWorld() - { - Console.WriteLine("Hello World"); - } + public void HelloWorld() => Console.WriteLine("Hello World"); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/EmptyTypes/Project.csproj b/snippets/csharp/System/Type/EmptyTypes/Project.csproj new file mode 100644 index 00000000000..1eddf5e00ac --- /dev/null +++ b/snippets/csharp/System/Type/EmptyTypes/Project.csproj @@ -0,0 +1,6 @@ + + + Library + net10.0 + + diff --git a/snippets/csharp/System/Type/EmptyTypes/source.cs b/snippets/csharp/System/Type/EmptyTypes/source.cs index 904cf7bd34d..dfe135cac1a 100644 --- a/snippets/csharp/System/Type/EmptyTypes/source.cs +++ b/snippets/csharp/System/Type/EmptyTypes/source.cs @@ -1,15 +1,15 @@ using System; -using System.IO; using System.Reflection; public class Sample { - public void Method(Type type) { + public void Method(Type type) + { ConstructorInfo cInfo; -// -cInfo = type.GetConstructor (BindingFlags.ExactBinding, null, - Type.EmptyTypes, null); -// + // + cInfo = type.GetConstructor(BindingFlags.ExactBinding, null, + Type.EmptyTypes, null); + // } } diff --git a/snippets/csharp/System/Type/Equals/EqualsEx1.cs b/snippets/csharp/System/Type/Equals/EqualsEx1.cs index 6d50d87251a..acb0ad6a5d3 100644 --- a/snippets/csharp/System/Type/Equals/EqualsEx1.cs +++ b/snippets/csharp/System/Type/Equals/EqualsEx1.cs @@ -3,50 +3,49 @@ using System.Collections.Generic; using System.Reflection; -public class Example +public class EqualsEx1Example { - public static void Main() - { - Type t =typeof(int); - Object obj1 = typeof(int).GetTypeInfo(); - IsEqualTo(t, obj1); + public static void Run() + { + Type t = typeof(int); + object obj1 = typeof(int).GetTypeInfo(); + IsEqualTo(t, obj1); - Object obj2 = typeof(String); - IsEqualTo(t, obj2); - - t = typeof(Object); - Object obj3 = typeof(Object); - IsEqualTo(t, obj3); - - t = typeof(List<>); - Object obj4 = (new List()).GetType(); - IsEqualTo(t, obj4); - - t = typeof(Type); - Object obj5 = null; - IsEqualTo(t, obj5); - } - - private static void IsEqualTo(Type t, Object inst) - { - Type t2 = inst as Type; - if (t2 != null) - Console.WriteLine("{0} = {1}: {2}", t.Name, t2.Name, - t.Equals(t2)); - else - Console.WriteLine("Cannot cast the argument to a type."); + object obj2 = typeof(string); + IsEqualTo(t, obj2); - Console.WriteLine(); - } + t = typeof(object); + object obj3 = typeof(object); + IsEqualTo(t, obj3); + + t = typeof(List<>); + object obj4 = (new List()).GetType(); + IsEqualTo(t, obj4); + + t = typeof(Type); + object obj5 = null; + IsEqualTo(t, obj5); + } + + private static void IsEqualTo(Type t, object inst) + { + Type t2 = inst as Type; + if (t2 != null) + Console.WriteLine($"{t.Name} = {t2.Name}: {t.Equals(t2)}"); + else + Console.WriteLine("Cannot cast the argument to a type."); + + Console.WriteLine(); + } } // The example displays the following output: // Int32 = Int32: True -// +// // Int32 = String: False -// +// // Object = Object: True -// +// // List`1 = List`1: False -// +// // Cannot cast the argument to a type. // diff --git a/snippets/csharp/System/Type/Equals/Program.cs b/snippets/csharp/System/Type/Equals/Program.cs new file mode 100644 index 00000000000..eee72699813 --- /dev/null +++ b/snippets/csharp/System/Type/Equals/Program.cs @@ -0,0 +1,2 @@ +EqualsEx1Example.Run(); +EqualsSourceExample.Run(); diff --git a/snippets/csharp/System/Type/Equals/Project.csproj b/snippets/csharp/System/Type/Equals/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/Equals/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/Equals/source.cs b/snippets/csharp/System/Type/Equals/source.cs index 2e1a1ec3040..e8abbf1e765 100644 --- a/snippets/csharp/System/Type/Equals/source.cs +++ b/snippets/csharp/System/Type/Equals/source.cs @@ -1,32 +1,32 @@ // using System; -using System.Reflection; -class Example + +class EqualsSourceExample { - public static void Main() + public static void Run() { - Type a = typeof(System.String); - Type b = typeof(System.Int32); + Type a = typeof(string); + Type b = typeof(int); - Console.WriteLine("{0} == {1}: {2}", a, b, a.Equals(b)); + Console.WriteLine($"{a} == {b}: {a.Equals(b)}"); // The Type objects in a and b are not equal, // because they represent different types. - a = typeof(Example); - b = new Example().GetType(); + a = typeof(EqualsSourceExample); + b = new EqualsSourceExample().GetType(); - Console.WriteLine("{0} is equal to {1}: {2}", a, b, a.Equals(b)); + Console.WriteLine($"{a} is equal to {b}: {a.Equals(b)}"); // The Type objects in a and b are equal, // because they both represent type Example. b = typeof(Type); - Console.WriteLine("typeof({0}).Equals(typeof({1})): {2}", a, b, a.Equals(b)); + Console.WriteLine($"typeof({a}).Equals(typeof({b})): {a.Equals(b)}"); // The Type objects in a and b are not equal, // because variable a represents type Example @@ -42,4 +42,4 @@ public static void Main() Example is equal to Example: True typeof(Example).Equals(typeof(System.Type)): False */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/FilterAttribute/type_filterattribute.cs b/snippets/csharp/System/Type/FilterAttribute/type_filterattribute.cs index f2a0fe4c3e0..178b7278b03 100644 --- a/snippets/csharp/System/Type/FilterAttribute/type_filterattribute.cs +++ b/snippets/csharp/System/Type/FilterAttribute/type_filterattribute.cs @@ -10,28 +10,28 @@ public static void Main() try { MemberFilter myFilter = Type.FilterAttribute; - Type myType = typeof(System.String); + Type myType = typeof(string); MemberInfo[] myMemberInfoArray = myType.FindMembers(MemberTypes.Constructor - |MemberTypes.Method, BindingFlags.Public | BindingFlags.Static | + | MemberTypes.Method, BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance, myFilter, MethodAttributes.SpecialName); foreach (MemberInfo myMemberinfo in myMemberInfoArray) { - Console.Write ("\n" + myMemberinfo.Name); - Console.Write (" is a " + myMemberinfo.MemberType.ToString()); + Console.Write("\n" + myMemberinfo.Name); + Console.Write(" is a " + myMemberinfo.MemberType); } } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.Write("ArgumentNullException : " + e.Message); } - catch(SecurityException e) + catch (SecurityException e) { Console.Write("SecurityException : " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.Write("Exception :" + e.Message); } - } + } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/FilterName/Project.csproj b/snippets/csharp/System/Type/FilterName/Project.csproj new file mode 100644 index 00000000000..1eddf5e00ac --- /dev/null +++ b/snippets/csharp/System/Type/FilterName/Project.csproj @@ -0,0 +1,6 @@ + + + Library + net10.0 + + diff --git a/snippets/csharp/System/Type/FilterName/source.cs b/snippets/csharp/System/Type/FilterName/source.cs index 350fbe03859..fb3126f09c6 100644 --- a/snippets/csharp/System/Type/FilterName/source.cs +++ b/snippets/csharp/System/Type/FilterName/source.cs @@ -3,22 +3,24 @@ public class Sample { - public void Method() - { -// - // Get the set of methods associated with the type - MemberInfo[] mi = typeof(Application).FindMembers(MemberTypes.Constructor | - MemberTypes.Method, - BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic | - BindingFlags.Instance | BindingFlags.DeclaredOnly, - Type.FilterName, "*"); - Console.WriteLine("Number of methods (includes constructors): " + mi.Length); -// - } + public void Method() + { + // + // Get the set of methods associated with the type + MemberInfo[] mi = typeof(Application).FindMembers(MemberTypes.Constructor | + MemberTypes.Method, + BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic | + BindingFlags.Instance | BindingFlags.DeclaredOnly, + Type.FilterName, "*"); + Console.WriteLine("Number of methods (includes constructors): " + mi.Length); + // + } } // Class added so sample will compile -public class Application { - public void Method() { +public class Application +{ + public void Method() + { } } diff --git a/snippets/csharp/System/Type/FilterNameIgnoreCase/type_filternameignorecase.cs b/snippets/csharp/System/Type/FilterNameIgnoreCase/type_filternameignorecase.cs index 419668f72c1..39d5c5df732 100644 --- a/snippets/csharp/System/Type/FilterNameIgnoreCase/type_filternameignorecase.cs +++ b/snippets/csharp/System/Type/FilterNameIgnoreCase/type_filternameignorecase.cs @@ -7,31 +7,31 @@ public class MyFilterNameIgnoreCaseSample public static void Main() { try - { + { MemberFilter myFilter = Type.FilterNameIgnoreCase; - Type myType = typeof(System.String); + Type myType = typeof(string); MemberInfo[] myMemberinfo1 = myType.FindMembers(MemberTypes.Constructor - |MemberTypes.Method, BindingFlags.Public | BindingFlags.Static | + | MemberTypes.Method, BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance, myFilter, "C*"); foreach (MemberInfo myMemberinfo2 in myMemberinfo1) { Console.Write("\n" + myMemberinfo2.Name); MemberTypes Mymembertypes = myMemberinfo2.MemberType; - Console.WriteLine(" is a " + Mymembertypes.ToString()); + Console.WriteLine(" is a " + Mymembertypes); } } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.Write("ArgumentNullException : " + e.Message); } - catch(SecurityException e) + catch (SecurityException e) { Console.Write("SecurityException : " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.Write("Exception : " + e.Message); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/FindInterfaces/type_findinterfaces.cs b/snippets/csharp/System/Type/FindInterfaces/type_findinterfaces.cs index bf7c4b78a44..896ac2b0612 100644 --- a/snippets/csharp/System/Type/FindInterfaces/type_findinterfaces.cs +++ b/snippets/csharp/System/Type/FindInterfaces/type_findinterfaces.cs @@ -9,55 +9,51 @@ public static void Main() { try { - XmlDocument myXMLDoc = new XmlDocument(); + XmlDocument myXMLDoc = new(); myXMLDoc.LoadXml("" + "Pride And Prejudice" + ""); Type myType = myXMLDoc.GetType(); // Specify the TypeFilter delegate that compares the // interfaces against filter criteria. - TypeFilter myFilter = new TypeFilter(MyInterfaceFilter); - String[] myInterfaceList = new String[2] - {"System.Collections.IEnumerable", - "System.Collections.ICollection"}; - for(int index=0; index < myInterfaceList.Length; index++) + TypeFilter myFilter = new(MyInterfaceFilter); + string[] myInterfaceList = + ["System.Collections.IEnumerable", + "System.Collections.ICollection"]; + for (int index = 0; index < myInterfaceList.Length; index++) { Type[] myInterfaces = myType.FindInterfaces(myFilter, myInterfaceList[index]); if (myInterfaces.Length > 0) { - Console.WriteLine("\n{0} implements the interface {1}.", - myType, myInterfaceList[index]); - for(int j =0;j < myInterfaces.Length;j++) - Console.WriteLine("Interfaces supported: {0}.", - myInterfaces[j].ToString()); + Console.WriteLine($"\n{myType} implements the interface {myInterfaceList[index]}."); + for (int j = 0; j < myInterfaces.Length; j++) + Console.WriteLine($"Interfaces supported: {myInterfaces[j]}."); } else - Console.WriteLine( - "\n{0} does not implement the interface {1}.", - myType,myInterfaceList[index]); + Console.WriteLine($"\n{myType} does not implement the interface {myInterfaceList[index]}."); } } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("ArgumentNullException: " + e.Message); } - catch(TargetInvocationException e) + catch (TargetInvocationException e) { Console.WriteLine("TargetInvocationException: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception: " + e.Message); } } - public static bool MyInterfaceFilter(Type typeObj,Object criteriaObj) + public static bool MyInterfaceFilter(Type typeObj, object criteriaObj) { - if(typeObj.ToString() == criteriaObj.ToString()) + if (typeObj.FullName == criteriaObj as string) return true; else return false; } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/FindMembers/type_findmembers.cs b/snippets/csharp/System/Type/FindMembers/type_findmembers.cs index e0fee47a706..5caae3e13b4 100644 --- a/snippets/csharp/System/Type/FindMembers/type_findmembers.cs +++ b/snippets/csharp/System/Type/FindMembers/type_findmembers.cs @@ -6,29 +6,29 @@ class MyFindMembersClass { public static void Main() { - Object objTest = new Object(); - Type objType = objTest.GetType (); + object objTest = new(); + Type objType = objTest.GetType(); MemberInfo[] arrayMemberInfo; try { //Find all static or public methods in the Object class that match the specified name. arrayMemberInfo = objType.FindMembers(MemberTypes.Method, - BindingFlags.Public | BindingFlags.Static| BindingFlags.Instance, + BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance, new MemberFilter(DelegateToSearchCriteria), "ReferenceEquals"); - for(int index=0;index < arrayMemberInfo.Length ;index++) - Console.WriteLine ("Result of FindMembers -\t"+ arrayMemberInfo[index].ToString() +"\n"); + for (int index = 0; index < arrayMemberInfo.Length; index++) + Console.WriteLine("Result of FindMembers -\t" + arrayMemberInfo[index] + "\n"); } catch (Exception e) { - Console.WriteLine ("Exception : " + e.ToString() ); + Console.WriteLine("Exception : " + e); } } - public static bool DelegateToSearchCriteria(MemberInfo objMemberInfo, Object objSearch) + public static bool DelegateToSearchCriteria(MemberInfo objMemberInfo, object objSearch) { // Compare the name of the member function with the filter criteria. - if(objMemberInfo.Name.ToString() == objSearch.ToString()) + if (objMemberInfo.Name == objSearch as string) return true; else return false; @@ -38,4 +38,4 @@ public static bool DelegateToSearchCriteria(MemberInfo objMemberInfo, Object obj Result of FindMembers - Boolean ReferenceEquals(System.Object, System.Object) */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/FullName/Fullname3.cs b/snippets/csharp/System/Type/FullName/Fullname3.cs index 3e1a2dcf054..edae78a295d 100644 --- a/snippets/csharp/System/Type/FullName/Fullname3.cs +++ b/snippets/csharp/System/Type/FullName/Fullname3.cs @@ -1,23 +1,25 @@ // using System; -using System.Reflection; -public class Example + +public class FullName3Example { - public static void Main() - { - Type t = typeof(Nullable<>); - Console.WriteLine(t.FullName); - if (t.IsGenericType) { - Console.Write(" Generic Type Parameters: "); - Type[] gtArgs = t.GetGenericArguments(); - for (int ctr = 0; ctr < gtArgs.Length; ctr++) { - Console.WriteLine(gtArgs[ctr].FullName ?? - "(unassigned) " + gtArgs[ctr].ToString()); - } - Console.WriteLine(); - } - } + public static void Run() + { + Type t = typeof(Nullable<>); + Console.WriteLine(t.FullName); + if (t.IsGenericType) + { + Console.Write(" Generic Type Parameters: "); + Type[] gtArgs = t.GetGenericArguments(); + for (int ctr = 0; ctr < gtArgs.Length; ctr++) + { + Console.WriteLine(gtArgs[ctr].FullName ?? + "(unassigned) " + gtArgs[ctr]); + } + Console.WriteLine(); + } + } } // The example displays the following output: // System.Nullable`1 diff --git a/snippets/csharp/System/Type/FullName/Fullname4.cs b/snippets/csharp/System/Type/FullName/Fullname4.cs index 0d349fefccc..759c08a48a0 100644 --- a/snippets/csharp/System/Type/FullName/Fullname4.cs +++ b/snippets/csharp/System/Type/FullName/Fullname4.cs @@ -2,41 +2,38 @@ using System; using System.Reflection; -public class GenericType1 +public class GenericType1 { - public void Display(T[] elements) - {} - - public void HandleT(T obj) - {} - - public bool ChangeValue(ref T arg) - { - return true; - } + public void Display(T[] elements) + { } + + public void HandleT(T obj) + { } + + public bool ChangeValue(ref T arg) => true; } -public class Example +public class FullName4Example { - public static void Main() - { - Type t = typeof(GenericType1<>); - Console.WriteLine("Type Name: {0}", t.FullName); - MethodInfo[] methods = t.GetMethods(BindingFlags.Instance | - BindingFlags.DeclaredOnly | - BindingFlags.Public); - foreach (var method in methods) { - Console.WriteLine(" Method: {0}", method.Name); - // Get method parameters. - ParameterInfo param = method.GetParameters()[0]; - Type paramType = param.ParameterType; - if (method.Name == "HandleT") - paramType = paramType.MakePointerType(); - Console.WriteLine(" Parameter: {0}", - paramType.FullName ?? - paramType.ToString() + " (unassigned)"); - } - } + public static void Run() + { + Type t = typeof(GenericType1<>); + Console.WriteLine($"Type Name: {t.FullName}"); + MethodInfo[] methods = t.GetMethods(BindingFlags.Instance | + BindingFlags.DeclaredOnly | + BindingFlags.Public); + foreach (var method in methods) + { + Console.WriteLine($" Method: {method.Name}"); + // Get method parameters. + ParameterInfo param = method.GetParameters()[0]; + Type paramType = param.ParameterType; + if (method.Name == "HandleT") + paramType = paramType.MakePointerType(); + Console.WriteLine($" Parameter: {paramType.FullName ?? + paramType + " (unassigned)"}"); + } + } } // The example displays the following output: // Type Name: GenericType1`1 diff --git a/snippets/csharp/System/Type/FullName/Fullname5.cs b/snippets/csharp/System/Type/FullName/Fullname5.cs index c2bd57eb565..90538136f52 100644 --- a/snippets/csharp/System/Type/FullName/Fullname5.cs +++ b/snippets/csharp/System/Type/FullName/Fullname5.cs @@ -1,51 +1,43 @@ // using System; -using System.Reflection; + public class Base { } public class Derived : Base { } -public class Example +public class FullName5Example { - public static void Main() - { - Type t = typeof(Derived<>); - Console.WriteLine("Generic Class: {0}", t.FullName); - Console.WriteLine(" Contains Generic Paramters: {0}", - t.ContainsGenericParameters); - Console.WriteLine(" Generic Type Definition: {0}\n", - t.IsGenericTypeDefinition); + public static void Run() + { + Type t = typeof(Derived<>); + Console.WriteLine($"Generic Class: {t.FullName}"); + Console.WriteLine($" Contains Generic Paramters: {t.ContainsGenericParameters}"); + Console.WriteLine($" Generic Type Definition: {t.IsGenericTypeDefinition}\n"); - Type baseType = t.BaseType; - Console.WriteLine("Its Base Class: {0}", - baseType.FullName ?? - "(unassigned) " + baseType.ToString()); - Console.WriteLine(" Contains Generic Paramters: {0}", - baseType.ContainsGenericParameters); - Console.WriteLine(" Generic Type Definition: {0}", - baseType.IsGenericTypeDefinition); - Console.WriteLine(" Full Name: {0}\n", - baseType.GetGenericTypeDefinition().FullName); + Type baseType = t.BaseType; + Console.WriteLine($"Its Base Class: {baseType.FullName ?? + "(unassigned) " + baseType}"); + Console.WriteLine($" Contains Generic Paramters: {baseType.ContainsGenericParameters}"); + Console.WriteLine($" Generic Type Definition: {baseType.IsGenericTypeDefinition}"); + Console.WriteLine($" Full Name: {baseType.GetGenericTypeDefinition().FullName}\n"); - t = typeof(Base<>); - Console.WriteLine("Generic Class: {0}", t.FullName); - Console.WriteLine(" Contains Generic Paramters: {0}", - t.ContainsGenericParameters); - Console.WriteLine(" Generic Type Definition: {0}\n", - t.IsGenericTypeDefinition); - } + t = typeof(Base<>); + Console.WriteLine($"Generic Class: {t.FullName}"); + Console.WriteLine($" Contains Generic Paramters: {t.ContainsGenericParameters}"); + Console.WriteLine($" Generic Type Definition: {t.IsGenericTypeDefinition}\n"); + } } // The example displays the following output: // Generic Class: Derived`1 // Contains Generic Paramters: True // Generic Type Definition: True -// +// // Its Base Class: (unassigned) Base`1[T] // Contains Generic Paramters: True // Generic Type Definition: False // Full Name: Base`1 -// +// // Generic Class: Base`1 // Contains Generic Paramters: True // Generic Type Definition: True diff --git a/snippets/csharp/System/Type/FullName/Program.cs b/snippets/csharp/System/Type/FullName/Program.cs new file mode 100644 index 00000000000..7356154ae2f --- /dev/null +++ b/snippets/csharp/System/Type/FullName/Program.cs @@ -0,0 +1,5 @@ +FullName3Example.Run(); +FullName4Example.Run(); +FullName5Example.Run(); +FullNameEx1Example.Run(); +TestFullName.Run(); diff --git a/snippets/csharp/System/Type/FullName/Project.csproj b/snippets/csharp/System/Type/FullName/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/FullName/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/FullName/fullnameex1.cs b/snippets/csharp/System/Type/FullName/fullnameex1.cs index ef2b91e4e60..612ee255318 100644 --- a/snippets/csharp/System/Type/FullName/fullnameex1.cs +++ b/snippets/csharp/System/Type/FullName/fullnameex1.cs @@ -2,18 +2,18 @@ using System; using System.Collections.Generic; -public class Example +public class FullNameEx1Example { - public static void Main() - { - Type t = typeof(List<>); - Console.WriteLine(t.FullName); - Console.WriteLine(); + public static void Run() + { + Type t = typeof(List<>); + Console.WriteLine(t.FullName); + Console.WriteLine(); - List list = new List(); - t = list.GetType(); - Console.WriteLine(t.FullName); - } + List list = new(); + t = list.GetType(); + Console.WriteLine(t.FullName); + } } // The example displays the following output: // System.Collections.Generic.List`1 diff --git a/snippets/csharp/System/Type/FullName/testfullname.cs b/snippets/csharp/System/Type/FullName/testfullname.cs index cd4311ff848..770a078fd45 100644 --- a/snippets/csharp/System/Type/FullName/testfullname.cs +++ b/snippets/csharp/System/Type/FullName/testfullname.cs @@ -2,10 +2,10 @@ using System; class TestFullName { -public static void Main() + public static void Run() { - Type t = typeof(Array); - Console.WriteLine("The full name of the Array type is {0}.", t.FullName); + Type t = typeof(Array); + Console.WriteLine($"The full name of the Array type is {t.FullName}."); } } @@ -13,4 +13,4 @@ public static void Main() The full name of the Array type is System.Array. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GUID/type_guid.cs b/snippets/csharp/System/Type/GUID/type_guid.cs index 3d8d9ae108f..338f32dcfee 100644 --- a/snippets/csharp/System/Type/GUID/type_guid.cs +++ b/snippets/csharp/System/Type/GUID/type_guid.cs @@ -1,4 +1,4 @@ -// +// using System; class MyGetTypeFromCLSID @@ -14,9 +14,9 @@ public static void Main() // Get the type corresponding to the class MyClass. Type myType = typeof(MyClass1); // Get the object of the Guid. - Guid myGuid =(Guid) myType.GUID; - Console.WriteLine("The name of the class is "+myType.ToString()); - Console.WriteLine("The ClassId of MyClass is "+myType.GUID); + Guid myGuid = (Guid)myType.GUID; + Console.WriteLine("The name of the class is " + myType); + Console.WriteLine("The ClassId of MyClass is " + myType.GUID); } } // diff --git a/snippets/csharp/System/Type/GenericParameterAttributes/source.cs b/snippets/csharp/System/Type/GenericParameterAttributes/source.cs index de9251c2277..a7706371fc2 100644 --- a/snippets/csharp/System/Type/GenericParameterAttributes/source.cs +++ b/snippets/csharp/System/Type/GenericParameterAttributes/source.cs @@ -3,24 +3,25 @@ using System.Reflection; // Define a sample interface to use as an interface constraint. -public interface ITest {} +public interface ITest { } // Define a base type to use as a base class constraint. -public class Base {} +public class Base { } // Define the generic type to examine. The first generic type parameter, // T, derives from the class Base and implements ITest. This demonstrates -// a base class constraint and an interface constraint. The second generic -// type parameter, U, must be a reference type (class) and must have a +// a base class constraint and an interface constraint. The second generic +// type parameter, U, must be a reference type (class) and must have a // default constructor (new()). This demonstrates special constraints. // -public class Test - where T : Base, ITest - where U : class, new() {} +public class Test + where T : Base, ITest + where U : class, new() +{ } // Define a type that derives from Base and implements ITest. This type // satisfies the constraints on T in class Test. -public class Derived : Base, ITest {} +public class Derived : Base, ITest { } public class Example { @@ -28,10 +29,10 @@ public static void Main() { // To get the generic type definition, omit the type // arguments but retain the comma to indicate the number - // of type arguments. + // of type arguments. // Type def = typeof(Test<,>); - Console.WriteLine("\r\nExamining generic type {0}", def); + Console.WriteLine($"\r\nExamining generic type {def}"); // Get the type parameters of the generic type definition, // and display them. @@ -39,30 +40,29 @@ public static void Main() Type[] defparams = def.GetGenericArguments(); foreach (Type tp in defparams) { - Console.WriteLine("\r\nType parameter: {0}", tp.Name); - Console.WriteLine("\t{0}", - ListGenericParameterAttributes(tp)); + Console.WriteLine($"\r\nType parameter: {tp.Name}"); + Console.WriteLine($"\t{ListGenericParameterAttributes(tp)}"); // List the base class and interface constraints. The - // constraints are returned in no particular order. If + // constraints are returned in no particular order. If // there are no class or interface constraints, an empty // array is returned. // Type[] tpConstraints = tp.GetGenericParameterConstraints(); foreach (Type tpc in tpConstraints) { - Console.WriteLine("\t{0}", tpc); + Console.WriteLine($"\t{tpc}"); } } } - // List the variance and special constraint flags. + // List the variance and special constraint flags. // private static string ListGenericParameterAttributes(Type t) { string retval; GenericParameterAttributes gpa = t.GenericParameterAttributes; - GenericParameterAttributes variance = gpa & + GenericParameterAttributes variance = gpa & GenericParameterAttributes.VarianceMask; // Select the variance flags. @@ -78,8 +78,8 @@ private static string ListGenericParameterAttributes(Type t) retval = "Contravariant;"; } - // Select - GenericParameterAttributes constraints = gpa & + // Select + GenericParameterAttributes constraints = gpa & GenericParameterAttributes.SpecialConstraintMask; if (constraints == GenericParameterAttributes.None) diff --git a/snippets/csharp/System/Type/GenericParameterPosition/remarks.cs b/snippets/csharp/System/Type/GenericParameterPosition/remarks.cs index 007f013977c..5966452546e 100644 --- a/snippets/csharp/System/Type/GenericParameterPosition/remarks.cs +++ b/snippets/csharp/System/Type/GenericParameterPosition/remarks.cs @@ -1,17 +1,14 @@ -using System; + // public class B { } public class A { - public B GetSomething() - { - return new B(); - } + public B GetSomething() => new B(); } // class ProgStubClass { - public static void Main() {} -} \ No newline at end of file + public static void Main() { } +} diff --git a/snippets/csharp/System/Type/GetArrayRank/type_getarrayrank.cs b/snippets/csharp/System/Type/GetArrayRank/type_getarrayrank.cs index 0048d76a9dc..ce178bbc8e8 100644 --- a/snippets/csharp/System/Type/GetArrayRank/type_getarrayrank.cs +++ b/snippets/csharp/System/Type/GetArrayRank/type_getarrayrank.cs @@ -7,19 +7,19 @@ public static void Main() { try { - int[,,] myArray = new int[,,] {{{12,2,35},{300,78,33}},{{92,42,135},{30,7,3}}}; + int[,,] myArray = new int[,,] { { { 12, 2, 35 }, { 300, 78, 33 } }, { { 92, 42, 135 }, { 30, 7, 3 } } }; Type myType = myArray.GetType(); Console.WriteLine("Contents of myArray: {{{12,2,35},{300,78,33}},{{92,42,135},{30,7,3}}}"); - Console.WriteLine("myArray has {0} dimensions.", myType.GetArrayRank()); + Console.WriteLine($"myArray has {myType.GetArrayRank()} dimensions."); } - catch(NotSupportedException e) + catch (NotSupportedException e) { Console.WriteLine("NotSupportedException raised."); Console.WriteLine("Source: " + e.Source); Console.WriteLine("Message: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception raised."); Console.WriteLine("Source: " + e.Source); diff --git a/snippets/csharp/System/Type/GetConstructors/Program.cs b/snippets/csharp/System/Type/GetConstructors/Program.cs new file mode 100644 index 00000000000..4c65e4bcd95 --- /dev/null +++ b/snippets/csharp/System/Type/GetConstructors/Program.cs @@ -0,0 +1,2 @@ +ConstructorSample1.Run(); +ConstructorSample2.Run(); diff --git a/snippets/csharp/System/Type/GetConstructors/Project.csproj b/snippets/csharp/System/Type/GetConstructors/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetConstructors/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetConstructors/source1.cs b/snippets/csharp/System/Type/GetConstructors/source1.cs index 64bca042ab6..884433d1674 100644 --- a/snippets/csharp/System/Type/GetConstructors/source1.cs +++ b/snippets/csharp/System/Type/GetConstructors/source1.cs @@ -1,19 +1,21 @@ // - using System; - using System.Reflection; +using System; +using System.Reflection; - public class t { - public t() {} - static t() {} - public t(int i) {} +public class ConstructorSample1 +{ + public ConstructorSample1() { } + static ConstructorSample1() { } + public ConstructorSample1(int i) { } + public static void Run() + { + ConstructorInfo[] p = typeof(ConstructorSample1).GetConstructors(); + Console.WriteLine(p.Length); - public static void Main() { - ConstructorInfo[] p = typeof(t).GetConstructors(); - Console.WriteLine(p.Length); - - for (int i=0;i diff --git a/snippets/csharp/System/Type/GetConstructors/source2.cs b/snippets/csharp/System/Type/GetConstructors/source2.cs index 4a8a66813cd..ebecc5c5ca9 100644 --- a/snippets/csharp/System/Type/GetConstructors/source2.cs +++ b/snippets/csharp/System/Type/GetConstructors/source2.cs @@ -1,21 +1,23 @@ // - using System; - using System.Reflection; +using System; +using System.Reflection; - public class t { - public t() {} - static t() {} - public t(int i) {} +public class ConstructorSample2 +{ + public ConstructorSample2() { } + static ConstructorSample2() { } + public ConstructorSample2(int i) { } + public static void Run() + { + ConstructorInfo[] p = typeof(ConstructorSample2).GetConstructors( + BindingFlags.Public | BindingFlags.Static | + BindingFlags.NonPublic | BindingFlags.Instance); + Console.WriteLine(p.Length); - public static void Main() { - ConstructorInfo[] p = typeof(t).GetConstructors( - BindingFlags.Public | BindingFlags.Static | - BindingFlags.NonPublic | BindingFlags.Instance); - Console.WriteLine(p.Length); - - for (int i=0;i diff --git a/snippets/csharp/System/Type/GetDefaultMembers/source2.cs b/snippets/csharp/System/Type/GetDefaultMembers/source2.cs index e5be6267577..7bc4770e6c5 100644 --- a/snippets/csharp/System/Type/GetDefaultMembers/source2.cs +++ b/snippets/csharp/System/Type/GetDefaultMembers/source2.cs @@ -15,15 +15,9 @@ public Class1() sval = "6040"; } - public int GetIVal() - { - return ival; - } + public int GetIVal() => ival; - public string GetSVal() - { - return sval; - } + public string GetSVal() => sval; } // @@ -32,10 +26,10 @@ public class GetMemberExample public static void Main() { // - Class1 c = new Class1(); + Class1 c = new(); object o; o = c.GetType().InvokeMember("", BindingFlags.InvokeMethod, null, c, new object[0]); - Console.WriteLine("Default member result: {0}", o); + Console.WriteLine($"Default member result: {o}"); // GetDefMemberExample1(); @@ -52,9 +46,9 @@ public static void GetDefMemberExample1() (DefaultMemberAttribute)Attribute.GetCustomAttribute((MemberInfo)classType, attribType); MemberInfo[] memInfo = classType.GetMember(defMem.MemberName); // - if ( memInfo.Length > 0) + if (memInfo.Length > 0) { - Console.WriteLine("Default Member: {0}", memInfo[0].Name); + Console.WriteLine($"Default Member: {memInfo[0].Name}"); } } @@ -64,9 +58,9 @@ public static void GetDefMemberExample2() Type t = typeof(Class1); MemberInfo[] memInfo = t.GetDefaultMembers(); // - if ( memInfo.Length > 0) + if (memInfo.Length > 0) { - Console.WriteLine("Default Member: {0}", memInfo[0].Name); + Console.WriteLine($"Default Member: {memInfo[0].Name}"); } } @@ -81,7 +75,7 @@ public static void GetDefMemberExample3() MemberInfo[] memInfo = t.GetMember(defMem.MemberName); if (memInfo.Length > 0) { - Console.WriteLine("Default Member: {0}", memInfo[0].Name); + Console.WriteLine($"Default Member: {memInfo[0].Name}"); } } // diff --git a/snippets/csharp/System/Type/GetDefaultMembers/type_getdefaultmembers.cs b/snippets/csharp/System/Type/GetDefaultMembers/type_getdefaultmembers.cs index 11ac59b32f6..2d6817171e9 100644 --- a/snippets/csharp/System/Type/GetDefaultMembers/type_getdefaultmembers.cs +++ b/snippets/csharp/System/Type/GetDefaultMembers/type_getdefaultmembers.cs @@ -6,25 +6,19 @@ [DefaultMemberAttribute("Age")] public class MyClass { - public void Name(String s) {} - public int Age - { - get - { - return 20; - } - } + public void Name(string s) { } + public int Age => 20; public static void Main() { try { - Type myType = typeof(MyClass); + Type myType = typeof(MyClass); MemberInfo[] memberInfoArray = myType.GetDefaultMembers(); if (memberInfoArray.Length > 0) { - foreach(MemberInfo memberInfoObj in memberInfoArray) + foreach (MemberInfo memberInfoObj in memberInfoArray) { - Console.WriteLine("The default member name is: " + memberInfoObj.ToString()); + Console.WriteLine("The default member name is: " + memberInfoObj); } } else @@ -32,18 +26,18 @@ public static void Main() Console.WriteLine("No default members are available."); } } - catch(InvalidOperationException e) + catch (InvalidOperationException e) { Console.WriteLine("InvalidOperationException: " + e.Message); } - catch(IOException e) + catch (IOException e) { Console.WriteLine("IOException: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception: " + e.Message); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetElementType/testgetelementtype.cs b/snippets/csharp/System/Type/GetElementType/testgetelementtype.cs index fa98300952f..acc79ca852e 100644 --- a/snippets/csharp/System/Type/GetElementType/testgetelementtype.cs +++ b/snippets/csharp/System/Type/GetElementType/testgetelementtype.cs @@ -4,14 +4,14 @@ class TestGetElementType { public static void Main() { - int[] array = {1,2,3}; + int[] array = [1, 2, 3]; Type t = array.GetType(); Type t2 = t.GetElementType(); - Console.WriteLine("The element type of {0} is {1}.",array, t2.ToString()); - TestGetElementType newMe = new TestGetElementType(); + Console.WriteLine($"The element type of {array} is {t2}."); + TestGetElementType newMe = new(); t = newMe.GetType(); t2 = t.GetElementType(); - Console.WriteLine("The element type of {0} is {1}.", newMe, t2==null? "null" : t2.ToString()); + Console.WriteLine($"The element type of {newMe} is {(t2 == null ? "null" : t2.ToString())}."); } } @@ -20,4 +20,4 @@ public static void Main() The element type of System.Int32[] is System.Int32. The element type of TestGetElementType is null. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetEvent/Program.cs b/snippets/csharp/System/Type/GetEvent/Program.cs new file mode 100644 index 00000000000..d36c4a66d43 --- /dev/null +++ b/snippets/csharp/System/Type/GetEvent/Program.cs @@ -0,0 +1,2 @@ +EventExample.Run(); +EventExample1.Run(); diff --git a/snippets/csharp/System/Type/GetEvent/Project.csproj b/snippets/csharp/System/Type/GetEvent/Project.csproj new file mode 100644 index 00000000000..1ef5ac9aa71 --- /dev/null +++ b/snippets/csharp/System/Type/GetEvent/Project.csproj @@ -0,0 +1,7 @@ + + + Exe + net10.0-windows + true + + diff --git a/snippets/csharp/System/Type/GetEvent/type_getevent.cs b/snippets/csharp/System/Type/GetEvent/type_getevent.cs index 159dad978ab..a9a65b4ef60 100644 --- a/snippets/csharp/System/Type/GetEvent/type_getevent.cs +++ b/snippets/csharp/System/Type/GetEvent/type_getevent.cs @@ -3,38 +3,38 @@ using System.Reflection; using System.Security; -class MyEventExample +class EventExample { - public static void Main() + public static void Run() { try { Type myType = typeof(System.Windows.Forms.Button); EventInfo myEvent = myType.GetEvent("Click"); - if(myEvent != null) + if (myEvent != null) { Console.WriteLine("Looking for the Click event in the Button class."); - Console.WriteLine(myEvent.ToString()); + Console.WriteLine(myEvent); } else { Console.WriteLine("The Click event is not available in the Button class."); } } - catch(SecurityException e) + catch (SecurityException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message :"+e.Message); + Console.WriteLine("Message :" + e.Message); } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message :"+e.Message); + Console.WriteLine("Message :" + e.Message); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("The following exception was raised : {0}",e.Message); + Console.WriteLine($"The following exception was raised : {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/GetEvent/type_getevent1.cs b/snippets/csharp/System/Type/GetEvent/type_getevent1.cs index 336fb59f405..b15ee9b115d 100644 --- a/snippets/csharp/System/Type/GetEvent/type_getevent1.cs +++ b/snippets/csharp/System/Type/GetEvent/type_getevent1.cs @@ -3,9 +3,9 @@ using System.Reflection; using System.Security; -class MyEventExample +class EventExample1 { - public static void Main() + public static void Run() { try { @@ -14,29 +14,29 @@ public static void Main() BindingFlags myBindingFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic; Type myTypeBindingFlags = typeof(System.Windows.Forms.Button); EventInfo myEventBindingFlags = myTypeBindingFlags.GetEvent("Click", myBindingFlags); - if(myEventBindingFlags != null) + if (myEventBindingFlags != null) { Console.WriteLine("Looking for the Click event in the Button class with the specified BindingFlags."); - Console.WriteLine(myEventBindingFlags.ToString()); + Console.WriteLine(myEventBindingFlags); } else { Console.WriteLine("The Click event is not available with the Button class."); } } - catch(SecurityException e) + catch (SecurityException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message :"+e.Message); + Console.WriteLine("Message :" + e.Message); } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message :"+e.Message); + Console.WriteLine("Message :" + e.Message); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("The following exception was raised : {0}",e.Message); + Console.WriteLine($"The following exception was raised : {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/GetEvents/Program.cs b/snippets/csharp/System/Type/GetEvents/Program.cs new file mode 100644 index 00000000000..25e38f87f7b --- /dev/null +++ b/snippets/csharp/System/Type/GetEvents/Program.cs @@ -0,0 +1,2 @@ +EventsSample1.Run(); +EventsSample2.Run(); diff --git a/snippets/csharp/System/Type/GetEvents/Project.csproj b/snippets/csharp/System/Type/GetEvents/Project.csproj new file mode 100644 index 00000000000..1ef5ac9aa71 --- /dev/null +++ b/snippets/csharp/System/Type/GetEvents/Project.csproj @@ -0,0 +1,7 @@ + + + Exe + net10.0-windows + true + + diff --git a/snippets/csharp/System/Type/GetEvents/type_getevents1.cs b/snippets/csharp/System/Type/GetEvents/type_getevents1.cs index 35382b881ce..0ef51c21f60 100644 --- a/snippets/csharp/System/Type/GetEvents/type_getevents1.cs +++ b/snippets/csharp/System/Type/GetEvents/type_getevents1.cs @@ -3,9 +3,9 @@ using System.Reflection; using System.Security; -class EventsSample +class EventsSample1 { - public static void Main() + public static void Run() { try { @@ -16,21 +16,21 @@ public static void Main() Console.WriteLine("\nThe events on the Button class with the specified BindingFlags are : "); for (int index = 0; index < myEventsBindingFlags.Length; index++) { - Console.WriteLine(myEventsBindingFlags[index].ToString()); + Console.WriteLine(myEventsBindingFlags[index]); } } - catch(SecurityException e) + catch (SecurityException e) { Console.WriteLine("SecurityException :" + e.Message); } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("ArgumentNullException : " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception : " + e.Message); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetEvents/type_getevents2.cs b/snippets/csharp/System/Type/GetEvents/type_getevents2.cs index 3ab6230ee4f..741a70c984b 100644 --- a/snippets/csharp/System/Type/GetEvents/type_getevents2.cs +++ b/snippets/csharp/System/Type/GetEvents/type_getevents2.cs @@ -3,9 +3,9 @@ using System.Reflection; using System.Security; -class EventsSample +class EventsSample2 { - public static void Main() + public static void Run() { try { @@ -16,21 +16,21 @@ public static void Main() Console.WriteLine("\nThe events on the Button class with the specified BindingFlags are:"); for (int index = 0; index < myEventsBindingFlags.Length; index++) { - Console.WriteLine(myEventsBindingFlags[index].ToString()); + Console.WriteLine(myEventsBindingFlags[index]); } } - catch(SecurityException e) + catch (SecurityException e) { Console.WriteLine("SecurityException:" + e.Message); } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("ArgumentNullException: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception: " + e.Message); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetField/type_getfield.cs b/snippets/csharp/System/Type/GetField/type_getfield.cs index fcd7cc1a842..8af2e2b7908 100644 --- a/snippets/csharp/System/Type/GetField/type_getfield.cs +++ b/snippets/csharp/System/Type/GetField/type_getfield.cs @@ -14,15 +14,12 @@ public class MyFieldClassB private string field = "B Field"; public string Field { - get - { - return field; - } + get => field; set { - if (field!=value) + if (field != value) { - field=value; + field = value; } } } @@ -32,8 +29,8 @@ public class MyFieldInfoClass { public static void Main() { - MyFieldClassB myFieldObjectB = new MyFieldClassB(); - MyFieldClassA myFieldObjectA = new MyFieldClassA(); + MyFieldClassB myFieldObjectB = new(); + MyFieldClassA myFieldObjectA = new(); Type myTypeA = typeof(MyFieldClassA); FieldInfo myFieldInfo = myTypeA.GetField("Field"); @@ -42,10 +39,8 @@ public static void Main() FieldInfo myFieldInfo1 = myTypeB.GetField("field", BindingFlags.NonPublic | BindingFlags.Instance); - Console.WriteLine("The value of the public field is: '{0}'", - myFieldInfo.GetValue(myFieldObjectA)); - Console.WriteLine("The value of the private field is: '{0}'", - myFieldInfo1.GetValue(myFieldObjectB)); + Console.WriteLine($"The value of the public field is: '{myFieldInfo.GetValue(myFieldObjectA)}'"); + Console.WriteLine($"The value of the private field is: '{myFieldInfo1.GetValue(myFieldObjectB)}'"); } } // diff --git a/snippets/csharp/System/Type/GetFields/fieldinfo_isspecialname.cs b/snippets/csharp/System/Type/GetFields/fieldinfo_isspecialname.cs index 7b01efe830f..577256cc55a 100644 --- a/snippets/csharp/System/Type/GetFields/fieldinfo_isspecialname.cs +++ b/snippets/csharp/System/Type/GetFields/fieldinfo_isspecialname.cs @@ -16,20 +16,19 @@ public static void Main() FieldInfo[] myField = myType.GetFields(); Console.WriteLine("\nDisplaying fields that have SpecialName attributes:\n"); - for(int i = 0; i < myField.Length; i++) + for (int i = 0; i < myField.Length; i++) { // Determine whether or not each field is a special name. - if(myField[i].IsSpecialName) + if (myField[i].IsSpecialName) { - Console.WriteLine("The field {0} has a SpecialName attribute.", - myField[i].Name); + Console.WriteLine($"The field {myField[i].Name} has a SpecialName attribute."); } } } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("Exception : {0} " , e.Message); + Console.WriteLine($"Exception : {e.Message} "); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetFields/source.cs b/snippets/csharp/System/Type/GetFields/source.cs index bc3aefc9d1d..b0af8444d62 100644 --- a/snippets/csharp/System/Type/GetFields/source.cs +++ b/snippets/csharp/System/Type/GetFields/source.cs @@ -1,18 +1,15 @@ -// +// using System; using System.Reflection; class AttributesSample { - public void Mymethod (int int1m, out string str2m, ref string str3m) - { - str2m = "in Mymethod"; - } + public void Mymethod(int int1m, out string str2m, ref string str3m) => str2m = "in Mymethod"; public static int Main(string[] args) { - Console.WriteLine ("Reflection.MethodBase.Attributes Sample"); + Console.WriteLine("Reflection.MethodBase.Attributes Sample"); // Get the type. Type MyType = Type.GetType("AttributesSample"); @@ -27,7 +24,7 @@ public static int Main(string[] args) MethodAttributes Myattributes = Mymethodbase.Attributes; // Display the flags that are set. - PrintAttributes(typeof(System.Reflection.MethodAttributes), (int) Myattributes); + PrintAttributes(typeof(System.Reflection.MethodAttributes), (int)Myattributes); return 0; } diff --git a/snippets/csharp/System/Type/GetGenericArguments/source.cs b/snippets/csharp/System/Type/GetGenericArguments/source.cs index aff8b688c19..b129230bb08 100644 --- a/snippets/csharp/System/Type/GetGenericArguments/source.cs +++ b/snippets/csharp/System/Type/GetGenericArguments/source.cs @@ -1,19 +1,17 @@ // using System; -using System.Reflection; + using System.Collections.Generic; public class Test { private static void DisplayGenericTypeInfo(Type t) { - Console.WriteLine("\r\n{0}", t); + Console.WriteLine($"\r\n{t}"); - Console.WriteLine("\tIs this a generic type definition? {0}", - t.IsGenericTypeDefinition); + Console.WriteLine($"\tIs this a generic type definition? {t.IsGenericTypeDefinition}"); - Console.WriteLine("\tIs it a generic type? {0}", - t.IsGenericType); + Console.WriteLine($"\tIs it a generic type? {t.IsGenericType}"); // if (t.IsGenericType) @@ -22,8 +20,7 @@ private static void DisplayGenericTypeInfo(Type t) // Type[] typeArguments = t.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", - typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { @@ -32,13 +29,11 @@ private static void DisplayGenericTypeInfo(Type t) // if (tParam.IsGenericParameter) { - Console.WriteLine("\t\t{0}\t(unassigned - parameter position {1})", - tParam, - tParam.GenericParameterPosition); + Console.WriteLine($"\t\t{tParam}\t(unassigned - parameter position {tParam.GenericParameterPosition})"); } else { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } @@ -51,8 +46,8 @@ public static void Main() Console.WriteLine(" generic type definition, and an ordinary type."); // Create a Dictionary of Test objects, using strings for the - // keys. - Dictionary d = new Dictionary(); + // keys. + Dictionary d = new(); // Display information for the constructed type and its generic // type definition. diff --git a/snippets/csharp/System/Type/GetGenericTypeDefinition/source.cs b/snippets/csharp/System/Type/GetGenericTypeDefinition/source.cs index cb7b7df42ce..98438f97aba 100644 --- a/snippets/csharp/System/Type/GetGenericTypeDefinition/source.cs +++ b/snippets/csharp/System/Type/GetGenericTypeDefinition/source.cs @@ -1,6 +1,6 @@ // using System; -using System.Reflection; + using System.Collections.Generic; public class Test @@ -10,8 +10,8 @@ public static void Main() Console.WriteLine("\r\n--- Get the generic type that defines a constructed type."); // Create a Dictionary of Test objects, using strings for the - // keys. - Dictionary d = new Dictionary(); + // keys. + Dictionary d = new(); // Get a Type object representing the constructed type. // @@ -24,16 +24,14 @@ public static void Main() private static void DisplayTypeInfo(Type t) { - Console.WriteLine("\r\n{0}", t); - Console.WriteLine("\tIs this a generic type definition? {0}", - t.IsGenericTypeDefinition); - Console.WriteLine("\tIs it a generic type? {0}", - t.IsGenericType); + Console.WriteLine($"\r\n{t}"); + Console.WriteLine($"\tIs this a generic type definition? {t.IsGenericTypeDefinition}"); + Console.WriteLine($"\tIs it a generic type? {t.IsGenericType}"); Type[] typeArguments = t.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } diff --git a/snippets/csharp/System/Type/GetHashCode/Project.csproj b/snippets/csharp/System/Type/GetHashCode/Project.csproj new file mode 100644 index 00000000000..1ef5ac9aa71 --- /dev/null +++ b/snippets/csharp/System/Type/GetHashCode/Project.csproj @@ -0,0 +1,7 @@ + + + Exe + net10.0-windows + true + + diff --git a/snippets/csharp/System/Type/GetHashCode/type_gethashcode_getfields.cs b/snippets/csharp/System/Type/GetHashCode/type_gethashcode_getfields.cs index 779f730e297..9dd0048525b 100644 --- a/snippets/csharp/System/Type/GetHashCode/type_gethashcode_getfields.cs +++ b/snippets/csharp/System/Type/GetHashCode/type_gethashcode_getfields.cs @@ -5,37 +5,36 @@ class FieldsSample { - public static void Main() + public static void Main() { Type myType = typeof(System.Net.IPAddress); - FieldInfo [] myFields = myType.GetFields(BindingFlags.Static | BindingFlags.NonPublic); - Console.WriteLine ("\nThe IPAddress class has the following nonpublic fields: "); + FieldInfo[] myFields = myType.GetFields(BindingFlags.Static | BindingFlags.NonPublic); + Console.WriteLine("\nThe IPAddress class has the following nonpublic fields: "); foreach (FieldInfo myField in myFields) { - Console.WriteLine(myField.ToString()); + Console.WriteLine(myField); } Type myType1 = typeof(System.Net.IPAddress); - FieldInfo [] myFields1 = myType1.GetFields(); - Console.WriteLine ("\nThe IPAddress class has the following public fields: "); + FieldInfo[] myFields1 = myType1.GetFields(); + Console.WriteLine("\nThe IPAddress class has the following public fields: "); foreach (FieldInfo myField in myFields1) { - Console.WriteLine(myField.ToString()); + Console.WriteLine(myField); } try { - Console.WriteLine("The HashCode of the System.Windows.Forms.Button type is: {0}", - typeof(System.Windows.Forms.Button).GetHashCode()); - } - catch(SecurityException e) + Console.WriteLine($"The HashCode of the System.Windows.Forms.Button type is: {typeof(System.Windows.Forms.Button).GetHashCode()}"); + } + catch (SecurityException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message: "+e.Message); + Console.WriteLine("Message: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Message: "+e.Message); - } + Console.WriteLine("Message: " + e.Message); + } } -} +} // diff --git a/snippets/csharp/System/Type/GetInterface/Project.csproj b/snippets/csharp/System/Type/GetInterface/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetInterface/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetInterface/type_getinterface.cs b/snippets/csharp/System/Type/GetInterface/type_getinterface.cs index 010de7d835e..72060d5ddd9 100644 --- a/snippets/csharp/System/Type/GetInterface/type_getinterface.cs +++ b/snippets/csharp/System/Type/GetInterface/type_getinterface.cs @@ -13,42 +13,42 @@ with the specified name. Then prints the method name of that interface. class MyInterfaceClass { -// -// -// + // + // + // public static void Main() { - Hashtable hashtableObj = new Hashtable(); + Hashtable hashtableObj = new(); Type objType = hashtableObj.GetType(); MethodInfo[] arrayMethodInfo; MemberInfo[] arrayMemberInfo; try { // Get the methods implemented in 'IDeserializationCallback' interface. - arrayMethodInfo =objType.GetInterface("IDeserializationCallback").GetMethods(); - Console.WriteLine ("\nMethods of 'IDeserializationCallback' Interface :"); - foreach(MethodInfo methodInfo in arrayMethodInfo) - Console.WriteLine (methodInfo); + arrayMethodInfo = objType.GetInterface("IDeserializationCallback").GetMethods(); + Console.WriteLine("\nMethods of 'IDeserializationCallback' Interface :"); + foreach (MethodInfo methodInfo in arrayMethodInfo) + Console.WriteLine(methodInfo); // Get FullName for interface by using Ignore case search. - Console.WriteLine ("\nMethods of 'IEnumerable' Interface"); - arrayMethodInfo = objType.GetInterface("ienumerable",true).GetMethods(); - foreach(MethodInfo methodInfo in arrayMethodInfo) - Console.WriteLine (methodInfo); + Console.WriteLine("\nMethods of 'IEnumerable' Interface"); + arrayMethodInfo = objType.GetInterface("ienumerable", true).GetMethods(); + foreach (MethodInfo methodInfo in arrayMethodInfo) + Console.WriteLine(methodInfo); //Get the Interface methods for 'IDictionary' interface - InterfaceMapping interfaceMappingOb = objType.GetInterfaceMap(typeof(IDictionary)); + InterfaceMapping interfaceMappingObj = objType.GetInterfaceMap(typeof(IDictionary)); arrayMemberInfo = interfaceMappingObj.InterfaceMethods; - Console.WriteLine ("\nHashtable class Implements the following IDictionary Interface methods :"); - foreach(MemberInfo memberInfo in arrayMemberInfo) - Console.WriteLine (memberInfo); + Console.WriteLine("\nHashtable class Implements the following IDictionary Interface methods :"); + foreach (MemberInfo memberInfo in arrayMemberInfo) + Console.WriteLine(memberInfo); } catch (Exception e) { - Console.WriteLine ("Exception : " + e.ToString()); + Console.WriteLine("Exception : " + e); } } -// -// -// + // + // + // } diff --git a/snippets/csharp/System/Type/GetInterfaceMap/Project.csproj b/snippets/csharp/System/Type/GetInterfaceMap/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetInterfaceMap/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetInterfaceMap/interfacemapping1.cs b/snippets/csharp/System/Type/GetInterfaceMap/interfacemapping1.cs index 1ce9ac58388..aa607622e13 100644 --- a/snippets/csharp/System/Type/GetInterfaceMap/interfacemapping1.cs +++ b/snippets/csharp/System/Type/GetInterfaceMap/interfacemapping1.cs @@ -5,50 +5,32 @@ public class Example { - public static void Main() - { - Type[] interf = { typeof(IFormatProvider), typeof(IAppDomainSetup) }; - Type[] impl = { typeof(CultureInfo), typeof(AppDomainSetup) }; + public static void Main() + { + Type[] interf = [typeof(IFormatProvider), typeof(IFormattable)]; + Type[] impl = [typeof(CultureInfo), typeof(DateTime)]; - for (int ctr = 0; ctr < interf.Length; ctr++) - ShowInterfaceMapping(interf[ctr], impl[ctr]); - } + for (int ctr = 0; ctr < interf.Length; ctr++) + ShowInterfaceMapping(interf[ctr], impl[ctr]); + } - private static void ShowInterfaceMapping(Type intType, Type implType) - { - InterfaceMapping map = implType.GetInterfaceMap(intType); - Console.WriteLine("Mapping of {0} to {1}: ", map.InterfaceType, map.TargetType); - for (int ctr = 0; ctr < map.InterfaceMethods.Length; ctr++) { - MethodInfo im = map.InterfaceMethods[ctr]; - MethodInfo tm = map.TargetMethods[ctr]; - Console.WriteLine(" {0} --> {1}", im.Name,tm.Name); - } - Console.WriteLine(); - } + private static void ShowInterfaceMapping(Type intType, Type implType) + { + InterfaceMapping map = implType.GetInterfaceMap(intType); + Console.WriteLine($"Mapping of {map.InterfaceType} to {map.TargetType}: "); + for (int ctr = 0; ctr < map.InterfaceMethods.Length; ctr++) + { + MethodInfo im = map.InterfaceMethods[ctr]; + MethodInfo tm = map.TargetMethods[ctr]; + Console.WriteLine($" {im.Name} --> {tm.Name}"); + } + Console.WriteLine(); + } } // The example displays the following output: // Mapping of System.IFormatProvider to System.Globalization.CultureInfo: // GetFormat --> GetFormat // -// Mapping of System.IAppDomainSetup to System.AppDomainSetup: -// get_ApplicationBase --> get_ApplicationBase -// set_ApplicationBase --> set_ApplicationBase -// get_ApplicationName --> get_ApplicationName -// set_ApplicationName --> set_ApplicationName -// get_CachePath --> get_CachePath -// set_CachePath --> set_CachePath -// get_ConfigurationFile --> get_ConfigurationFile -// set_ConfigurationFile --> set_ConfigurationFile -// get_DynamicBase --> get_DynamicBase -// set_DynamicBase --> set_DynamicBase -// get_LicenseFile --> get_LicenseFile -// set_LicenseFile --> set_LicenseFile -// get_PrivateBinPath --> get_PrivateBinPath -// set_PrivateBinPath --> set_PrivateBinPath -// get_PrivateBinPathProbe --> get_PrivateBinPathProbe -// set_PrivateBinPathProbe --> set_PrivateBinPathProbe -// get_ShadowCopyDirectories --> get_ShadowCopyDirectories -// set_ShadowCopyDirectories --> set_ShadowCopyDirectories -// get_ShadowCopyFiles --> get_ShadowCopyFiles -// set_ShadowCopyFiles --> set_ShadowCopyFiles +// Mapping of System.IFormattable to System.DateTime: +// ToString --> ToString // diff --git a/snippets/csharp/System/Type/GetMember/type_getmember.cs b/snippets/csharp/System/Type/GetMember/type_getmember.cs index 745de08fe85..e9df7340968 100644 --- a/snippets/csharp/System/Type/GetMember/type_getmember.cs +++ b/snippets/csharp/System/Type/GetMember/type_getmember.cs @@ -8,32 +8,32 @@ public class MyMemberSample { public static void Main() { - MyMemberSample myClass = new MyMemberSample(); + MyMemberSample myClass = new(); try { myClass.GetMemberInfo(); - myClass.GetPublicStaticMemberInfo(); - myClass.GetPublicInstanceMethodMemberInfo(); + myClass.GetPublicStaticMemberInfo(); + myClass.GetPublicInstanceMethodMemberInfo(); } - catch(ArgumentNullException e) + catch (ArgumentNullException e) { Console.WriteLine("ArgumentNullException occurred."); Console.WriteLine("Source: " + e.Source); Console.WriteLine("Message: " + e.Message); } - catch(NotSupportedException e) + catch (NotSupportedException e) { Console.WriteLine("NotSupportedException occurred."); Console.WriteLine("Source: " + e.Source); Console.WriteLine("Message: " + e.Message); } - catch(SecurityException e) + catch (SecurityException e) { Console.WriteLine("SecurityException occurred."); Console.WriteLine("Source: " + e.Source); Console.WriteLine("Message: " + e.Message); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("Exception occurred."); Console.WriteLine("Source: " + e.Source); @@ -43,16 +43,16 @@ public static void Main() public void GetMemberInfo() { - String myString = "GetMember_String"; + string myString = "GetMember_String"; Type myType = myString.GetType(); // Get the members for myString starting with the letter C. MemberInfo[] myMembers = myType.GetMember("C*"); - if(myMembers.Length > 0) + if (myMembers.Length > 0) { - Console.WriteLine("\nThe member(s) starting with the letter C for type {0}:", myType); - for(int index=0; index < myMembers.Length; index++) - Console.WriteLine("Member {0}: {1}", index + 1, myMembers[index].ToString()); + Console.WriteLine($"\nThe member(s) starting with the letter C for type {myType}:"); + for (int index = 0; index < myMembers.Length; index++) + Console.WriteLine($"Member {index + 1}: {myMembers[index]}"); } else { @@ -64,16 +64,16 @@ public void GetMemberInfo() // public void GetPublicStaticMemberInfo() { - String myString = "GetMember_String_BindingFlag"; + string myString = "GetMember_String_BindingFlag"; Type myType = myString.GetType(); // Get the public static members for the class myString starting with the letter C. MemberInfo[] myMembers = myType.GetMember("C*", - BindingFlags.Public |BindingFlags.Static); - if(myMembers.Length > 0) + BindingFlags.Public | BindingFlags.Static); + if (myMembers.Length > 0) { - Console.WriteLine("\nThe public static member(s) starting with the letter C for type {0}:", myType); - for(int index=0; index < myMembers.Length; index++) - Console.WriteLine("Member {0}: {1}", index + 1, myMembers[index].ToString()); + Console.WriteLine($"\nThe public static member(s) starting with the letter C for type {myType}:"); + for (int index = 0; index < myMembers.Length; index++) + Console.WriteLine($"Member {index + 1}: {myMembers[index]}"); } else { @@ -85,16 +85,16 @@ public void GetPublicStaticMemberInfo() // public void GetPublicInstanceMethodMemberInfo() { - String myString = "GetMember_String_MemberType_BindingFlag"; + string myString = "GetMember_String_MemberType_BindingFlag"; Type myType = myString.GetType(); // Get the public instance methods for myString starting with the letter C. MemberInfo[] myMembers = myType.GetMember("C*", MemberTypes.Method, BindingFlags.Public | BindingFlags.Instance); - if(myMembers.Length > 0) + if (myMembers.Length > 0) { - Console.WriteLine("\nThe public instance method(s) starting with the letter C for type {0}:", myType); - for(int index=0; index < myMembers.Length; index++) - Console.WriteLine("Member {0}: {1}", index + 1, myMembers[index].ToString()); + Console.WriteLine($"\nThe public instance method(s) starting with the letter C for type {myType}:"); + for (int index = 0; index < myMembers.Length; index++) + Console.WriteLine($"Member {index + 1}: {myMembers[index]}"); } else { @@ -102,4 +102,4 @@ public void GetPublicInstanceMethodMemberInfo() } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetMembers/Program.cs b/snippets/csharp/System/Type/GetMembers/Program.cs new file mode 100644 index 00000000000..5407163430d --- /dev/null +++ b/snippets/csharp/System/Type/GetMembers/Program.cs @@ -0,0 +1,2 @@ +Type_GetMembers.Run(); +Type_GetMembers_BindingFlags.Run(); diff --git a/snippets/csharp/System/Type/GetMembers/Project.csproj b/snippets/csharp/System/Type/GetMembers/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetMembers/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetMembers/type_getmembers1.cs b/snippets/csharp/System/Type/GetMembers/type_getmembers1.cs index 370d3130ecb..f95358629b9 100644 --- a/snippets/csharp/System/Type/GetMembers/type_getmembers1.cs +++ b/snippets/csharp/System/Type/GetMembers/type_getmembers1.cs @@ -11,45 +11,45 @@ of the class 'MyClass' and displays the same to the console. using System.Security; // -class MyClass +class MembersSampleClass { - public int myInt = 0; - public string myString = null; - - public MyClass() - { - } - public void Myfunction() - { - } + public int myInt = 0; + public string myString = null; + + public MembersSampleClass() + { + } + public void Myfunction() + { + } } class Type_GetMembers { - public static void Main() - { - try - { - MyClass myObject = new MyClass(); - MemberInfo[] myMemberInfo; - - // Get the type of 'MyClass'. - Type myType = myObject.GetType(); - - // Get the information related to all public member's of 'MyClass'. - myMemberInfo = myType.GetMembers(); - - Console.WriteLine( "\nThe members of class '{0}' are :\n", myType); - for (int i =0 ; i < myMemberInfo.Length ; i++) - { - // Display name and type of the concerned member. - Console.WriteLine( "'{0}' is a {1}", myMemberInfo[i].Name, myMemberInfo[i].MemberType); - } - } - catch(SecurityException e) - { - Console.WriteLine("Exception : " + e.Message ); - } - } + public static void Run() + { + try + { + MembersSampleClass myObject = new(); + MemberInfo[] myMemberInfo; + + // Get the type of 'MyClass'. + Type myType = myObject.GetType(); + + // Get the information related to all public member's of 'MyClass'. + myMemberInfo = myType.GetMembers(); + + Console.WriteLine($"\nThe members of class '{myType}' are :\n"); + for (int i = 0; i < myMemberInfo.Length; i++) + { + // Display name and type of the concerned member. + Console.WriteLine($"'{myMemberInfo[i].Name}' is a {myMemberInfo[i].MemberType}"); + } + } + catch (SecurityException e) + { + Console.WriteLine("Exception : " + e.Message); + } + } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetMembers/type_getmembers2.cs b/snippets/csharp/System/Type/GetMembers/type_getmembers2.cs index 5c51ce13c01..7f941571765 100644 --- a/snippets/csharp/System/Type/GetMembers/type_getmembers2.cs +++ b/snippets/csharp/System/Type/GetMembers/type_getmembers2.cs @@ -13,58 +13,58 @@ the console. // -class MyClass +class MembersBindingFlagsSampleClass { - public int myInt = 0; - public string myString = null; + public int myInt = 0; + public string myString = null; - public MyClass() - { - } - public void Myfunction() - { - } + public MembersBindingFlagsSampleClass() + { + } + public void Myfunction() + { + } } class Type_GetMembers_BindingFlags { - public static void Main() - { - try - { - MyClass MyObject = new MyClass(); - MemberInfo [] myMemberInfo; + public static void Run() + { + try + { + MembersBindingFlagsSampleClass MyObject = new(); + MemberInfo[] myMemberInfo; - // Get the type of the class 'MyClass'. - Type myType = MyObject.GetType(); + // Get the type of the class 'MyClass'. + Type myType = MyObject.GetType(); - // Get the public instance members of the class 'MyClass'. - myMemberInfo = myType.GetMembers(BindingFlags.Public|BindingFlags.Instance); + // Get the public instance members of the class 'MyClass'. + myMemberInfo = myType.GetMembers(BindingFlags.Public | BindingFlags.Instance); - Console.WriteLine( "\nThe public instance members of class '{0}' are : \n", myType); - for (int i =0 ; i < myMemberInfo.Length ; i++) - { - // Display name and type of the member of 'MyClass'. - Console.WriteLine( "'{0}' is a {1}", myMemberInfo[i].Name, myMemberInfo[i].MemberType); - } - } - catch (SecurityException e) - { - Console.WriteLine("SecurityException : " + e.Message ); - } + Console.WriteLine($"\nThe public instance members of class '{myType}' are : \n"); + for (int i = 0; i < myMemberInfo.Length; i++) + { + // Display name and type of the member of 'MyClass'. + Console.WriteLine($"'{myMemberInfo[i].Name}' is a {myMemberInfo[i].MemberType}"); + } + } + catch (SecurityException e) + { + Console.WriteLine("SecurityException : " + e.Message); + } - //Output: - //The public instance members of class 'MyClass' are : + //Output: + //The public instance members of class 'MyClass' are : - //'Myfunction' is a Method - //'ToString' is a Method - //'Equals' is a Method - //'GetHashCode' is a Method - //'GetType' is a Method - //'.ctor' is a Constructor - //'myInt' is a Field - //'myString' is a Field - } + //'Myfunction' is a Method + //'ToString' is a Method + //'Equals' is a Method + //'GetHashCode' is a Method + //'GetType' is a Method + //'.ctor' is a Constructor + //'myInt' is a Field + //'myString' is a Field + } } // diff --git a/snippets/csharp/System/Type/GetMethod/GetMethod1.cs b/snippets/csharp/System/Type/GetMethod/GetMethod1.cs index f1fea4624d6..2dba736e77e 100644 --- a/snippets/csharp/System/Type/GetMethod/GetMethod1.cs +++ b/snippets/csharp/System/Type/GetMethod/GetMethod1.cs @@ -6,53 +6,55 @@ public class Example { - public static void Main() - { - // Get a Type object that represents a non-generic type. - GetAddMethod(typeof(ArrayList)); + public static void Main() + { + // Get a Type object that represents a non-generic type. + GetAddMethod(typeof(ArrayList)); - var list = new List(); - // Get a Type object that represents a constructed generic type. - Type closed = list.GetType(); - GetAddMethod(closed); - - // Get a Type object that represents an open generic type. - Type open = typeof(List<>); - GetAddMethod(open); - } + var list = new List(); + // Get a Type object that represents a constructed generic type. + Type closed = list.GetType(); + GetAddMethod(closed); - private static void GetAddMethod(Type typ) - { - MethodInfo method; - // Determine if this is a generic type. - if (typ.IsGenericType) { - // Is it an open generic type? - if (typ.ContainsGenericParameters) - method = typ.GetMethod("Add", typ.GetGenericArguments()); - // Get closed generic type arguments. - else - method = typ.GetMethod("Add", typ.GenericTypeArguments); - } - // This is not a generic type. - else { - method = typ.GetMethod("Add", new Type[] { typeof(Object) } ); - } + // Get a Type object that represents an open generic type. + Type open = typeof(List<>); + GetAddMethod(open); + } - // Test if an Add method was found. - if (method == null) { - Console.WriteLine("No Add method found."); - return; - } - - Type t = method.ReflectedType; - Console.Write("{0}.{1}.{2}(", t.Namespace, t.Name, method.Name); - ParameterInfo[] parms = method.GetParameters(); - for (int ctr = 0; ctr < parms.Length; ctr++) - Console.Write("{0}{1}", parms[ctr].ParameterType.Name, - ctr < parms.Length - 1 ? ", " : ""); + private static void GetAddMethod(Type typ) + { + MethodInfo method; + // Determine if this is a generic type. + if (typ.IsGenericType) + { + // Is it an open generic type? + if (typ.ContainsGenericParameters) + method = typ.GetMethod("Add", typ.GetGenericArguments()); + // Get closed generic type arguments. + else + method = typ.GetMethod("Add", typ.GenericTypeArguments); + } + // This is not a generic type. + else + { + method = typ.GetMethod("Add", [typeof(object)]); + } - Console.WriteLine(")"); - } + // Test if an Add method was found. + if (method == null) + { + Console.WriteLine("No Add method found."); + return; + } + + Type t = method.ReflectedType; + Console.Write($"{t.Namespace}.{t.Name}.{method.Name}("); + ParameterInfo[] parms = method.GetParameters(); + for (int ctr = 0; ctr < parms.Length; ctr++) + Console.Write($"{parms[ctr].ParameterType.Name}{(ctr < parms.Length - 1 ? ", " : "")}"); + + Console.WriteLine(")"); + } } // The example displays the following output: // System.Collections.ArrayList.Add(Object) diff --git a/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads1.cs b/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads1.cs index e54e8d6d12a..3c6b0b60463 100644 --- a/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads1.cs +++ b/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads1.cs @@ -4,25 +4,13 @@ public class TestClass { - public void DisplayValue(String s) - { - Console.WriteLine(s); - } + public void DisplayValue(string s) => Console.WriteLine(s); - public void DisplayValue(String s, params Object[] values) - { - Console.WriteLine(s, values); - } + public void DisplayValue(string s, params object[] values) => Console.WriteLine(s, values); - public static bool Equals(TestClass t1, TestClass t2) - { - return Object.ReferenceEquals(t1, t2); - } + public static bool Equals(TestClass t1, TestClass t2) => object.ReferenceEquals(t1, t2); - public bool Equals(TestClass t) - { - return Object.ReferenceEquals(this, t); - } + public bool Equals(TestClass t) => object.ReferenceEquals(this, t); } public class Example1 @@ -40,14 +28,14 @@ public static void Main() RetrieveMethod(t, "Equals", BindingFlags.Public | BindingFlags.Static); } - private static void RetrieveMethod(Type t, String name, BindingFlags flags) + private static void RetrieveMethod(Type t, string name, BindingFlags flags) { try { MethodInfo m = t.GetMethod(name, flags); if (m != null) { - Console.Write("{0}.{1}(", t.Name, m.Name); + Console.Write($"{t.Name}.{m.Name}("); ParameterInfo[] parms = m.GetParameters(); for (int ctr = 0; ctr < parms.Length; ctr++) { @@ -70,7 +58,7 @@ private static void RetrieveMethod(Type t, String name, BindingFlags flags) { if (method.Name != name) continue; - Console.Write(" {0}.{1}(", t.Name, method.Name); + Console.Write($" {t.Name}.{method.Name}("); ParameterInfo[] parms = method.GetParameters(); for (int ctr = 0; ctr < parms.Length; ctr++) { @@ -88,12 +76,12 @@ private static void RetrieveMethod(Type t, String name, BindingFlags flags) // The following duplicate matches were found: // TestClass.DisplayValue(String) // TestClass.DisplayValue(String, Object[]) -// +// // The following duplicate matches were found: // TestClass.Equals(TestClass) // TestClass.Equals(Object) -// +// // TestClass.Equals(TestClass) -// +// // TestClass.Equals(TestClass, TestClass) // diff --git a/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads2.cs b/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads2.cs index a20302fe188..76fee533016 100644 --- a/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads2.cs +++ b/snippets/csharp/System/Type/GetMethod/GetMethodWithOverloads2.cs @@ -4,13 +4,10 @@ public class Person { - public String FirstName; - public String LastName; + public string FirstName; + public string LastName; - public override String ToString() - { - return (FirstName + " " + LastName).Trim(); - } + public override string ToString() => (FirstName + " " + LastName).Trim(); } public class Example2 @@ -20,25 +17,23 @@ public static void Main() Type t = typeof(Person); RetrieveMethod(t, "ToString"); - t = typeof(Int32); + t = typeof(int); RetrieveMethod(t, "ToString"); } - private static void RetrieveMethod(Type t, String name) + private static void RetrieveMethod(Type t, string name) { try { MethodInfo m = t.GetMethod(name); if (m != null) - Console.WriteLine("{0}.{1}: {2} method", m.ReflectedType.Name, - m.Name, m.IsStatic ? "Static" : "Instance"); + Console.WriteLine($"{m.ReflectedType.Name}.{m.Name}: {(m.IsStatic ? "Static" : "Instance")} method"); else - Console.WriteLine("{0}.ToString method not found", t.Name); + Console.WriteLine($"{t.Name}.ToString method not found"); } catch (AmbiguousMatchException) { - Console.WriteLine("{0}.{1} has multiple public overloads.", - t.Name, name); + Console.WriteLine($"{t.Name}.{name} has multiple public overloads."); } } } diff --git a/snippets/csharp/System/Type/GetMethod/type_getmethod1.cs b/snippets/csharp/System/Type/GetMethod/type_getmethod1.cs index daa6c4a49ff..02904730e99 100644 --- a/snippets/csharp/System/Type/GetMethod/type_getmethod1.cs +++ b/snippets/csharp/System/Type/GetMethod/type_getmethod1.cs @@ -14,7 +14,7 @@ static void Main(string[] args) // Get MethodA() MethodInfo mInfo = typeof(Program).GetMethod("MethodA"); - Console.WriteLine("Found method: {0}", mInfo); + Console.WriteLine($"Found method: {mInfo}"); } } // diff --git a/snippets/csharp/System/Type/GetMethod/type_getmethod2.cs b/snippets/csharp/System/Type/GetMethod/type_getmethod2.cs index 90bca4d28cb..2b71ad9dbd6 100644 --- a/snippets/csharp/System/Type/GetMethod/type_getmethod2.cs +++ b/snippets/csharp/System/Type/GetMethod/type_getmethod2.cs @@ -12,7 +12,7 @@ static void Main(string[] args) // Get MethodA() MethodInfo mInfo = typeof(Program).GetMethod("MethodA", BindingFlags.Public | BindingFlags.Instance); - Console.WriteLine("Found method: {0}", mInfo); + Console.WriteLine($"Found method: {mInfo}"); } } // diff --git a/snippets/csharp/System/Type/GetMethod/type_getmethod3.cs b/snippets/csharp/System/Type/GetMethod/type_getmethod3.cs index 71abd1f72aa..ff7b8bdf725 100644 --- a/snippets/csharp/System/Type/GetMethod/type_getmethod3.cs +++ b/snippets/csharp/System/Type/GetMethod/type_getmethod3.cs @@ -13,59 +13,59 @@ public void MethodA(int[] i) { } public unsafe void MethodA(int* i) { } - public void MethodA(ref int r) {} + public void MethodA(ref int r) { } // Method that takes an out parameter: - public void MethodA(int i, out int o) { o = 100;} + public void MethodA(int i, out int o) => o = 100; - static void Main(string[] args) - { - MethodInfo mInfo; + static void Main(string[] args) + { + MethodInfo mInfo; - // Get MethodA(int i, int j) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - CallingConventions.Any, - new Type[] { typeof(int), typeof(int) }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int i, int j) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + CallingConventions.Any, + [typeof(int), typeof(int)], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int[] i) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - CallingConventions.Any, - new Type[] { typeof(int[]) }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int[] i) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + CallingConventions.Any, + [typeof(int[])], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int* i) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - CallingConventions.Any, - new Type[] { typeof(int).MakePointerType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int* i) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + CallingConventions.Any, + [typeof(int).MakePointerType()], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(ref int r) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - CallingConventions.Any, - new Type[] { typeof(int).MakeByRefType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(ref int r) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + CallingConventions.Any, + [typeof(int).MakeByRefType()], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int i, out int o) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - CallingConventions.Any, - new Type[] { typeof(int), typeof(int).MakeByRefType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); - } + // Get MethodA(int i, out int o) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + CallingConventions.Any, + [typeof(int), typeof(int).MakeByRefType()], + null); + Console.WriteLine($"Found method: {mInfo}"); + } } // diff --git a/snippets/csharp/System/Type/GetMethod/type_getmethod4.cs b/snippets/csharp/System/Type/GetMethod/type_getmethod4.cs index 9275c15de43..c22aec78060 100644 --- a/snippets/csharp/System/Type/GetMethod/type_getmethod4.cs +++ b/snippets/csharp/System/Type/GetMethod/type_getmethod4.cs @@ -13,39 +13,39 @@ public void MethodA(int[] i) { } public unsafe void MethodA(int* i) { } - public void MethodA(ref int r) {} + public void MethodA(ref int r) { } // Method that takes an out parameter: - public void MethodA(int i, out int o) { o = 100;} - - static void Main(string[] args) - { - MethodInfo mInfo; - - // Get MethodA(int i, int i) - mInfo = typeof(Program).GetMethod("MethodA", - new Type[] { typeof(int), typeof(int) }); - Console.WriteLine("Found method: {0}", mInfo); - - // Get MethodA(int[] i) - mInfo = typeof(Program).GetMethod("MethodA", - new Type[] { typeof(int[]) }); - Console.WriteLine("Found method: {0}", mInfo); - - // Get MethodA(int* i) - mInfo = typeof(Program).GetMethod("MethodA", - new Type[] { typeof(int).MakePointerType() }); - Console.WriteLine("Found method: {0}", mInfo); - - // Get MethodA(ref int r) - mInfo = typeof(Program).GetMethod("MethodA", - new Type[] { typeof(int).MakeByRefType() }); - Console.WriteLine("Found method: {0}", mInfo); - - // Get MethodA(int i, out int o) - mInfo = typeof(Program).GetMethod("MethodA", - new Type[] { typeof(int), typeof(int).MakeByRefType() }); - Console.WriteLine("Found method: {0}", mInfo); - } + public void MethodA(int i, out int o) => o = 100; + + static void Main(string[] args) + { + MethodInfo mInfo; + + // Get MethodA(int i, int i) + mInfo = typeof(Program).GetMethod("MethodA", + [typeof(int), typeof(int)]); + Console.WriteLine($"Found method: {mInfo}"); + + // Get MethodA(int[] i) + mInfo = typeof(Program).GetMethod("MethodA", + [typeof(int[])]); + Console.WriteLine($"Found method: {mInfo}"); + + // Get MethodA(int* i) + mInfo = typeof(Program).GetMethod("MethodA", + [typeof(int).MakePointerType()]); + Console.WriteLine($"Found method: {mInfo}"); + + // Get MethodA(ref int r) + mInfo = typeof(Program).GetMethod("MethodA", + [typeof(int).MakeByRefType()]); + Console.WriteLine($"Found method: {mInfo}"); + + // Get MethodA(int i, out int o) + mInfo = typeof(Program).GetMethod("MethodA", + [typeof(int), typeof(int).MakeByRefType()]); + Console.WriteLine($"Found method: {mInfo}"); + } } // diff --git a/snippets/csharp/System/Type/GetMethod/type_getmethod5.cs b/snippets/csharp/System/Type/GetMethod/type_getmethod5.cs index bdd2e23efcb..b130195db1e 100644 --- a/snippets/csharp/System/Type/GetMethod/type_getmethod5.cs +++ b/snippets/csharp/System/Type/GetMethod/type_getmethod5.cs @@ -13,54 +13,54 @@ public void MethodA(int[] i) { } public unsafe void MethodA(int* i) { } - public void MethodA(ref int r) {} + public void MethodA(ref int r) { } // Method that takes an out parameter. - public void MethodA(int i, out int o) { o = 100; } + public void MethodA(int i, out int o) => o = 100; - static void Main(string[] args) - { - MethodInfo mInfo; + static void Main(string[] args) + { + MethodInfo mInfo; - // Get MethodA(int i, int j) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - new Type[] { typeof(int), typeof(int) }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int i, int j) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + [typeof(int), typeof(int)], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int[] i) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - new Type[] { typeof(int[]) }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int[] i) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + [typeof(int[])], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int* i) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - new Type[] { typeof(int).MakePointerType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(int* i) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + [typeof(int).MakePointerType()], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(ref int r) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - new Type[] { typeof(int).MakeByRefType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); + // Get MethodA(ref int r) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + [typeof(int).MakeByRefType()], + null); + Console.WriteLine($"Found method: {mInfo}"); - // Get MethodA(int i, out int o) - mInfo = typeof(Program).GetMethod("MethodA", - BindingFlags.Public | BindingFlags.Instance, - null, - new Type[] { typeof(int), typeof(int).MakeByRefType() }, - null); - Console.WriteLine("Found method: {0}", mInfo); - } + // Get MethodA(int i, out int o) + mInfo = typeof(Program).GetMethod("MethodA", + BindingFlags.Public | BindingFlags.Instance, + null, + [typeof(int), typeof(int).MakeByRefType()], + null); + Console.WriteLine($"Found method: {mInfo}"); + } } // diff --git a/snippets/csharp/System/Type/GetMethods/type_getmethods2.cs b/snippets/csharp/System/Type/GetMethods/type_getmethods2.cs index f50aed0e5f4..952b4f26bfc 100644 --- a/snippets/csharp/System/Type/GetMethods/type_getmethods2.cs +++ b/snippets/csharp/System/Type/GetMethods/type_getmethods2.cs @@ -1,7 +1,7 @@ // using System; using System.Reflection; -using System.Reflection.Emit; + // Create a class having two public methods and one protected method. public class MyTypeClass @@ -9,38 +9,32 @@ public class MyTypeClass public void MyMethods() { } - public int MyMethods1() - { - return 3; - } - protected String MyMethods2() - { - return "hello"; - } + public int MyMethods1() => 3; + protected string MyMethods2() => "hello"; } public class TypeMain { public static void Main() { - Type myType =(typeof(MyTypeClass)); + Type myType = (typeof(MyTypeClass)); // Get the public methods. - MethodInfo[] myArrayMethodInfo = myType.GetMethods(BindingFlags.Public|BindingFlags.Instance|BindingFlags.DeclaredOnly); - Console.WriteLine("\nThe number of public methods is {0}.", myArrayMethodInfo.Length); + MethodInfo[] myArrayMethodInfo = myType.GetMethods(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); + Console.WriteLine($"\nThe number of public methods is {myArrayMethodInfo.Length}."); // Display all the methods. DisplayMethodInfo(myArrayMethodInfo); // Get the nonpublic methods. - MethodInfo[] myArrayMethodInfo1 = myType.GetMethods(BindingFlags.NonPublic|BindingFlags.Instance|BindingFlags.DeclaredOnly); - Console.WriteLine("\nThe number of protected methods is {0}.", myArrayMethodInfo1.Length); + MethodInfo[] myArrayMethodInfo1 = myType.GetMethods(BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly); + Console.WriteLine($"\nThe number of protected methods is {myArrayMethodInfo1.Length}."); // Display information for all methods. - DisplayMethodInfo(myArrayMethodInfo1); + DisplayMethodInfo(myArrayMethodInfo1); } public static void DisplayMethodInfo(MethodInfo[] myArrayMethodInfo) { // Display information for all methods. - for(int i=0;i \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/GetNestedTypes/type_getnestedtypes.cs b/snippets/csharp/System/Type/GetNestedTypes/type_getnestedtypes.cs index 0815b133ce2..dc0981e5a4d 100644 --- a/snippets/csharp/System/Type/GetNestedTypes/type_getnestedtypes.cs +++ b/snippets/csharp/System/Type/GetNestedTypes/type_getnestedtypes.cs @@ -1,15 +1,15 @@ // using System; -using System.Reflection; + public class MyClass { public class NestClass { - public static int myPublicInt=0; + public static int myPublicInt = 0; } public struct NestStruct { - public static int myPublicInt=0; + public static int myPublicInt = 0; } } @@ -20,16 +20,16 @@ public static void Main() try { // Get the Type object corresponding to MyClass. - Type myType=typeof(MyClass); + Type myType = typeof(MyClass); // Get an array of nested type objects in MyClass. - Type[] nestType=myType.GetNestedTypes(); - Console.WriteLine("The number of nested types is {0}.", nestType.Length); - foreach(Type t in nestType) - Console.WriteLine("Nested type is {0}.", t.ToString()); + Type[] nestType = myType.GetNestedTypes(); + Console.WriteLine($"The number of nested types is {nestType.Length}."); + foreach (Type t in nestType) + Console.WriteLine($"Nested type is {t}."); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("Error"+e.Message); + Console.WriteLine("Error" + e.Message); } } } diff --git a/snippets/csharp/System/Type/GetProperties/type_getproperties2.cs b/snippets/csharp/System/Type/GetProperties/type_getproperties2.cs index 0ccfc43b7ee..0296cbaba17 100644 --- a/snippets/csharp/System/Type/GetProperties/type_getproperties2.cs +++ b/snippets/csharp/System/Type/GetProperties/type_getproperties2.cs @@ -5,35 +5,17 @@ // Create a class having six properties. public class PropertyClass { - public String Property1 - { - get { return "hello"; } - } + public string Property1 => "hello"; - public String Property2 - { - get { return "hello"; } - } + public string Property2 => "hello"; - protected String Property3 - { - get { return "hello"; } - } + protected string Property3 => "hello"; - private Int32 Property4 - { - get { return 32; } - } + private int Property4 => 32; - internal String Property5 - { - get { return "value"; } - } + internal string Property5 => "value"; - protected internal String Property6 - { - get { return "value"; } - } + protected internal string Property6 => "value"; } public class Example @@ -42,16 +24,14 @@ public static void Main() { Type t = typeof(PropertyClass); // Get the public properties. - PropertyInfo[] propInfos = t.GetProperties(BindingFlags.Public|BindingFlags.Instance); - Console.WriteLine("The number of public properties: {0}.\n", - propInfos.Length); + PropertyInfo[] propInfos = t.GetProperties(BindingFlags.Public | BindingFlags.Instance); + Console.WriteLine($"The number of public properties: {propInfos.Length}.\n"); // Display the public properties. DisplayPropertyInfo(propInfos); // Get the nonpublic properties. - PropertyInfo[] propInfos1 = t.GetProperties(BindingFlags.NonPublic|BindingFlags.Instance); - Console.WriteLine("The number of non-public properties: {0}.\n", - propInfos1.Length); + PropertyInfo[] propInfos1 = t.GetProperties(BindingFlags.NonPublic | BindingFlags.Instance); + Console.WriteLine($"The number of non-public properties: {propInfos1.Length}.\n"); // Display all the nonpublic properties. DisplayPropertyInfo(propInfos1); } @@ -59,39 +39,40 @@ public static void Main() public static void DisplayPropertyInfo(PropertyInfo[] propInfos) { // Display information for all properties. - foreach (var propInfo in propInfos) { + foreach (var propInfo in propInfos) + { bool readable = propInfo.CanRead; bool writable = propInfo.CanWrite; - Console.WriteLine(" Property name: {0}", propInfo.Name); - Console.WriteLine(" Property type: {0}", propInfo.PropertyType); - Console.WriteLine(" Read-Write: {0}", readable & writable); - if (readable) { - MethodInfo getAccessor = propInfo.GetMethod; - Console.WriteLine(" Visibility: {0}", - GetVisibility(getAccessor)); + Console.WriteLine($" Property name: {propInfo.Name}"); + Console.WriteLine($" Property type: {propInfo.PropertyType}"); + Console.WriteLine($" Read-Write: {readable & writable}"); + if (readable) + { + MethodInfo getAccessor = propInfo.GetMethod; + Console.WriteLine($" Visibility: {GetVisibility(getAccessor)}"); } - if (writable) { - MethodInfo setAccessor = propInfo.SetMethod; - Console.WriteLine(" Visibility: {0}", - GetVisibility(setAccessor)); + if (writable) + { + MethodInfo setAccessor = propInfo.SetMethod; + Console.WriteLine($" Visibility: {GetVisibility(setAccessor)}"); } Console.WriteLine(); } } - public static String GetVisibility(MethodInfo accessor) + public static string GetVisibility(MethodInfo accessor) { - if (accessor.IsPublic) - return "Public"; - else if (accessor.IsPrivate) - return "Private"; - else if (accessor.IsFamily) - return "Protected"; - else if (accessor.IsAssembly) - return "Internal/Friend"; - else - return "Protected Internal/Friend"; + if (accessor.IsPublic) + return "Public"; + else if (accessor.IsPrivate) + return "Private"; + else if (accessor.IsFamily) + return "Protected"; + else if (accessor.IsAssembly) + return "Internal/Friend"; + else + return "Protected Internal/Friend"; } } // The example displays the following output: diff --git a/snippets/csharp/System/Type/GetProperties/type_gettypecode.cs b/snippets/csharp/System/Type/GetProperties/type_gettypecode.cs index ea1d3e67d35..be9dba71888 100644 --- a/snippets/csharp/System/Type/GetProperties/type_gettypecode.cs +++ b/snippets/csharp/System/Type/GetProperties/type_gettypecode.cs @@ -20,49 +20,49 @@ class MyClass { static void Main(string[] args) { -// + // // Create an object of 'Type' class. Type myType1 = Type.GetType("System.Int32"); // Get the 'TypeCode' of the 'Type' class object created above. TypeCode myTypeCode = Type.GetTypeCode(myType1); - Console.WriteLine("TypeCode is: {0}",myTypeCode); -// -// + Console.WriteLine($"TypeCode is: {myTypeCode}"); + // + // PropertyInfo[] myPropertyInfo; // Get the properties of 'Type' class object. myPropertyInfo = Type.GetType("System.Type").GetProperties(); Console.WriteLine("Properties of System.Type are:"); for (int i = 0; i < myPropertyInfo.Length; i++) { - Console.WriteLine(myPropertyInfo[i].ToString()); + Console.WriteLine(myPropertyInfo[i]); } -// -// - Object[] myObject = new Object[3]; + // + // + object[] myObject = new object[3]; myObject[0] = 66; myObject[1] = "puri"; myObject[2] = 33.33; // Get the array of 'Type' class objects. Type[] myTypeArray = Type.GetTypeArray(myObject); Console.WriteLine("Full names of the 'Type' objects in the array are:"); - for(int h = 0; h < myTypeArray.Length ; h++) + for (int h = 0; h < myTypeArray.Length; h++) { Console.WriteLine(myTypeArray[h].FullName); } -// -// + // + // try { // Throws 'TypeLoadException' because of case-sensitive search. - Type myType2 = Type.GetType("sYSTem.iNT32",true,false); + Type myType2 = Type.GetType("sYSTem.iNT32", true, false); Console.WriteLine(myType2.FullName); } - catch(TypeLoadException e) + catch (TypeLoadException e) { Console.WriteLine(e.Message); } -// - catch(Exception e) + // + catch (Exception e) { Console.WriteLine(e.Message); } diff --git a/snippets/csharp/System/Type/GetProperty/type_getproperty1.cs b/snippets/csharp/System/Type/GetProperty/type_getproperty1.cs index c1d1196f3c8..60794e62ad2 100644 --- a/snippets/csharp/System/Type/GetProperty/type_getproperty1.cs +++ b/snippets/csharp/System/Type/GetProperty/type_getproperty1.cs @@ -21,7 +21,7 @@ public static void Main(string[] args) PropertyInfo myPropInfo = myType.GetProperty("MyProperty"); // Display the property name. - Console.WriteLine("The {0} property exists in MyClass1.", myPropInfo.Name); + Console.WriteLine($"The {myPropInfo.Name} property exists in MyClass1."); } catch (NullReferenceException e) { diff --git a/snippets/csharp/System/Type/GetProperty/type_getproperty2.cs b/snippets/csharp/System/Type/GetProperty/type_getproperty2.cs index 6d5fdbebbba..f543aa0017b 100644 --- a/snippets/csharp/System/Type/GetProperty/type_getproperty2.cs +++ b/snippets/csharp/System/Type/GetProperty/type_getproperty2.cs @@ -25,7 +25,7 @@ public static void Main(string[] args) ); // Display Name property to console. - Console.WriteLine("{0} is a property of MyClass2.", myPropInfo.Name); + Console.WriteLine($"{myPropInfo.Name} is a property of MyClass2."); } catch (NullReferenceException e) { diff --git a/snippets/csharp/System/Type/GetProperty/type_getproperty21.cs b/snippets/csharp/System/Type/GetProperty/type_getproperty21.cs index 5f7ee5d3e84..4279b28123f 100644 --- a/snippets/csharp/System/Type/GetProperty/type_getproperty21.cs +++ b/snippets/csharp/System/Type/GetProperty/type_getproperty21.cs @@ -4,18 +4,12 @@ public class MyPropertyClass { - private readonly int [,] _myPropertyArray = new int[10,10]; + private readonly int[,] _myPropertyArray = new int[10, 10]; // Declare an indexer. - public int this [int i,int j] + public int this[int i, int j] { - get - { - return _myPropertyArray[i,j]; - } - set - { - _myPropertyArray[i,j] = value; - } + get => _myPropertyArray[i, j]; + set => _myPropertyArray[i, j] = value; } } @@ -25,22 +19,22 @@ public static void Main() { try { - Type myType=typeof(MyPropertyClass); + Type myType = typeof(MyPropertyClass); Type[] myTypeArray = new Type[2]; // Create an instance of the Type array representing the number, order // and type of the parameters for the property. - myTypeArray.SetValue(typeof(int),0); - myTypeArray.SetValue(typeof(int),1); + myTypeArray.SetValue(typeof(int), 0); + myTypeArray.SetValue(typeof(int), 1); // Search for the indexed property whose parameters match the // specified argument types and modifiers. PropertyInfo myPropertyInfo = myType.GetProperty("Item", - typeof(int),myTypeArray,null); + typeof(int), myTypeArray, null); Console.WriteLine(myType.FullName + "." + myPropertyInfo.Name + " has a property type of " + myPropertyInfo.PropertyType); - } - catch(Exception ex) + } + catch (Exception ex) { Console.WriteLine("An exception occurred " + ex.Message); } diff --git a/snippets/csharp/System/Type/GetProperty/type_getproperty3.cs b/snippets/csharp/System/Type/GetProperty/type_getproperty3.cs index b30e4da0e67..c29675280b8 100644 --- a/snippets/csharp/System/Type/GetProperty/type_getproperty3.cs +++ b/snippets/csharp/System/Type/GetProperty/type_getproperty3.cs @@ -9,14 +9,8 @@ class MyClass3 // Declare an indexer. public int this[int i, int j] { - get - { - return _myArray[i, j]; - } - set - { - _myArray[i, j] = value; - } + get => _myArray[i, j]; + set => _myArray[i, j] = value; } } @@ -38,14 +32,13 @@ public static void Main(string[] args) PropertyInfo myPropInfo = myType.GetProperty("Item", myTypeArr); // Display the property. - Console.WriteLine("The {0} property exists in MyClass3.", - myPropInfo.ToString()); + Console.WriteLine($"The {myPropInfo} property exists in MyClass3."); } catch (NullReferenceException e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Source : {0}", e.Source); - Console.WriteLine("Message : {0}", e.Message); + Console.WriteLine($"Source : {e.Source}"); + Console.WriteLine($"Message : {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/GetProperty/type_getproperty_types.cs b/snippets/csharp/System/Type/GetProperty/type_getproperty_types.cs index 5bd74bc952a..2a7433a34e7 100644 --- a/snippets/csharp/System/Type/GetProperty/type_getproperty_types.cs +++ b/snippets/csharp/System/Type/GetProperty/type_getproperty_types.cs @@ -19,10 +19,8 @@ static void Main() // Get the PropertyInfo object representing MyProperty1. PropertyInfo myStringProperties1 = myType.GetProperty("MyProperty1", typeof(string)); - Console.WriteLine("The name of the first property of MyPropertyTypeClass is {0}.", - myStringProperties1.Name); - Console.WriteLine("The type of the first property of MyPropertyTypeClass is {0}.", - myStringProperties1.PropertyType); + Console.WriteLine($"The name of the first property of MyPropertyTypeClass is {myStringProperties1.Name}."); + Console.WriteLine($"The type of the first property of MyPropertyTypeClass is {myStringProperties1.PropertyType}."); } catch (ArgumentNullException e) { @@ -34,12 +32,12 @@ static void Main() } catch (NullReferenceException e) { - Console.WriteLine("Source : {0}", e.Source); - Console.WriteLine("Message : {0}", e.Message); + Console.WriteLine($"Source : {e.Source}"); + Console.WriteLine($"Message : {e.Message}"); } //Output: //The name of the first property of MyPropertyTypeClass is MyProperty1. //The type of the first property of MyPropertyTypeClass is System.String. } } -// +// diff --git a/snippets/csharp/System/Type/GetType/Project.csproj b/snippets/csharp/System/Type/GetType/Project.csproj index 874c98f3477..1eddf5e00ac 100644 --- a/snippets/csharp/System/Type/GetType/Project.csproj +++ b/snippets/csharp/System/Type/GetType/Project.csproj @@ -1,8 +1,6 @@ - Library net10.0 - - + diff --git a/snippets/csharp/System/Type/GetType/mypath/v5.0/myassembly.cs b/snippets/csharp/System/Type/GetType/mypath/v5.0/myassembly.cs index 7141baf6e99..83b7a06f4be 100644 --- a/snippets/csharp/System/Type/GetType/mypath/v5.0/myassembly.cs +++ b/snippets/csharp/System/Type/GetType/mypath/v5.0/myassembly.cs @@ -1,6 +1,6 @@ -using System; + namespace MyNamespace { - public class MyType {} + public class MyType { } } diff --git a/snippets/csharp/System/Type/GetType/source.cs b/snippets/csharp/System/Type/GetType/source.cs index cdf553928e0..29486be664c 100644 --- a/snippets/csharp/System/Type/GetType/source.cs +++ b/snippets/csharp/System/Type/GetType/source.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; class Example diff --git a/snippets/csharp/System/Type/GetType/type_gettype.cs b/snippets/csharp/System/Type/GetType/type_gettype.cs index c0345bf6a7a..77611966ab3 100644 --- a/snippets/csharp/System/Type/GetType/type_gettype.cs +++ b/snippets/csharp/System/Type/GetType/type_gettype.cs @@ -3,27 +3,30 @@ class GetTypeExample { - public static void Main() - { - try { - // Get the type of a specified class. - Type myType1 = Type.GetType("System.Int32"); - Console.WriteLine("The full name is {0}.\n", myType1.FullName); - } - catch (TypeLoadException e) - { - Console.WriteLine("{0}: Unable to load type System.Int32", e.GetType().Name); - } + public static void Main() + { + try + { + // Get the type of a specified class. + Type myType1 = Type.GetType("System.Int32"); + Console.WriteLine($"The full name is {myType1.FullName}.\n"); + } + catch (TypeLoadException e) + { + Console.WriteLine($"{e.GetType().Name}: Unable to load type System.Int32"); + } - try { - // Since NoneSuch does not exist in this assembly, GetType throws a TypeLoadException. - Type myType2 = Type.GetType("NoneSuch", true); - Console.WriteLine("The full name is {0}.", myType2.FullName); - } - catch(TypeLoadException e) { - Console.WriteLine("{0}: Unable to load type NoneSuch", e.GetType().Name); - } - } + try + { + // Since NoneSuch does not exist in this assembly, GetType throws a TypeLoadException. + Type myType2 = Type.GetType("NoneSuch", true); + Console.WriteLine($"The full name is {myType2.FullName}."); + } + catch (TypeLoadException e) + { + Console.WriteLine($"{e.GetType().Name}: Unable to load type NoneSuch"); + } + } } // The example displays the following output: // The full name is System.Int32. diff --git a/snippets/csharp/System/Type/GetTypeCode/iconvertible.cs b/snippets/csharp/System/Type/GetTypeCode/iconvertible.cs index 66c93790914..c9396ce0e7b 100644 --- a/snippets/csharp/System/Type/GetTypeCode/iconvertible.cs +++ b/snippets/csharp/System/Type/GetTypeCode/iconvertible.cs @@ -7,8 +7,8 @@ namespace ConsoleApplication2 /// Class that implements IConvertible class Complex : IConvertible { - double x; - double y; + double x; + double y; public Complex(double x, double y) { @@ -16,98 +16,47 @@ public Complex(double x, double y) this.y = y; } - public TypeCode GetTypeCode() - { - return TypeCode.Object; - } + public TypeCode GetTypeCode() => TypeCode.Object; bool IConvertible.ToBoolean(IFormatProvider provider) { - if( (x != 0.0) || (y != 0.0) ) + if ((x != 0.0) || (y != 0.0)) return true; else return false; } - double GetDoubleValue() - { - return Math.Sqrt(x*x + y*y); - } + double GetDoubleValue() => Math.Sqrt(x * x + y * y); - byte IConvertible.ToByte(IFormatProvider provider) - { - return Convert.ToByte(GetDoubleValue()); - } + byte IConvertible.ToByte(IFormatProvider provider) => Convert.ToByte(GetDoubleValue()); - char IConvertible.ToChar(IFormatProvider provider) - { - return Convert.ToChar(GetDoubleValue()); - } + char IConvertible.ToChar(IFormatProvider provider) => Convert.ToChar(GetDoubleValue()); - DateTime IConvertible.ToDateTime(IFormatProvider provider) - { - return Convert.ToDateTime(GetDoubleValue()); - } + DateTime IConvertible.ToDateTime(IFormatProvider provider) => Convert.ToDateTime(GetDoubleValue()); - decimal IConvertible.ToDecimal(IFormatProvider provider) - { - return Convert.ToDecimal(GetDoubleValue()); - } + decimal IConvertible.ToDecimal(IFormatProvider provider) => Convert.ToDecimal(GetDoubleValue()); - double IConvertible.ToDouble(IFormatProvider provider) - { - return GetDoubleValue(); - } + double IConvertible.ToDouble(IFormatProvider provider) => GetDoubleValue(); - short IConvertible.ToInt16(IFormatProvider provider) - { - return Convert.ToInt16(GetDoubleValue()); - } + short IConvertible.ToInt16(IFormatProvider provider) => Convert.ToInt16(GetDoubleValue()); - int IConvertible.ToInt32(IFormatProvider provider) - { - return Convert.ToInt32(GetDoubleValue()); - } + int IConvertible.ToInt32(IFormatProvider provider) => Convert.ToInt32(GetDoubleValue()); - long IConvertible.ToInt64(IFormatProvider provider) - { - return Convert.ToInt64(GetDoubleValue()); - } + long IConvertible.ToInt64(IFormatProvider provider) => Convert.ToInt64(GetDoubleValue()); - sbyte IConvertible.ToSByte(IFormatProvider provider) - { - return Convert.ToSByte(GetDoubleValue()); - } + sbyte IConvertible.ToSByte(IFormatProvider provider) => Convert.ToSByte(GetDoubleValue()); - float IConvertible.ToSingle(IFormatProvider provider) - { - return Convert.ToSingle(GetDoubleValue()); - } + float IConvertible.ToSingle(IFormatProvider provider) => Convert.ToSingle(GetDoubleValue()); - string IConvertible.ToString(IFormatProvider provider) - { - return "( " + x.ToString() + " , " + y.ToString() + " )"; - } + string IConvertible.ToString(IFormatProvider provider) => "( " + x + " , " + y + " )"; - object IConvertible.ToType(Type conversionType, IFormatProvider provider) - { - return Convert.ChangeType(GetDoubleValue(),conversionType); - } + object IConvertible.ToType(Type conversionType, IFormatProvider provider) => Convert.ChangeType(GetDoubleValue(), conversionType); - ushort IConvertible.ToUInt16(IFormatProvider provider) - { - return Convert.ToUInt16(GetDoubleValue()); - } + ushort IConvertible.ToUInt16(IFormatProvider provider) => Convert.ToUInt16(GetDoubleValue()); - uint IConvertible.ToUInt32(IFormatProvider provider) - { - return Convert.ToUInt32(GetDoubleValue()); - } + uint IConvertible.ToUInt32(IFormatProvider provider) => Convert.ToUInt32(GetDoubleValue()); - ulong IConvertible.ToUInt64(IFormatProvider provider) - { - return Convert.ToUInt64(GetDoubleValue()); - } + ulong IConvertible.ToUInt64(IFormatProvider provider) => Convert.ToUInt64(GetDoubleValue()); } /// @@ -118,34 +67,34 @@ class Class1 static void Main(string[] args) { - Complex testComplex = new Complex(4,7); + Complex testComplex = new(4, 7); WriteObjectInfo(testComplex); WriteObjectInfo(Convert.ToBoolean(testComplex)); WriteObjectInfo(Convert.ToDecimal(testComplex)); WriteObjectInfo(Convert.ToString(testComplex)); } -// + // static void WriteObjectInfo(object testObject) { - TypeCode typeCode = Type.GetTypeCode( testObject.GetType() ); + TypeCode typeCode = Type.GetTypeCode(testObject.GetType()); - switch( typeCode ) + switch (typeCode) { case TypeCode.Boolean: - Console.WriteLine("Boolean: {0}", testObject); + Console.WriteLine($"Boolean: {testObject}"); break; case TypeCode.Double: - Console.WriteLine("Double: {0}", testObject); + Console.WriteLine($"Double: {testObject}"); break; default: - Console.WriteLine("{0}: {1}", typeCode.ToString(), testObject); + Console.WriteLine($"{typeCode}: {testObject}"); break; } } -// + // } } diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/Program.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/Program.cs new file mode 100644 index 00000000000..e5bc219e3f2 --- /dev/null +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/Program.cs @@ -0,0 +1,5 @@ +GetTypeFromClsidExample1.Run(); +GetTypeFromClsidExample11.Run(); +GetTypeFromClsidExample2.Run(); +GetTypeFromClsidExample3.Run(); +GetTypeFromClsidExample4.Run(); diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/Project.csproj b/snippets/csharp/System/Type/GetTypeFromCLSID/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid1.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid1.cs index ef6f4b99acd..af508f946cc 100644 --- a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid1.cs +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid1.cs @@ -1,26 +1,25 @@ // using System; using System.Reflection; -using System.Runtime.InteropServices; -public class Example + +public class GetTypeFromClsidExample1 { - private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; - - public static void Main() - { - // Start an instance of the Word application. - var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID)); - Console.WriteLine("Instantiated Type object from CLSID {0}", - WORD_CLSID); - Object wordObj = Activator.CreateInstance(word); - Console.WriteLine("Instantiated {0}", - wordObj.GetType().FullName); - - // Close Word. - word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, - wordObj, new object[] { 0, 0, false } ); - } + private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; + + public static void Run() + { + // Start an instance of the Word application. + var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID)); + Console.WriteLine("Instantiated Type object from CLSID {0}", + WORD_CLSID); + object wordObj = Activator.CreateInstance(word); + Console.WriteLine($"Instantiated {wordObj.GetType().FullName}"); + + // Close Word. + word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, + wordObj, [0, 0, false]); + } } // The example displays the following output: // Instantiated Type object from CLSID {000209FF-0000-0000-C000-000000000046} diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid11.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid11.cs index f6b20ed2b01..cd4851d6a74 100644 --- a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid11.cs +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid11.cs @@ -2,7 +2,7 @@ using System; using System.Runtime.InteropServices; -[assembly:ComVisible(true)] +[assembly: ComVisible(true)] // Define two classes, and assign one an explicit GUID. [GuidAttribute("d055cba3-1f83-4bd7-ba19-e22b1b8ec3c4")] @@ -12,69 +12,67 @@ public class ExplicitGuid public class NoExplicitGuid { } -public class Example +public class GetTypeFromClsidExample11 { - public static void Main() - { - Type explicitType = typeof(ExplicitGuid); - Guid explicitGuid = explicitType.GUID; - - // Get type of ExplicitGuid from its GUID. - Type explicitCOM = Type.GetTypeFromCLSID(explicitGuid); - Console.WriteLine("Created {0} type from CLSID {1}", - explicitCOM.Name, explicitGuid); - - // Compare the two type objects. - Console.WriteLine("{0} and {1} equal: {2}", - explicitType.Name, explicitCOM.Name, - explicitType.Equals(explicitCOM)); - - // Instantiate an ExplicitGuid object. - try { - Object obj = Activator.CreateInstance(explicitCOM); - Console.WriteLine("Instantiated a {0} object", obj.GetType().Name); - } - catch (COMException e) { - Console.WriteLine("COM Exception:\n{0}\n", e.Message); - } - - Type notExplicit = typeof(NoExplicitGuid); - Guid notExplicitGuid = notExplicit.GUID; - - // Get type of ExplicitGuid from its GUID. - Type notExplicitCOM = Type.GetTypeFromCLSID(notExplicitGuid); - Console.WriteLine("Created {0} type from CLSID {1}", - notExplicitCOM.Name, notExplicitGuid); - - // Compare the two type objects. - Console.WriteLine("{0} and {1} equal: {2}", - notExplicit.Name, notExplicitCOM.Name, - notExplicit.Equals(notExplicitCOM)); - - // Instantiate an ExplicitGuid object. - try { - Object obj = Activator.CreateInstance(notExplicitCOM); - Console.WriteLine("Instantiated a {0} object", obj.GetType().Name); - } - catch (COMException e) { - Console.WriteLine("COM Exception:\n{0}\n", e.Message); - } - } + public static void Run() + { + Type explicitType = typeof(ExplicitGuid); + Guid explicitGuid = explicitType.GUID; + + // Get type of ExplicitGuid from its GUID. + Type explicitCOM = Type.GetTypeFromCLSID(explicitGuid); + Console.WriteLine($"Created {explicitCOM.Name} type from CLSID {explicitGuid}"); + + // Compare the two type objects. + Console.WriteLine($"{explicitType.Name} and {explicitCOM.Name} equal: {explicitType.Equals(explicitCOM)}"); + + // Instantiate an ExplicitGuid object. + try + { + object obj = Activator.CreateInstance(explicitCOM); + Console.WriteLine($"Instantiated a {obj.GetType().Name} object"); + } + catch (COMException e) + { + Console.WriteLine($"COM Exception:\n{e.Message}\n"); + } + + Type notExplicit = typeof(NoExplicitGuid); + Guid notExplicitGuid = notExplicit.GUID; + + // Get type of ExplicitGuid from its GUID. + Type notExplicitCOM = Type.GetTypeFromCLSID(notExplicitGuid); + Console.WriteLine($"Created {notExplicitCOM.Name} type from CLSID {notExplicitGuid}"); + + // Compare the two type objects. + Console.WriteLine($"{notExplicit.Name} and {notExplicitCOM.Name} equal: {notExplicit.Equals(notExplicitCOM)}"); + + // Instantiate an ExplicitGuid object. + try + { + object obj = Activator.CreateInstance(notExplicitCOM); + Console.WriteLine($"Instantiated a {obj.GetType().Name} object"); + } + catch (COMException e) + { + Console.WriteLine($"COM Exception:\n{e.Message}\n"); + } + } } // The example displays the following output: // Created __ComObject type from CLSID d055cba3-1f83-4bd7-ba19-e22b1b8ec3c4 // ExplicitGuid and __ComObject equal: False // COM Exception: -// Retrieving the COM class factory for component with CLSID -// {D055CBA3-1F83-4BD7-BA19-E22B1B8EC3C4} failed due to the following error: -// 80040154 Class not registered +// Retrieving the COM class factory for component with CLSID +// {D055CBA3-1F83-4BD7-BA19-E22B1B8EC3C4} failed due to the following error: +// 80040154 Class not registered // (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). -// +// // Created __ComObject type from CLSID 74f03346-a718-3516-ac78-f351c7459ffb // NoExplicitGuid and __ComObject equal: False // COM Exception: -// Retrieving the COM class factory for component with CLSID -// {74F03346-A718-3516-AC78-F351C7459FFB} failed due to the following error: -// 80040154 Class not registered +// Retrieving the COM class factory for component with CLSID +// {74F03346-A718-3516-AC78-F351C7459FFB} failed due to the following error: +// 80040154 Class not registered // (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). // diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex2.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex2.cs index 721c6fbd9a9..a1f9728aad0 100644 --- a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex2.cs +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex2.cs @@ -1,31 +1,33 @@ // using System; using System.Reflection; -using System.Runtime.InteropServices; -public class Example + +public class GetTypeFromClsidExample2 { - private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; - - public static void Main() - { - try { - // Start an instance of the Word application. - var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), true); - Console.WriteLine("Instantiated Type object from CLSID {0}", - WORD_CLSID); - Object wordObj = Activator.CreateInstance(word); - Console.WriteLine("Instantiated {0}", - wordObj.GetType().FullName, WORD_CLSID); - - // Close Word. - word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, - wordObj, new object[] { 0, 0, false } ); - } - catch (Exception) { - Console.WriteLine("Unable to instantiate an object for {0}", WORD_CLSID); - } - } + private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; + + public static void Run() + { + try + { + // Start an instance of the Word application. + var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), true); + Console.WriteLine("Instantiated Type object from CLSID {0}", + WORD_CLSID); + object wordObj = Activator.CreateInstance(word); + Console.WriteLine("Instantiated {0}", + wordObj.GetType().FullName, WORD_CLSID); + + // Close Word. + word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, + wordObj, [0, 0, false]); + } + catch (Exception) + { + Console.WriteLine("Unable to instantiate an object for {0}", WORD_CLSID); + } + } } // The example displays the following output: // Instantiated Type object from CLSID {000209FF-0000-0000-C000-000000000046} diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex3.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex3.cs index 1f82da2f08e..f5f2672cb1d 100644 --- a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex3.cs +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex3.cs @@ -3,29 +3,31 @@ using System.Reflection; using System.Runtime.InteropServices; -public class Example +public class GetTypeFromClsidExample3 { - private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; - - public static void Main() - { - // Start an instance of the Word application. - var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), "computer17.central.contoso.com"); - Console.WriteLine("Instantiated Type object from CLSID {0}", - WORD_CLSID); - try { - Object wordObj = Activator.CreateInstance(word); - Console.WriteLine("Instantiated {0}", - wordObj.GetType().FullName, WORD_CLSID); - - // Close Word. - word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, - wordObj, new object[] { 0, 0, false } ); - } - catch (COMException) { - Console.WriteLine("Unable to instantiate object."); - } - } + private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; + + public static void Run() + { + // Start an instance of the Word application. + var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), "computer17.central.contoso.com"); + Console.WriteLine("Instantiated Type object from CLSID {0}", + WORD_CLSID); + try + { + object wordObj = Activator.CreateInstance(word); + Console.WriteLine("Instantiated {0}", + wordObj.GetType().FullName, WORD_CLSID); + + // Close Word. + word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, + wordObj, [0, 0, false]); + } + catch (COMException) + { + Console.WriteLine("Unable to instantiate object."); + } + } } // The example displays the following output: // Instantiated Type object from CLSID {000209FF-0000-0000-C000-000000000046} diff --git a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex4.cs b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex4.cs index ca61680bb07..2f5f32e40bf 100644 --- a/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex4.cs +++ b/snippets/csharp/System/Type/GetTypeFromCLSID/gettypefromclsid_ex4.cs @@ -1,35 +1,37 @@ // using System; using System.Reflection; -using System.Runtime.InteropServices; -public class Example + +public class GetTypeFromClsidExample4 { - private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; - - public static void Main() - { - try { - // Start an instance of the Word application. - var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), - "computer17.central.contoso.com", - true); - Console.WriteLine("Instantiated Type object from CLSID {0}", - WORD_CLSID); - Object wordObj = Activator.CreateInstance(word); - Console.WriteLine("Instantiated {0}", - wordObj.GetType().FullName, WORD_CLSID); - - // Close Word. - word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, - wordObj, new object[] { 0, 0, false } ); - } - // The method can throw any of a variety of exceptions. - catch (Exception e) { - Console.WriteLine("{0}: Unable to instantiate an object for {1}", - e.GetType().Name, WORD_CLSID); - } - } + private const string WORD_CLSID = "{000209FF-0000-0000-C000-000000000046}"; + + public static void Run() + { + try + { + // Start an instance of the Word application. + var word = Type.GetTypeFromCLSID(Guid.Parse(WORD_CLSID), + "computer17.central.contoso.com", + true); + Console.WriteLine("Instantiated Type object from CLSID {0}", + WORD_CLSID); + object wordObj = Activator.CreateInstance(word); + Console.WriteLine("Instantiated {0}", + wordObj.GetType().FullName, WORD_CLSID); + + // Close Word. + word.InvokeMember("Quit", BindingFlags.InvokeMethod, null, + wordObj, [0, 0, false]); + } + // The method can throw any of a variety of exceptions. + catch (Exception e) + { + Console.WriteLine("{0}: Unable to instantiate an object for {1}", + e.GetType().Name, WORD_CLSID); + } + } } // The example displays the following output: // Instantiated Type object from CLSID {000209FF-0000-0000-C000-000000000046} diff --git a/snippets/csharp/System/Type/GetTypeFromHandle/type_gettypefromhandle.cs b/snippets/csharp/System/Type/GetTypeFromHandle/type_gettypefromhandle.cs index 5cc5c7b802a..9912d73d65b 100644 --- a/snippets/csharp/System/Type/GetTypeFromHandle/type_gettypefromhandle.cs +++ b/snippets/csharp/System/Type/GetTypeFromHandle/type_gettypefromhandle.cs @@ -9,20 +9,20 @@ returns the type referenced by the specified type handle. */ using System; -using System.Reflection; + public class MyClass1 { } public class MyClass2 { - public static void Main() - { -// - MyClass1 myClass1 = new MyClass1(); - // Get the type referenced by the specified type handle. + public static void Main() + { + // + MyClass1 myClass1 = new(); + // Get the type referenced by the specified type handle. Type myClass1Type = Type.GetTypeFromHandle(Type.GetTypeHandle(myClass1)); - Console.WriteLine("The Names of the Attributes :"+myClass1Type.Attributes); -// - } + Console.WriteLine("The Names of the Attributes :" + myClass1Type.Attributes); + // + } } diff --git a/snippets/csharp/System/Type/GetTypeFromProgID/Program.cs b/snippets/csharp/System/Type/GetTypeFromProgID/Program.cs new file mode 100644 index 00000000000..20ffc263a18 --- /dev/null +++ b/snippets/csharp/System/Type/GetTypeFromProgID/Program.cs @@ -0,0 +1,3 @@ +ProgIdExample2.Run(); +ProgIdExample3.Run(); +ProgIdExample4.Run(); diff --git a/snippets/csharp/System/Type/GetTypeFromProgID/Project.csproj b/snippets/csharp/System/Type/GetTypeFromProgID/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/GetTypeFromProgID/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid2.cs b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid2.cs index 79fae7f6198..d319b5442c5 100644 --- a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid2.cs +++ b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid2.cs @@ -1,27 +1,27 @@ // using System; -class MainApp +class ProgIdExample2 { - public static void Main() + public static void Run() { try { // Use the ProgID HKEY_CLASSES_ROOT\DirControl.DirList.1. - string myString1 ="DIRECT.ddPalette.3"; + string myString1 = "DIRECT.ddPalette.3"; // Use a nonexistent ProgID WrongProgID. - string myString2 ="WrongProgID"; + string myString2 = "WrongProgID"; // Make a call to the method to get the type information of the given ProgID. - Type myType1 =Type.GetTypeFromProgID(myString1,true); - Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType1.GUID); + Type myType1 = Type.GetTypeFromProgID(myString1, true); + Console.WriteLine($"GUID for ProgID DirControl.DirList.1 is {myType1.GUID}."); // Throw an exception because the ProgID is invalid and the throwOnError // parameter is set to True. - Type myType2 =Type.GetTypeFromProgID(myString2,true); + Type myType2 = Type.GetTypeFromProgID(myString2, true); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Source: {0}", e.Source); - Console.WriteLine("Message: {0}", e.Message); + Console.WriteLine($"Source: {e.Source}"); + Console.WriteLine($"Message: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid3.cs b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid3.cs index c393f182998..ee9e294fe37 100644 --- a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid3.cs +++ b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid3.cs @@ -1,29 +1,29 @@ // using System; -class MainApp +class ProgIdExample3 { - public static void Main() + public static void Run() { try { // Use the ProgID localhost\HKEY_CLASSES_ROOT\DirControl.DirList.1. - string theProgramID ="DirControl.DirList.1"; + string theProgramID = "DirControl.DirList.1"; // Use the server name localhost. - string theServer="localhost"; + string theServer = "localhost"; // Make a call to the method to get the type information for the given ProgID. - Type myType =Type.GetTypeFromProgID(theProgramID,theServer); - if(myType==null) + Type myType = Type.GetTypeFromProgID(theProgramID, theServer); + if (myType == null) { throw new Exception("Invalid ProgID or Server."); } - Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType.GUID); + Console.WriteLine($"GUID for ProgID DirControl.DirList.1 is {myType.GUID}."); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("An exception occurred."); - Console.WriteLine("Source: {0}" , e.Source); - Console.WriteLine("Message: {0}" , e.Message); - } + Console.WriteLine($"Source: {e.Source}"); + Console.WriteLine($"Message: {e.Message}"); + } } } // diff --git a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid4.cs b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid4.cs index 614ad868a87..8f2b49274f7 100644 --- a/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid4.cs +++ b/snippets/csharp/System/Type/GetTypeFromProgID/type_gettypefromprogid4.cs @@ -1,30 +1,30 @@ // using System; -class MainApp +class ProgIdExample4 { - public static void Main() + public static void Run() { try { // Use server localhost. - string theServer="localhost"; + string theServer = "localhost"; // Use ProgID HKEY_CLASSES_ROOT\DirControl.DirList.1. - string myString1 ="DirControl.DirList.1"; + string myString1 = "DirControl.DirList.1"; // Use a wrong ProgID WrongProgID. - string myString2 ="WrongProgID"; + string myString2 = "WrongProgID"; // Make a call to the method to get the type information for the given ProgID. - Type myType1 =Type.GetTypeFromProgID(myString1,theServer,true); - Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType1.GUID); + Type myType1 = Type.GetTypeFromProgID(myString1, theServer, true); + Console.WriteLine($"GUID for ProgID DirControl.DirList.1 is {myType1.GUID}."); // Throw an exception because the ProgID is invalid and the throwOnError // parameter is set to True. - Type myType2 =Type.GetTypeFromProgID(myString2, theServer, true); + Type myType2 = Type.GetTypeFromProgID(myString2, theServer, true); } - catch(Exception e) + catch (Exception e) { Console.WriteLine("An exception occurred. The ProgID is wrong."); - Console.WriteLine("Source: {0}" , e.Source); - Console.WriteLine("Message: {0}" , e.Message); + Console.WriteLine($"Source: {e.Source}"); + Console.WriteLine($"Message: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/HasElementType/Project.csproj b/snippets/csharp/System/Type/HasElementType/Project.csproj new file mode 100644 index 00000000000..44b6b69ca6f --- /dev/null +++ b/snippets/csharp/System/Type/HasElementType/Project.csproj @@ -0,0 +1,7 @@ + + + Exe + net10.0 + true + + diff --git a/snippets/csharp/System/Type/HasElementType/type_haselementtype.cs b/snippets/csharp/System/Type/HasElementType/type_haselementtype.cs index 72580e41191..4217e994597 100644 --- a/snippets/csharp/System/Type/HasElementType/type_haselementtype.cs +++ b/snippets/csharp/System/Type/HasElementType/type_haselementtype.cs @@ -7,29 +7,26 @@ public class Example { // This method is for demonstration purposes. - unsafe public void Test(ref int x, out int y, int* z) - { - *z = x = y = 0; - } + unsafe public void Test(ref int x, out int y, int* z) => *z = x = y = 0; public static void Main() { // All of the following display 'True'. // Define an array, get its type, and display HasElementType. - int[] nums = {1, 1, 2, 3, 5, 8, 13}; + int[] nums = [1, 1, 2, 3, 5, 8, 13]; Type t = nums.GetType(); - Console.WriteLine("HasElementType is '{0}' for array types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for array types."); // Test an array type without defining an array. t = typeof(Example[]); - Console.WriteLine("HasElementType is '{0}' for array types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for array types."); // When you use Reflection Emit to emit dynamic methods and // assemblies, you can create array types using MakeArrayType. // The following creates the type 'array of Example'. t = typeof(Example).MakeArrayType(); - Console.WriteLine("HasElementType is '{0}' for array types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for array types."); // When you reflect over methods, HasElementType is true for // ref, out, and pointer parameter types. The following @@ -38,19 +35,19 @@ public static void Main() MethodInfo mi = typeof(Example).GetMethod("Test"); ParameterInfo[] parms = mi.GetParameters(); t = parms[0].ParameterType; - Console.WriteLine("HasElementType is '{0}' for ref parameter types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for ref parameter types."); t = parms[1].ParameterType; - Console.WriteLine("HasElementType is '{0}' for out parameter types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for out parameter types."); t = parms[2].ParameterType; - Console.WriteLine("HasElementType is '{0}' for pointer parameter types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for pointer parameter types."); // When you use Reflection Emit to emit dynamic methods and // assemblies, you can create pointer and ByRef types to use // when you define method parameters. t = typeof(Example).MakePointerType(); - Console.WriteLine("HasElementType is '{0}' for pointer types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for pointer types."); t = typeof(Example).MakeByRefType(); - Console.WriteLine("HasElementType is '{0}' for ByRef types.", t.HasElementType); + Console.WriteLine($"HasElementType is '{t.HasElementType}' for ByRef types."); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/HasElementTypeImpl/type_haselementtypeimpl.cs b/snippets/csharp/System/Type/HasElementTypeImpl/type_haselementtypeimpl.cs index 18df3d3db3c..9dee37ed1ed 100644 --- a/snippets/csharp/System/Type/HasElementTypeImpl/type_haselementtypeimpl.cs +++ b/snippets/csharp/System/Type/HasElementTypeImpl/type_haselementtypeimpl.cs @@ -4,28 +4,25 @@ public class MyTypeDelegator : TypeDelegator { public string myElementType = null; - private Type myType = null ; - public MyTypeDelegator(Type myType) : base(myType) - { - this.myType = myType; - } + private Type myType = null; + public MyTypeDelegator(Type myType) : base(myType) => this.myType = myType; // Override Type.HasElementTypeImpl(). protected override bool HasElementTypeImpl() { // Determine whether the type is an array. - if(myType.IsArray) + if (myType.IsArray) { myElementType = "array"; return true; } // Determine whether the type is a reference. - if(myType.IsByRef) + if (myType.IsByRef) { myElementType = "reference"; return true; } // Determine whether the type is a pointer. - if(myType.IsPointer) + if (myType.IsPointer) { myElementType = "pointer"; return true; @@ -40,25 +37,25 @@ public static void Main() { try { - int myInt = 0 ; + int myInt = 0; int[] myArray = new int[5]; - MyTypeDelegator myType = new MyTypeDelegator(myArray.GetType()); + MyTypeDelegator myType = new(myArray.GetType()); // Determine whether myType is an array, pointer, reference type. Console.WriteLine("\nDetermine whether a variable is an array, pointer, or reference type.\n"); - if( myType.HasElementType) - Console.WriteLine("The type of myArray is {0}.", myType.myElementType); + if (myType.HasElementType) + Console.WriteLine($"The type of myArray is {myType.myElementType}."); else Console.WriteLine("myArray is not an array, pointer, or reference type."); - myType = new MyTypeDelegator(myInt.GetType()); + myType = new(myInt.GetType()); // Determine whether myType is an array, pointer, reference type. - if( myType.HasElementType) - Console.WriteLine("The type of myInt is {0}.", myType.myElementType); + if (myType.HasElementType) + Console.WriteLine($"The type of myInt is {myType.myElementType}."); else Console.WriteLine("myInt is not an array, pointer, or reference type."); } - catch( Exception e ) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message); + Console.WriteLine($"Exception: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/InvokeMember/invokemem.cs b/snippets/csharp/System/Type/InvokeMember/invokemem.cs index 69618c33a7a..b9b9282fb9c 100644 --- a/snippets/csharp/System/Type/InvokeMember/invokemem.cs +++ b/snippets/csharp/System/Type/InvokeMember/invokemem.cs @@ -5,12 +5,12 @@ // This sample class has a field, constructor, method, and property. class MyType { - Int32 myField; - public MyType(ref Int32 x) {x *= 5;} - public override String ToString() {return myField.ToString();} - public Int32 MyProp + int myField; + public MyType(ref int x) => x *= 5; + public override string ToString() => myField.ToString(); + public int MyProp { - get {return myField;} + get => myField; set { if (value < 1) @@ -26,28 +26,28 @@ static void Main() { Type t = typeof(MyType); // Create an instance of a type. - Object[] args = new Object[] {8}; - Console.WriteLine("The value of x before the constructor is called is {0}.", args[0]); - Object obj = t.InvokeMember(null, + object[] args = [8]; + Console.WriteLine($"The value of x before the constructor is called is {args[0]}."); + object obj = t.InvokeMember(null, BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.CreateInstance, null, null, args); - Console.WriteLine("Type: " + obj.GetType().ToString()); - Console.WriteLine("The value of x after the constructor returns is {0}.", args[0]); + Console.WriteLine("Type: " + obj.GetType()); + Console.WriteLine($"The value of x after the constructor returns is {args[0]}."); // Read and write to a field. t.InvokeMember("myField", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | - BindingFlags.Instance | BindingFlags.SetField, null, obj, new Object[] {5}); - Int32 v = (Int32) t.InvokeMember("myField", + BindingFlags.Instance | BindingFlags.SetField, null, obj, [5]); + int v = (int)t.InvokeMember("myField", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetField, null, obj, null); Console.WriteLine("myField: " + v); // Call a method. - String s = (String) t.InvokeMember("ToString", + string s = (string)t.InvokeMember("ToString", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.InvokeMethod, null, obj, null); @@ -67,7 +67,7 @@ static void Main() t.InvokeMember("MyProp", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | - BindingFlags.Instance | BindingFlags.SetProperty, null, obj, new Object[] {0}); + BindingFlags.Instance | BindingFlags.SetProperty, null, obj, [0]); } catch (TargetInvocationException e) { @@ -81,12 +81,12 @@ static void Main() t.InvokeMember("MyProp", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | - BindingFlags.Instance | BindingFlags.SetProperty, null, obj, new Object[] {2}); - v = (Int32) t.InvokeMember("MyProp", + BindingFlags.Instance | BindingFlags.SetProperty, null, obj, [2]); + v = (int)t.InvokeMember("MyProp", BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetProperty, null, obj, null); Console.WriteLine("MyProp: " + v); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsAbstract/isabstract1.cs b/snippets/csharp/System/Type/IsAbstract/isabstract1.cs index e8fd4bc0b3b..795f13a3810 100644 --- a/snippets/csharp/System/Type/IsAbstract/isabstract1.cs +++ b/snippets/csharp/System/Type/IsAbstract/isabstract1.cs @@ -2,43 +2,39 @@ using System; public abstract class AbstractClass -{} +{ } public class DerivedClass : AbstractClass -{} +{ } public sealed class SingleClass -{} +{ } public interface ITypeInfo { - string GetName(); + string GetName(); } public class ImplementingClass : ITypeInfo { - public string GetName() - { - return this.GetType().FullName; - } + public string GetName() => this.GetType().FullName; } delegate string InputOutput(string inp); public class Example { - public static void Main() - { - Type[] types= { typeof(AbstractClass), - typeof(DerivedClass), - typeof(ITypeInfo), - typeof(SingleClass), - typeof(ImplementingClass), - typeof(InputOutput) }; - foreach (var type in types) - Console.WriteLine("{0} is abstract: {1}", - type.Name, type.IsAbstract); - } + public static void Main() + { + Type[] types = [typeof(AbstractClass), + typeof(DerivedClass), + typeof(ITypeInfo), + typeof(SingleClass), + typeof(ImplementingClass), + typeof(InputOutput)]; + foreach (var type in types) + Console.WriteLine($"{type.Name} is abstract: {type.IsAbstract}"); + } } // The example displays the following output: // AbstractClass is abstract: True diff --git a/snippets/csharp/System/Type/IsAnsiClass/type_isansiclass.cs b/snippets/csharp/System/Type/IsAnsiClass/type_isansiclass.cs index d42efe9efe2..e5b06e91157 100644 --- a/snippets/csharp/System/Type/IsAnsiClass/type_isansiclass.cs +++ b/snippets/csharp/System/Type/IsAnsiClass/type_isansiclass.cs @@ -3,7 +3,7 @@ using System.Reflection; public class MyClass { - protected string myField = "A sample protected field." ; + protected string myField = "A sample protected field."; } public class MyType_IsAnsiClass { @@ -11,19 +11,19 @@ public static void Main() { try { - MyClass myObject = new MyClass(); + MyClass myObject = new(); // Get the type of the 'MyClass'. Type myType = typeof(MyClass); // Get the field information and the attributes associated with MyClass. - FieldInfo myFieldInfo = myType.GetField("myField", BindingFlags.NonPublic|BindingFlags.Instance); - Console.WriteLine( "\nChecking for the AnsiClass attribute for a field.\n"); + FieldInfo myFieldInfo = myType.GetField("myField", BindingFlags.NonPublic | BindingFlags.Instance); + Console.WriteLine("\nChecking for the AnsiClass attribute for a field.\n"); // Get and display the name, field, and the AnsiClass attribute. - Console.WriteLine("Name of Class: {0} \nValue of Field: {1} \nIsAnsiClass = {2}", myType.FullName, myFieldInfo.GetValue(myObject), myType.IsAnsiClass); + Console.WriteLine($"Name of Class: {myType.FullName} \nValue of Field: {myFieldInfo.GetValue(myObject)} \nIsAnsiClass = {myType.IsAnsiClass}"); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("Exception: {0}",e.Message); + Console.WriteLine($"Exception: {e.Message}"); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsArray/isarray2.cs b/snippets/csharp/System/Type/IsArray/isarray2.cs index feed53d1423..66907266053 100644 --- a/snippets/csharp/System/Type/IsArray/isarray2.cs +++ b/snippets/csharp/System/Type/IsArray/isarray2.cs @@ -5,16 +5,15 @@ public class Example { - public static void Main() - { - Type[] types = { typeof(String), typeof(int[]), - typeof(ArrayList), typeof(Array), - typeof(List), - typeof(IEnumerable) }; - foreach (var t in types) - Console.WriteLine("{0,-15} IsArray = {1}", t.Name + ":", - t.IsArray); - } + public static void Main() + { + Type[] types = [typeof(string), typeof(int[]), + typeof(ArrayList), typeof(Array), + typeof(List), + typeof(IEnumerable)]; + foreach (var t in types) + Console.WriteLine($"{t.Name + ":",-15} IsArray = {t.IsArray}"); + } } // The example displays the following output: // String: IsArray = False diff --git a/snippets/csharp/System/Type/IsArrayImpl/type_isarrayimpl.cs b/snippets/csharp/System/Type/IsArrayImpl/type_isarrayimpl.cs index bf078734e26..4b52c4981fd 100644 --- a/snippets/csharp/System/Type/IsArrayImpl/type_isarrayimpl.cs +++ b/snippets/csharp/System/Type/IsArrayImpl/type_isarrayimpl.cs @@ -5,15 +5,12 @@ public class MyTypeDelegator : TypeDelegator { public string myElementType = null; public Type myType; - public MyTypeDelegator(Type myType) : base(myType) - { - this.myType = myType; - } + public MyTypeDelegator(Type myType) : base(myType) => this.myType = myType; // Override IsArrayImpl(). protected override bool IsArrayImpl() { // Determine whether the type is an array. - if(myType.IsArray) + if (myType.IsArray) { myElementType = "array"; return true; @@ -28,27 +25,27 @@ public static void Main() { try { - int myInt = 0 ; + int myInt = 0; // Create an instance of an array element. int[] myArray = new int[5]; - MyTypeDelegator myType = new MyTypeDelegator(myArray.GetType()); + MyTypeDelegator myType = new(myArray.GetType()); Console.WriteLine("\nDetermine whether the variable is an array.\n"); // Determine whether myType is an array type. - if( myType.IsArray) - Console.WriteLine("The type of myArray is {0}.", myType.myElementType); + if (myType.IsArray) + Console.WriteLine($"The type of myArray is {myType.myElementType}."); else Console.WriteLine("myArray is not an array."); - myType = new MyTypeDelegator(myInt.GetType()); + myType = new(myInt.GetType()); // Determine whether myType is an array type. - if( myType.IsArray) - Console.WriteLine("The type of myInt is {0}.", myType.myElementType); + if (myType.IsArray) + Console.WriteLine($"The type of myInt is {myType.myElementType}."); else Console.WriteLine("myInt is not an array."); } - catch( Exception e ) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message ); + Console.WriteLine($"Exception: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom2.cs b/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom2.cs index aa1219c81c6..1571176e7ab 100644 --- a/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom2.cs +++ b/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom2.cs @@ -2,18 +2,18 @@ using System; using System.IO; -public class Example +public class IsAssignableFromExample2 { - public static void Main() - { - Type t = typeof(Stream); - Type genericT = typeof(GenericWithConstraint<>); - Type genericParam = genericT.GetGenericArguments()[0]; - Console.WriteLine(t.IsAssignableFrom(genericParam)); - // Displays True. - } + public static void Run() + { + Type t = typeof(Stream); + Type genericT = typeof(GenericWithConstraint<>); + Type genericParam = genericT.GetGenericArguments()[0]; + Console.WriteLine(t.IsAssignableFrom(genericParam)); + // Displays True. + } } public class GenericWithConstraint where T : Stream -{} +{ } // diff --git a/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom3.cs b/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom3.cs index 15c10742cc7..8e946b32725 100644 --- a/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom3.cs +++ b/snippets/csharp/System/Type/IsAssignableFrom/IsAssignableFrom3.cs @@ -2,19 +2,19 @@ using System; using System.Collections; -public class Example +public class IsAssignableFromExample3 { - public static void Main() - { - Type t = typeof(IEnumerable); - Type c = typeof(Array); - - IEnumerable instanceOfT; - int[] instanceOfC = { 1, 2, 3, 4 }; - if (t.IsAssignableFrom(c)) - // - instanceOfT = instanceOfC; - // - } + public static void Run() + { + Type t = typeof(IEnumerable); + Type c = typeof(Array); + + IEnumerable instanceOfT; + int[] instanceOfC = [1, 2, 3, 4]; + if (t.IsAssignableFrom(c)) + // + instanceOfT = instanceOfC; + // + } } // diff --git a/snippets/csharp/System/Type/IsAssignableFrom/Program.cs b/snippets/csharp/System/Type/IsAssignableFrom/Program.cs new file mode 100644 index 00000000000..b26637a8463 --- /dev/null +++ b/snippets/csharp/System/Type/IsAssignableFrom/Program.cs @@ -0,0 +1,4 @@ +IsAssignableFromExample1.Run(); +IsAssignableFromExample2.Run(); +IsAssignableFromExample3.Run(); +IsAssignableFromTest.Run(); diff --git a/snippets/csharp/System/Type/IsAssignableFrom/Project.csproj b/snippets/csharp/System/Type/IsAssignableFrom/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/IsAssignableFrom/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/IsAssignableFrom/isassignablefrom_ex1.cs b/snippets/csharp/System/Type/IsAssignableFrom/isassignablefrom_ex1.cs index 51246e4ac4e..a3bde43aec2 100644 --- a/snippets/csharp/System/Type/IsAssignableFrom/isassignablefrom_ex1.cs +++ b/snippets/csharp/System/Type/IsAssignableFrom/isassignablefrom_ex1.cs @@ -4,26 +4,27 @@ using System.Reflection.Emit; public class A -{} +{ } -public class Example +public class IsAssignableFromExample1 { - public static void Main() - { - AppDomain domain = AppDomain.CurrentDomain; - AssemblyName assemName = new AssemblyName(); - assemName.Name = "TempAssembly"; + public static void Run() + { + AssemblyName assemName = new() + { + Name = "TempAssembly" + }; - // Define a dynamic assembly in the current application domain. - AssemblyBuilder assemBuilder = domain.DefineDynamicAssembly(assemName, - AssemblyBuilderAccess.Run); + // Define a dynamic assembly. + AssemblyBuilder assemBuilder = AssemblyBuilder.DefineDynamicAssembly( + assemName, AssemblyBuilderAccess.Run); - // Define a dynamic module in this assembly. - ModuleBuilder moduleBuilder = assemBuilder.DefineDynamicModule("TempModule"); + // Define a dynamic module in this assembly. + ModuleBuilder moduleBuilder = assemBuilder.DefineDynamicModule("TempModule"); - TypeBuilder b1 = moduleBuilder.DefineType("B", TypeAttributes.Public, typeof(A)); - Console.WriteLine(typeof(A).IsAssignableFrom(b1)); - } + TypeBuilder b1 = moduleBuilder.DefineType("B", TypeAttributes.Public, typeof(A)); + Console.WriteLine(typeof(A).IsAssignableFrom(b1)); + } } // The example displays the following output: // True diff --git a/snippets/csharp/System/Type/IsAssignableFrom/testisassignablefrom.cs b/snippets/csharp/System/Type/IsAssignableFrom/testisassignablefrom.cs index eedfa2553f0..3c7161f9043 100644 --- a/snippets/csharp/System/Type/IsAssignableFrom/testisassignablefrom.cs +++ b/snippets/csharp/System/Type/IsAssignableFrom/testisassignablefrom.cs @@ -1,64 +1,64 @@ // using System; using System.Collections.Generic; -class Program +class IsAssignableFromTest { - public static void Main() + public static void Run() { - // Demonstrate classes: - Console.WriteLine("Defined Classes:"); - Room room1 = new Room(); - Kitchen kitchen1 = new Kitchen(); - Bedroom bedroom1 = new Bedroom(); - Guestroom guestroom1 = new Guestroom(); - MasterBedroom masterbedroom1 = new MasterBedroom(); - - Type room1Type = room1.GetType(); - Type kitchen1Type = kitchen1.GetType(); - Type bedroom1Type = bedroom1.GetType(); - Type guestroom1Type = guestroom1.GetType(); - Type masterbedroom1Type = masterbedroom1.GetType(); - - Console.WriteLine("room assignable from kitchen: {0}", room1Type.IsAssignableFrom(kitchen1Type)); - Console.WriteLine("bedroom assignable from guestroom: {0}", bedroom1Type.IsAssignableFrom(guestroom1Type)); - Console.WriteLine("kitchen assignable from masterbedroom: {0}", kitchen1Type.IsAssignableFrom(masterbedroom1Type)); - - // Demonstrate arrays: - Console.WriteLine(); - Console.WriteLine("Integer arrays:"); - - int[] array2 = new int[2]; - int[] array10 = new int[10]; - int[,] array22 = new int[2, 2]; - int[,] array24 = new int[2, 4]; - - Type array2Type = array2.GetType(); - Type array10Type = array10.GetType(); - Type array22Type = array22.GetType(); - Type array24Type = array24.GetType(); - - Console.WriteLine("int[2] assignable from int[10]: {0}", array2Type.IsAssignableFrom(array10Type)); - Console.WriteLine("int[2] assignable from int[2,4]: {0}", array2Type.IsAssignableFrom(array24Type)); - Console.WriteLine("int[2,4] assignable from int[2,2]: {0}", array24Type.IsAssignableFrom(array22Type)); - - // Demonstrate generics: - Console.WriteLine(); - Console.WriteLine("Generics:"); - - // Note that "int?[]" is the same as "Nullable[]" - int?[] arrayNull = new int?[10]; - List genIntList = new List(); - List genTList = new List(); - - Type arrayNullType = arrayNull.GetType(); - Type genIntListType = genIntList.GetType(); - Type genTListType = genTList.GetType(); - - Console.WriteLine("int[10] assignable from int?[10]: {0}", array10Type.IsAssignableFrom(arrayNullType)); - Console.WriteLine("List assignable from List: {0}", genIntListType.IsAssignableFrom(genTListType)); - Console.WriteLine("List assignable from List: {0}", genTListType.IsAssignableFrom(genIntListType)); - - Console.ReadLine(); + // Demonstrate classes: + Console.WriteLine("Defined Classes:"); + Room room1 = new(); + Kitchen kitchen1 = new(); + Bedroom bedroom1 = new(); + Guestroom guestroom1 = new(); + MasterBedroom masterbedroom1 = new(); + + Type room1Type = room1.GetType(); + Type kitchen1Type = kitchen1.GetType(); + Type bedroom1Type = bedroom1.GetType(); + Type guestroom1Type = guestroom1.GetType(); + Type masterbedroom1Type = masterbedroom1.GetType(); + + Console.WriteLine($"room assignable from kitchen: {room1Type.IsAssignableFrom(kitchen1Type)}"); + Console.WriteLine($"bedroom assignable from guestroom: {bedroom1Type.IsAssignableFrom(guestroom1Type)}"); + Console.WriteLine($"kitchen assignable from masterbedroom: {kitchen1Type.IsAssignableFrom(masterbedroom1Type)}"); + + // Demonstrate arrays: + Console.WriteLine(); + Console.WriteLine("Integer arrays:"); + + int[] array2 = new int[2]; + int[] array10 = new int[10]; + int[,] array22 = new int[2, 2]; + int[,] array24 = new int[2, 4]; + + Type array2Type = array2.GetType(); + Type array10Type = array10.GetType(); + Type array22Type = array22.GetType(); + Type array24Type = array24.GetType(); + + Console.WriteLine($"int[2] assignable from int[10]: {array2Type.IsAssignableFrom(array10Type)}"); + Console.WriteLine($"int[2] assignable from int[2,4]: {array2Type.IsAssignableFrom(array24Type)}"); + Console.WriteLine($"int[2,4] assignable from int[2,2]: {array24Type.IsAssignableFrom(array22Type)}"); + + // Demonstrate generics: + Console.WriteLine(); + Console.WriteLine("Generics:"); + + // Note that "int?[]" is the same as "Nullable[]" + int?[] arrayNull = new int?[10]; + List genIntList = new(); + List genTList = new(); + + Type arrayNullType = arrayNull.GetType(); + Type genIntListType = genIntList.GetType(); + Type genTListType = genTList.GetType(); + + Console.WriteLine($"int[10] assignable from int?[10]: {array10Type.IsAssignableFrom(arrayNullType)}"); + Console.WriteLine($"List assignable from List: {genIntListType.IsAssignableFrom(genTListType)}"); + Console.WriteLine($"List assignable from List: {genTListType.IsAssignableFrom(genIntListType)}"); + + Console.ReadLine(); } } class Room @@ -97,4 +97,4 @@ class MasterBedroom : Bedroom // int[10] assignable from int?[10]: False // List assignable from List: False // List assignable from List: False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsAutoLayout/type_isautolayout.cs b/snippets/csharp/System/Type/IsAutoLayout/type_isautolayout.cs index 184d4e2dadc..906dbd9bd12 100644 --- a/snippets/csharp/System/Type/IsAutoLayout/type_isautolayout.cs +++ b/snippets/csharp/System/Type/IsAutoLayout/type_isautolayout.cs @@ -13,11 +13,10 @@ public class Example public static void Main() { // Create an instance of the Type class using the GetType method. - Type myType=typeof(Demo); + Type myType = typeof(Demo); // Get and display the IsAutoLayout property of the // Demoinstance. - Console.WriteLine("\nThe AutoLayout property for the Demo class is {0}.", - myType.IsAutoLayout); + Console.WriteLine($"\nThe AutoLayout property for the Demo class is {myType.IsAutoLayout}."); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsClass/type_isclass.cs b/snippets/csharp/System/Type/IsClass/type_isclass.cs index 9898d0a5235..5140bcbb8fc 100644 --- a/snippets/csharp/System/Type/IsClass/type_isclass.cs +++ b/snippets/csharp/System/Type/IsClass/type_isclass.cs @@ -1,8 +1,8 @@ // using System; -using System.Reflection; -public class MyDemoClass + +public class MyDemoClass { } @@ -12,13 +12,13 @@ public static void Main(string[] args) { try { - Type myType = typeof(MyDemoClass); + Type myType = typeof(MyDemoClass); // Get and display the 'IsClass' property of the 'MyDemoClass' instance. - Console.WriteLine("\nIs the specified type a class? {0}.", myType.IsClass); + Console.WriteLine($"\nIs the specified type a class? {myType.IsClass}."); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("\nAn exception occurred: {0}." ,e.Message); + Console.WriteLine($"\nAn exception occurred: {e.Message}."); } } } diff --git a/snippets/csharp/System/Type/IsContextful/Project.csproj b/snippets/csharp/System/Type/IsContextful/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/IsContextful/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/IsContextful/type_iscontextful.cs b/snippets/csharp/System/Type/IsContextful/type_iscontextful.cs index 08ebbbb8854..c88c6521f04 100644 --- a/snippets/csharp/System/Type/IsContextful/type_iscontextful.cs +++ b/snippets/csharp/System/Type/IsContextful/type_iscontextful.cs @@ -1,8 +1,8 @@ // using System; -using System.Runtime.Remoting.Contexts; -public class ContextBoundClass: ContextBoundObject + +public class ContextBoundClass : ContextBoundObject { public string Value = "The Value property."; } @@ -11,23 +11,17 @@ public class Example { public static void Main() { - // Determine whether the types can be hosted in a Context. - Console.WriteLine("The IsContextful property for the {0} type is {1}.", - typeof(Example).Name, typeof(Example).IsContextful); - Console.WriteLine("The IsContextful property for the {0} type is {1}.", - typeof(ContextBoundClass).Name, typeof(ContextBoundClass).IsContextful); + // Determine whether the types can be hosted in a Context. + Console.WriteLine($"The IsContextful property for the {typeof(Example).Name} type is {typeof(Example).IsContextful}."); + Console.WriteLine($"The IsContextful property for the {typeof(ContextBoundClass).Name} type is {typeof(ContextBoundClass).IsContextful}."); - // Determine whether the types are marshalled by reference. - Console.WriteLine("The IsMarshalByRef property of {0} is {1}.", - typeof(Example).Name, typeof(Example).IsMarshalByRef); - Console.WriteLine("The IsMarshalByRef property of {0} is {1}.", - typeof(ContextBoundClass).Name, typeof(ContextBoundClass).IsMarshalByRef); + // Determine whether the types are marshalled by reference. + Console.WriteLine($"The IsMarshalByRef property of {typeof(Example).Name} is {typeof(Example).IsMarshalByRef}."); + Console.WriteLine($"The IsMarshalByRef property of {typeof(ContextBoundClass).Name} is {typeof(ContextBoundClass).IsMarshalByRef}."); - // Determine whether the types are primitive datatypes. - Console.WriteLine("{0} is a primitive data type: {1}.", - typeof(int).Name, typeof(int).IsPrimitive); - Console.WriteLine("{0} is a primitive data type: {1}.", - typeof(string).Name, typeof(string).IsPrimitive); + // Determine whether the types are primitive datatypes. + Console.WriteLine($"{typeof(int).Name} is a primitive data type: {typeof(int).IsPrimitive}."); + Console.WriteLine($"{typeof(string).Name} is a primitive data type: {typeof(string).IsPrimitive}."); } } // The example displays the following output: diff --git a/snippets/csharp/System/Type/IsContextfulImpl/type_iscontextfulimpl.cs b/snippets/csharp/System/Type/IsContextfulImpl/type_iscontextfulimpl.cs index fc0890ba3af..1e1e69c06ee 100644 --- a/snippets/csharp/System/Type/IsContextfulImpl/type_iscontextfulimpl.cs +++ b/snippets/csharp/System/Type/IsContextfulImpl/type_iscontextfulimpl.cs @@ -4,17 +4,14 @@ public class MyTypeDelegatorClass : TypeDelegator { public string myElementType = null; - private Type myType = null ; + private Type myType = null; - public MyTypeDelegatorClass(Type myType) : base(myType) - { - this.myType = myType; - } + public MyTypeDelegatorClass(Type myType) : base(myType) => this.myType = myType; // Override IsContextfulImpl. protected override bool IsContextfulImpl() { // Check whether the type is contextful. - if(myType.IsContextful) + if (myType.IsContextful) { myElementType = " is contextful "; return true; @@ -29,10 +26,10 @@ public static void Main() try { MyTypeDelegatorClass myType; - Console.WriteLine ("Check whether MyContextBoundClass can be hosted in a context."); + Console.WriteLine("Check whether MyContextBoundClass can be hosted in a context."); // Check whether MyContextBoundClass is contextful. - myType = new MyTypeDelegatorClass(typeof(MyContextBoundClass)); - if( myType.IsContextful) + myType = new(typeof(MyContextBoundClass)); + if (myType.IsContextful) { Console.WriteLine(typeof(MyContextBoundClass) + " can be hosted in a context."); } @@ -41,9 +38,9 @@ public static void Main() Console.WriteLine(typeof(MyContextBoundClass) + " cannot be hosted in a context."); } // Check whether the int type is contextful. - myType = new MyTypeDelegatorClass(typeof(MyTypeDemoClass)); - Console.WriteLine ("\nCheck whether MyTypeDemoClass can be hosted in a context."); - if( myType.IsContextful) + myType = new(typeof(MyTypeDemoClass)); + Console.WriteLine("\nCheck whether MyTypeDemoClass can be hosted in a context."); + if (myType.IsContextful) { Console.WriteLine(typeof(MyTypeDemoClass) + " can be hosted in a context."); } @@ -52,9 +49,9 @@ public static void Main() Console.WriteLine(typeof(MyTypeDemoClass) + " cannot be hosted in a context."); } } - catch( Exception e ) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message); + Console.WriteLine($"Exception: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/IsEnum/testisenum.cs b/snippets/csharp/System/Type/IsEnum/testisenum.cs index e084641434e..9881e6d3d21 100644 --- a/snippets/csharp/System/Type/IsEnum/testisenum.cs +++ b/snippets/csharp/System/Type/IsEnum/testisenum.cs @@ -7,13 +7,13 @@ class TestIsEnum { public static void Main() { - Type colorType = typeof(Color); - Type enumType = typeof(Enum); - Console.WriteLine("Is Color an enum? {0}.", colorType.IsEnum); - Console.WriteLine("Is Color a value type? {0}.", colorType.IsValueType); - Console.WriteLine("Is Enum an enum Type? {0}.", enumType.IsEnum); - Console.WriteLine("Is Enum a value type? {0}.", enumType.IsValueType); - } + Type colorType = typeof(Color); + Type enumType = typeof(Enum); + Console.WriteLine($"Is Color an enum? {colorType.IsEnum}."); + Console.WriteLine($"Is Color a value type? {colorType.IsValueType}."); + Console.WriteLine($"Is Enum an enum Type? {enumType.IsEnum}."); + Console.WriteLine($"Is Enum a value type? {enumType.IsValueType}."); + } } // The example displays the following output: // Is Color an enum? True. diff --git a/snippets/csharp/System/Type/IsExplicitLayout/type_isexplicitlayout.cs b/snippets/csharp/System/Type/IsExplicitLayout/type_isexplicitlayout.cs index 7993cb6d7b3..2ba10268f88 100644 --- a/snippets/csharp/System/Type/IsExplicitLayout/type_isexplicitlayout.cs +++ b/snippets/csharp/System/Type/IsExplicitLayout/type_isexplicitlayout.cs @@ -1,21 +1,21 @@ // using System; -using System.Reflection; -using System.ComponentModel; + + using System.Runtime.InteropServices; // Class to test for the ExplicitLayout property. -[StructLayout(LayoutKind.Explicit, Size=16, CharSet=CharSet.Ansi)] +[StructLayout(LayoutKind.Explicit, Size = 16, CharSet = CharSet.Ansi)] public class MySystemTime { - [FieldOffset(0)]public ushort wYear; - [FieldOffset(2)]public ushort wMonth; - [FieldOffset(4)]public ushort wDayOfWeek; - [FieldOffset(6)]public ushort wDay; - [FieldOffset(8)]public ushort wHour; - [FieldOffset(10)]public ushort wMinute; - [FieldOffset(12)]public ushort wSecond; - [FieldOffset(14)]public ushort wMilliseconds; + [FieldOffset(0)] public ushort wYear; + [FieldOffset(2)] public ushort wMonth; + [FieldOffset(4)] public ushort wDayOfWeek; + [FieldOffset(6)] public ushort wDay; + [FieldOffset(8)] public ushort wHour; + [FieldOffset(10)] public ushort wMinute; + [FieldOffset(12)] public ushort wSecond; + [FieldOffset(14)] public ushort wMilliseconds; } public class Program @@ -23,10 +23,9 @@ public class Program public static void Main(string[] args) { // Create an instance of the type using the GetType method. - Type t = typeof(MySystemTime); + Type t = typeof(MySystemTime); // Get and display the IsExplicitLayout property. - Console.WriteLine("\nIsExplicitLayout for MySystemTime is {0}.", - t.IsExplicitLayout); + Console.WriteLine($"\nIsExplicitLayout for MySystemTime is {t.IsExplicitLayout}."); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsGenericParameter/source.cs b/snippets/csharp/System/Type/IsGenericParameter/source.cs index aff8b688c19..b129230bb08 100644 --- a/snippets/csharp/System/Type/IsGenericParameter/source.cs +++ b/snippets/csharp/System/Type/IsGenericParameter/source.cs @@ -1,19 +1,17 @@ // using System; -using System.Reflection; + using System.Collections.Generic; public class Test { private static void DisplayGenericTypeInfo(Type t) { - Console.WriteLine("\r\n{0}", t); + Console.WriteLine($"\r\n{t}"); - Console.WriteLine("\tIs this a generic type definition? {0}", - t.IsGenericTypeDefinition); + Console.WriteLine($"\tIs this a generic type definition? {t.IsGenericTypeDefinition}"); - Console.WriteLine("\tIs it a generic type? {0}", - t.IsGenericType); + Console.WriteLine($"\tIs it a generic type? {t.IsGenericType}"); // if (t.IsGenericType) @@ -22,8 +20,7 @@ private static void DisplayGenericTypeInfo(Type t) // Type[] typeArguments = t.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", - typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { @@ -32,13 +29,11 @@ private static void DisplayGenericTypeInfo(Type t) // if (tParam.IsGenericParameter) { - Console.WriteLine("\t\t{0}\t(unassigned - parameter position {1})", - tParam, - tParam.GenericParameterPosition); + Console.WriteLine($"\t\t{tParam}\t(unassigned - parameter position {tParam.GenericParameterPosition})"); } else { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } @@ -51,8 +46,8 @@ public static void Main() Console.WriteLine(" generic type definition, and an ordinary type."); // Create a Dictionary of Test objects, using strings for the - // keys. - Dictionary d = new Dictionary(); + // keys. + Dictionary d = new(); // Display information for the constructed type and its generic // type definition. diff --git a/snippets/csharp/System/Type/IsGenericType/Program.cs b/snippets/csharp/System/Type/IsGenericType/Program.cs new file mode 100644 index 00000000000..dd1327fdd6d --- /dev/null +++ b/snippets/csharp/System/Type/IsGenericType/Program.cs @@ -0,0 +1,2 @@ +IsGenericTypeRemarksExample.Run(); +IsGenericTypeSourceExample.Run(); diff --git a/snippets/csharp/System/Type/IsGenericType/Project.csproj b/snippets/csharp/System/Type/IsGenericType/Project.csproj new file mode 100644 index 00000000000..36a29620edb --- /dev/null +++ b/snippets/csharp/System/Type/IsGenericType/Project.csproj @@ -0,0 +1,6 @@ + + + Exe + net10.0 + + diff --git a/snippets/csharp/System/Type/IsGenericType/remarks.cs b/snippets/csharp/System/Type/IsGenericType/remarks.cs index bfa44897d58..ec533145f53 100644 --- a/snippets/csharp/System/Type/IsGenericType/remarks.cs +++ b/snippets/csharp/System/Type/IsGenericType/remarks.cs @@ -1,22 +1,22 @@ -using System; -using System.Reflection; + + // -public class Base {} +public class RemarksBase { } -public class Derived : Base +public class RemarksDerived : RemarksBase { - public G> F; + public RemarksG> F; - public class Nested {} + public class Nested { } } -public class G {} +public class RemarksG { } // -class Example +class IsGenericTypeRemarksExample { - public static void Main() + public static void Run() { } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Type/IsGenericType/source.cs b/snippets/csharp/System/Type/IsGenericType/source.cs index da802f2948b..a2b5dc7a56f 100644 --- a/snippets/csharp/System/Type/IsGenericType/source.cs +++ b/snippets/csharp/System/Type/IsGenericType/source.cs @@ -1,21 +1,21 @@ // using System; -using System.Reflection; -public class Base {} + +public class Base { } public class Derived : Base { - public G> F; + public G> F; - public class Nested {} + public class Nested { } } -public class G {} +public class G { } -class Example +class IsGenericTypeSourceExample { - public static void Main() + public static void Run() { // Get the generic type definition for Derived, and the base // type for Derived. @@ -48,17 +48,13 @@ public static void Main() public static void DisplayGenericType(Type t, string caption) { - Console.WriteLine("\n{0}", caption); - Console.WriteLine(" Type: {0}", t); - - Console.WriteLine("\t IsGenericType: {0}", - t.IsGenericType); - Console.WriteLine("\t IsGenericTypeDefinition: {0}", - t.IsGenericTypeDefinition); - Console.WriteLine("\tContainsGenericParameters: {0}", - t.ContainsGenericParameters); - Console.WriteLine("\t IsGenericParameter: {0}", - t.IsGenericParameter); + Console.WriteLine($"\n{caption}"); + Console.WriteLine($" Type: {t}"); + + Console.WriteLine($"\t IsGenericType: {t.IsGenericType}"); + Console.WriteLine($"\t IsGenericTypeDefinition: {t.IsGenericTypeDefinition}"); + Console.WriteLine($"\tContainsGenericParameters: {t.ContainsGenericParameters}"); + Console.WriteLine($"\t IsGenericParameter: {t.IsGenericParameter}"); } } diff --git a/snippets/csharp/System/Type/IsInstanceOfType/testisinstanceoftype.cs b/snippets/csharp/System/Type/IsInstanceOfType/testisinstanceoftype.cs index 580f0dd5afa..04423ff0798 100644 --- a/snippets/csharp/System/Type/IsInstanceOfType/testisinstanceoftype.cs +++ b/snippets/csharp/System/Type/IsInstanceOfType/testisinstanceoftype.cs @@ -1,11 +1,11 @@ // using System; -public interface IExample {} +public interface IExample { } -public class BaseClass : IExample {} +public class BaseClass : IExample { } -public class DerivedClass : BaseClass {} +public class DerivedClass : BaseClass { } public class Example { @@ -18,16 +18,11 @@ public static void Main() var derived1Type = derived1.GetType(); int[] arr = new int[11]; - Console.WriteLine("Is int[] an instance of the Array class? {0}.", - typeof(Array).IsInstanceOfType(arr)); - Console.WriteLine("Is base1 an instance of BaseClass? {0}.", - base1Type.IsInstanceOfType(base1)); - Console.WriteLine("Is derived1 an instance of BaseClass? {0}.", - base1Type.IsInstanceOfType(derived1)); - Console.WriteLine("Is base1 an instance of IExample? {0}.", - interfaceType.IsInstanceOfType(base1)); - Console.WriteLine("Is derived1 an instance of IExample? {0}.", - interfaceType.IsInstanceOfType(derived1)); + Console.WriteLine($"Is int[] an instance of the Array class? {typeof(Array).IsInstanceOfType(arr)}."); + Console.WriteLine($"Is base1 an instance of BaseClass? {base1Type.IsInstanceOfType(base1)}."); + Console.WriteLine($"Is derived1 an instance of BaseClass? {base1Type.IsInstanceOfType(derived1)}."); + Console.WriteLine($"Is base1 an instance of IExample? {interfaceType.IsInstanceOfType(base1)}."); + Console.WriteLine($"Is derived1 an instance of IExample? {interfaceType.IsInstanceOfType(derived1)}."); } } // The example displays the following output: @@ -36,4 +31,4 @@ public static void Main() // Is derived1 an instance of BaseClass? True. // Is base1 an instance of IExample? True. // Is derived1 an instance of IExample? True. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsInterface/type_isinterface.cs b/snippets/csharp/System/Type/IsInterface/type_isinterface.cs index 555886437f5..da7ae8eca29 100644 --- a/snippets/csharp/System/Type/IsInterface/type_isinterface.cs +++ b/snippets/csharp/System/Type/IsInterface/type_isinterface.cs @@ -6,22 +6,22 @@ interface myIFace } class MyIsInterface { - public static void Main(string []args) + public static void Main(string[] args) { try { // Get the IsInterface attribute for myIFace. bool myBool1 = typeof(myIFace).IsInterface; //Display the IsInterface attribute for myIFace. - Console.WriteLine("Is the specified type an interface? {0}.", myBool1); + Console.WriteLine($"Is the specified type an interface? {myBool1}."); // Get the attribute IsInterface for MyIsInterface. bool myBool2 = typeof(MyIsInterface).IsInterface; //Display the IsInterface attribute for MyIsInterface. - Console.WriteLine("Is the specified type an interface? {0}.", myBool2); + Console.WriteLine($"Is the specified type an interface? {myBool2}."); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("\nAn exception occurred: {0}.", e.Message); + Console.WriteLine($"\nAn exception occurred: {e.Message}."); } } } @@ -30,4 +30,4 @@ public static void Main(string []args) Is the specified type an interface? True. Is the specified type an interface? False. */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsLayoutSequential/type_islayoutsequential.cs b/snippets/csharp/System/Type/IsLayoutSequential/type_islayoutsequential.cs index 1b37af41198..efb0c46cf9f 100644 --- a/snippets/csharp/System/Type/IsLayoutSequential/type_islayoutsequential.cs +++ b/snippets/csharp/System/Type/IsLayoutSequential/type_islayoutsequential.cs @@ -1,7 +1,7 @@ // using System; -using System.Reflection; -using System.ComponentModel; + + using System.Runtime.InteropServices; class MyTypeSequential1 { @@ -9,24 +9,24 @@ class MyTypeSequential1 [StructLayoutAttribute(LayoutKind.Sequential)] class MyTypeSequential2 { - public static void Main(string []args) + public static void Main(string[] args) { try { // Create an instance of myTypeSeq1. - MyTypeSequential1 myObj1 = new MyTypeSequential1(); + MyTypeSequential1 myObj1 = new(); Type myTypeObj1 = myObj1.GetType(); // Check for and display the SequentialLayout attribute. - Console.WriteLine("\nThe object myObj1 has IsLayoutSequential: {0}.", myObj1.GetType().IsLayoutSequential); + Console.WriteLine($"\nThe object myObj1 has IsLayoutSequential: {myObj1.GetType().IsLayoutSequential}."); // Create an instance of 'myTypeSeq2' class. - MyTypeSequential2 myObj2 = new MyTypeSequential2(); + MyTypeSequential2 myObj2 = new(); Type myTypeObj2 = myObj2.GetType(); // Check for and display the SequentialLayout attribute. - Console.WriteLine("\nThe object myObj2 has IsLayoutSequential: {0}.", myObj2.GetType().IsLayoutSequential); + Console.WriteLine($"\nThe object myObj2 has IsLayoutSequential: {myObj2.GetType().IsLayoutSequential}."); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("\nAn exception occurred: {0}", e.Message); + Console.WriteLine($"\nAn exception occurred: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/IsMarshalByRefImpl/type_ismarshalbyrefimpl.cs b/snippets/csharp/System/Type/IsMarshalByRefImpl/type_ismarshalbyrefimpl.cs index 02eb5237740..1a46e14a2a4 100644 --- a/snippets/csharp/System/Type/IsMarshalByRefImpl/type_ismarshalbyrefimpl.cs +++ b/snippets/csharp/System/Type/IsMarshalByRefImpl/type_ismarshalbyrefimpl.cs @@ -4,16 +4,13 @@ public class MyTypeDelegatorClass : TypeDelegator { public string myElementType = null; - private Type myType = null ; - public MyTypeDelegatorClass(Type myType) : base(myType) - { - this.myType = myType; - } + private Type myType = null; + public MyTypeDelegatorClass(Type myType) : base(myType) => this.myType = myType; // Override IsMarshalByRefImpl. protected override bool IsMarshalByRefImpl() { // Determine whether the type is marshalled by reference. - if(myType.IsMarshalByRef) + if (myType.IsMarshalByRef) { myElementType = " marshalled by reference"; return true; @@ -28,10 +25,10 @@ public static void Main() try { MyTypeDelegatorClass myType; - Console.WriteLine ("Determine whether MyContextBoundClass is marshalled by reference."); + Console.WriteLine("Determine whether MyContextBoundClass is marshalled by reference."); // Determine whether MyContextBoundClass type is marshalled by reference. - myType = new MyTypeDelegatorClass(typeof(MyContextBoundClass)); - if( myType.IsMarshalByRef ) + myType = new(typeof(MyContextBoundClass)); + if (myType.IsMarshalByRef) { Console.WriteLine(typeof(MyContextBoundClass) + " is marshalled by reference."); } @@ -41,9 +38,9 @@ public static void Main() } // Determine whether int type is marshalled by reference. - myType = new MyTypeDelegatorClass(typeof(int)); - Console.WriteLine ("\nDetermine whether int is marshalled by reference."); - if( myType.IsMarshalByRef) + myType = new(typeof(int)); + Console.WriteLine("\nDetermine whether int is marshalled by reference."); + if (myType.IsMarshalByRef) { Console.WriteLine(typeof(int) + " is marshalled by reference."); } @@ -52,9 +49,9 @@ public static void Main() Console.WriteLine(typeof(int) + " is not marshalled by reference."); } } - catch( Exception e ) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message); + Console.WriteLine($"Exception: {e.Message}"); } } } diff --git a/snippets/csharp/System/Type/IsNested/isnestedfamilyandassembly1.cs b/snippets/csharp/System/Type/IsNested/isnestedfamilyandassembly1.cs index 46513f3d2d6..ef1cedea827 100644 --- a/snippets/csharp/System/Type/IsNested/isnestedfamilyandassembly1.cs +++ b/snippets/csharp/System/Type/IsNested/isnestedfamilyandassembly1.cs @@ -5,41 +5,42 @@ public class OuterClass { private class PrivateClass - {} + { } protected class ProtectedClass - {} + { } internal class InternalClass - {} + { } protected internal class ProtectedInternalClass - {} + { } public class PublicClass - {} + { } public static void Main() { // Create an array of Type objects for all the classes. - Type[] types = { typeof(OuterClass), - typeof(OuterClass.PublicClass), - typeof(OuterClass.PrivateClass), - typeof(OuterClass.ProtectedClass), - typeof(OuterClass.InternalClass), - typeof(OuterClass.ProtectedInternalClass) }; + Type[] types = [typeof(OuterClass), + typeof(OuterClass.PublicClass), + typeof(OuterClass.PrivateClass), + typeof(OuterClass.ProtectedClass), + typeof(OuterClass.InternalClass), + typeof(OuterClass.ProtectedInternalClass)]; // Display the property values of each nested class. - foreach (var type in types) { - Console.WriteLine("\n{0} property values:", type.Name); - Console.WriteLine(" Public Class: {0}", type.IsPublic); - Console.WriteLine(" Not a Public Class: {0}", type.IsNotPublic); - Console.WriteLine(" Nested Class: {0}", type.IsNested); - Console.WriteLine(" Nested Private Class: {0}", type.IsNestedPrivate); - Console.WriteLine(" Nested Internal Class: {0}", type.IsNestedAssembly); - Console.WriteLine(" Nested Protected Class: {0}", type.IsNestedFamily); - Console.WriteLine(" Nested Family Or Assembly Class: {0}", type.IsNestedFamORAssem); - Console.WriteLine(" Nested Family And Assembly Class: {0}", type.IsNestedFamANDAssem); - Console.WriteLine(" Nested Public Class: {0}", type.IsNestedPublic); + foreach (var type in types) + { + Console.WriteLine($"\n{type.Name} property values:"); + Console.WriteLine($" Public Class: {type.IsPublic}"); + Console.WriteLine($" Not a Public Class: {type.IsNotPublic}"); + Console.WriteLine($" Nested Class: {type.IsNested}"); + Console.WriteLine($" Nested Private Class: {type.IsNestedPrivate}"); + Console.WriteLine($" Nested Internal Class: {type.IsNestedAssembly}"); + Console.WriteLine($" Nested Protected Class: {type.IsNestedFamily}"); + Console.WriteLine($" Nested Family Or Assembly Class: {type.IsNestedFamORAssem}"); + Console.WriteLine($" Nested Family And Assembly Class: {type.IsNestedFamANDAssem}"); + Console.WriteLine($" Nested Public Class: {type.IsNestedPublic}"); } } } @@ -109,4 +110,4 @@ public static void Main() // Nested Family Or Assembly Class: True // Nested Family And Assembly Class: False // Nested Public Class: False -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsNotPublic/source.cs b/snippets/csharp/System/Type/IsNotPublic/source.cs index 2076d9f9ff1..7f12663f242 100644 --- a/snippets/csharp/System/Type/IsNotPublic/source.cs +++ b/snippets/csharp/System/Type/IsNotPublic/source.cs @@ -1,6 +1,6 @@ // using System; -using System.IO; + using System.Reflection; class Example @@ -11,10 +11,8 @@ public static void Main() Type t = Type.GetType("System.IO.File"); MemberInfo[] members = t.GetMembers(); // Get and display the DeclaringType method. - Console.WriteLine("\nThere are {0} members in {1}.", - members.Length, t.FullName); - Console.WriteLine("Is {0} non-public? {1}", - t.FullName, t.IsNotPublic); + Console.WriteLine($"\nThere are {members.Length} members in {t.FullName}."); + Console.WriteLine($"Is {t.FullName} non-public? {t.IsNotPublic}"); } } // The example displays output like the following: diff --git a/snippets/csharp/System/Type/IsPrimitiveImpl/type_isprimitiveimpl.cs b/snippets/csharp/System/Type/IsPrimitiveImpl/type_isprimitiveimpl.cs index 9dd4c38e560..9d4072cffe3 100644 --- a/snippets/csharp/System/Type/IsPrimitiveImpl/type_isprimitiveimpl.cs +++ b/snippets/csharp/System/Type/IsPrimitiveImpl/type_isprimitiveimpl.cs @@ -4,16 +4,13 @@ public class MyTypeDelegatorClass : TypeDelegator { public string myElementType = null; - private Type myType = null ; - public MyTypeDelegatorClass(Type myType) : base(myType) - { - this.myType = myType; - } + private Type myType = null; + public MyTypeDelegatorClass(Type myType) : base(myType) => this.myType = myType; // Override the IsPrimitiveImpl. protected override bool IsPrimitiveImpl() { // Determine whether the type is a primitive type. - if(myType.IsPrimitive) + if (myType.IsPrimitive) { myElementType = "primitive"; return true; @@ -27,11 +24,11 @@ public static void Main() { try { - Console.WriteLine ("Determine whether int is a primitive type."); + Console.WriteLine("Determine whether int is a primitive type."); MyTypeDelegatorClass myType; - myType = new MyTypeDelegatorClass(typeof(int)); + myType = new(typeof(int)); // Determine whether int is a primitive type. - if( myType.IsPrimitive) + if (myType.IsPrimitive) { Console.WriteLine(typeof(int) + " is a primitive type."); } @@ -39,10 +36,10 @@ public static void Main() { Console.WriteLine(typeof(int) + " is not a primitive type."); } - Console.WriteLine ("\nDetermine whether string is a primitive type."); - myType = new MyTypeDelegatorClass(typeof(string)); + Console.WriteLine("\nDetermine whether string is a primitive type."); + myType = new(typeof(string)); // Determine if string is a primitive type. - if( myType.IsPrimitive) + if (myType.IsPrimitive) { Console.WriteLine(typeof(string) + " is a primitive type."); } @@ -51,10 +48,10 @@ public static void Main() Console.WriteLine(typeof(string) + " is not a primitive type."); } } - catch( Exception e ) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message); + Console.WriteLine($"Exception: {e.Message}"); } } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsPublic/type_ispublic.cs b/snippets/csharp/System/Type/IsPublic/type_ispublic.cs index 40c87ffc257..ad92c0f08e9 100644 --- a/snippets/csharp/System/Type/IsPublic/type_ispublic.cs +++ b/snippets/csharp/System/Type/IsPublic/type_ispublic.cs @@ -7,15 +7,15 @@ public class TestClass public class Example { - public static void Main() - { - TestClass testClassInstance = new TestClass(); - // Get the type of myTestClassInstance. - Type testType = testClassInstance.GetType(); - // Get the IsPublic property of testClassInstance. - bool isPublic = testType.IsPublic; - Console.WriteLine("Is {0} public? {1}", testType.FullName, isPublic); - } + public static void Main() + { + TestClass testClassInstance = new(); + // Get the type of myTestClassInstance. + Type testType = testClassInstance.GetType(); + // Get the IsPublic property of testClassInstance. + bool isPublic = testType.IsPublic; + Console.WriteLine($"Is {testType.FullName} public? {isPublic}"); + } } // The example displays the following output: // Is TestClass public? True diff --git a/snippets/csharp/System/Type/IsSealed/type_issealed.cs b/snippets/csharp/System/Type/IsSealed/type_issealed.cs index 90ddf688fc3..587338a1280 100644 --- a/snippets/csharp/System/Type/IsSealed/type_issealed.cs +++ b/snippets/csharp/System/Type/IsSealed/type_issealed.cs @@ -1,23 +1,23 @@ // using System; - public class Example - { - // Declare InnerClass as sealed. - sealed public class InnerClass - { - } +public class Example +{ + // Declare InnerClass as sealed. + sealed public class InnerClass + { + } - public static void Main() - { - InnerClass inner = new InnerClass(); - // Get the type of InnerClass. - Type innerType = inner.GetType(); - // Get the IsSealed property of innerClass. - bool isSealed = innerType.IsSealed; - Console.WriteLine("{0} is sealed: {1}.", innerType.FullName, isSealed); - } + public static void Main() + { + InnerClass inner = new(); + // Get the type of InnerClass. + Type innerType = inner.GetType(); + // Get the IsSealed property of innerClass. + bool isSealed = innerType.IsSealed; + Console.WriteLine($"{innerType.FullName} is sealed: {isSealed}."); + } } // The example displays the following output: // Example+InnerClass is sealed: True. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsSubclassOf/issubclassof_interface1.cs b/snippets/csharp/System/Type/IsSubclassOf/issubclassof_interface1.cs index 37ff4c1c38c..eecfa854b24 100644 --- a/snippets/csharp/System/Type/IsSubclassOf/issubclassof_interface1.cs +++ b/snippets/csharp/System/Type/IsSubclassOf/issubclassof_interface1.cs @@ -3,28 +3,23 @@ public interface IInterface { - void Display(); + void Display(); } public class Implementation : IInterface { - public void Display() - { - Console.WriteLine("The implementation..."); - } + public void Display() => Console.WriteLine("The implementation..."); } public class Example { - public static void Main() - { - Console.WriteLine("Implementation is a subclass of IInterface: {0}", - typeof(Implementation).IsSubclassOf(typeof(IInterface))); - Console.WriteLine("IInterface is assignable from Implementation: {0}", - typeof(IInterface).IsAssignableFrom(typeof(Implementation))); - } + public static void Main() + { + Console.WriteLine($"Implementation is a subclass of IInterface: {typeof(Implementation).IsSubclassOf(typeof(IInterface))}"); + Console.WriteLine($"IInterface is assignable from Implementation: {typeof(IInterface).IsAssignableFrom(typeof(Implementation))}"); + } } // The example displays the following output: // Implementation is a subclass of IInterface: False // IInterface is assignable from Implementation: True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsSubclassOf/testissubclassof.cs b/snippets/csharp/System/Type/IsSubclassOf/testissubclassof.cs index 24d67175f8c..45b923c27ac 100644 --- a/snippets/csharp/System/Type/IsSubclassOf/testissubclassof.cs +++ b/snippets/csharp/System/Type/IsSubclassOf/testissubclassof.cs @@ -6,12 +6,8 @@ public class DerivedC1 : Class1 { } class IsSubclassTest { - public static void Main() - { - Console.WriteLine("DerivedC1 subclass of Class1: {0}", - typeof(DerivedC1).IsSubclassOf(typeof(Class1))); - } + public static void Main() => Console.WriteLine($"DerivedC1 subclass of Class1: {typeof(DerivedC1).IsSubclassOf(typeof(Class1))}"); } // The example displays the following output: // DerivedC1 subclass of Class1: True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/IsValueType/type_isvaluetype.cs b/snippets/csharp/System/Type/IsValueType/type_isvaluetype.cs index 79ba552d617..07c9ff64260 100644 --- a/snippets/csharp/System/Type/IsValueType/type_isvaluetype.cs +++ b/snippets/csharp/System/Type/IsValueType/type_isvaluetype.cs @@ -7,7 +7,7 @@ enum NumEnum { One, Two } public class Example { - public static void Main(string []args) + public static void Main(string[] args) { bool flag = false; NumEnum testEnum = NumEnum.One; @@ -15,7 +15,7 @@ public static void Main(string []args) Type t = testEnum.GetType(); // Get the IsValueType property of the testEnum variable. flag = t.IsValueType; - Console.WriteLine("{0} is a value type: {1}", t.FullName, flag); + Console.WriteLine($"{t.FullName} is a value type: {flag}"); } } // The example displays the following output: diff --git a/snippets/csharp/System/Type/IsVisible/source.cs b/snippets/csharp/System/Type/IsVisible/source.cs index 66278859ddc..39fc211220f 100644 --- a/snippets/csharp/System/Type/IsVisible/source.cs +++ b/snippets/csharp/System/Type/IsVisible/source.cs @@ -1,30 +1,22 @@ // using System; -internal class InternalOnly +internal class InternalOnly { - public class Nested {} + public class Nested { } } public class Example { - public class Nested {} + public class Nested { } public static void Main() { Type t = typeof(InternalOnly.Nested); - Console.WriteLine( - "Is the {0} class visible outside the assembly? {1}", - t.FullName, - t.IsVisible - ); + Console.WriteLine($"Is the {t.FullName} class visible outside the assembly? {t.IsVisible}"); t = typeof(Example.Nested); - Console.WriteLine( - "Is the {0} class visible outside the assembly? {1}", - t.FullName, - t.IsVisible - ); + Console.WriteLine($"Is the {t.FullName} class visible outside the assembly? {t.IsVisible}"); } } diff --git a/snippets/csharp/System/Type/MakeByRefType/source.cs b/snippets/csharp/System/Type/MakeByRefType/source.cs index 7a9ee920685..d58029186c5 100644 --- a/snippets/csharp/System/Type/MakeByRefType/source.cs +++ b/snippets/csharp/System/Type/MakeByRefType/source.cs @@ -9,12 +9,12 @@ public static void Main() // Create a Type object that represents a one-dimensional // array of Example objects. Type t = typeof(Example).MakeArrayType(); - Console.WriteLine("\r\nArray of Example: {0}", t); + Console.WriteLine($"\r\nArray of Example: {t}"); // Create a Type object that represents a two-dimensional // array of Example objects. t = typeof(Example).MakeArrayType(2); - Console.WriteLine("\r\nTwo-dimensional array of Example: {0}", t); + Console.WriteLine($"\r\nTwo-dimensional array of Example: {t}"); // Demonstrate an exception when an invalid array rank is // specified. @@ -22,15 +22,15 @@ public static void Main() { t = typeof(Example).MakeArrayType(-1); } - catch(Exception ex) + catch (Exception ex) { - Console.WriteLine("\r\n{0}", ex); + Console.WriteLine($"\r\n{ex}"); } // Create a Type object that represents a ByRef parameter // of type Example. t = typeof(Example).MakeByRefType(); - Console.WriteLine("\r\nByRef Example: {0}", t); + Console.WriteLine($"\r\nByRef Example: {t}"); // Get a Type object representing the Example class, a // MethodInfo representing the "Test" method, a ParameterInfo @@ -42,12 +42,12 @@ public static void Main() MethodInfo mi = t2.GetMethod("Test"); ParameterInfo pi = mi.GetParameters()[0]; Type pt = pi.ParameterType; - Console.WriteLine("Are the ByRef types equal? {0}", (t == pt)); + Console.WriteLine($"Are the ByRef types equal? {(t == pt)}"); // Create a Type object that represents a pointer to an // Example object. t = typeof(Example).MakePointerType(); - Console.WriteLine("\r\nPointer to Example: {0}", t); + Console.WriteLine($"\r\nPointer to Example: {t}"); } // A sample method with a ByRef parameter. diff --git a/snippets/csharp/System/Type/MakeGenericType/remarks.cs b/snippets/csharp/System/Type/MakeGenericType/remarks.cs index a9f8c04adb2..a6e7734a444 100644 --- a/snippets/csharp/System/Type/MakeGenericType/remarks.cs +++ b/snippets/csharp/System/Type/MakeGenericType/remarks.cs @@ -1,4 +1,4 @@ -using System; + // public class Base { } @@ -10,13 +10,13 @@ public class Outermost { public class Inner { - public class Innermost1 {} - public class Innermost2 {} + public class Innermost1 { } + public class Innermost2 { } } } // class ProgStubClass { - public static void Main() {} -} \ No newline at end of file + public static void Main() { } +} diff --git a/snippets/csharp/System/Type/MakeGenericType/source.cs b/snippets/csharp/System/Type/MakeGenericType/source.cs index 38ecc20de1c..357c5c9b176 100644 --- a/snippets/csharp/System/Type/MakeGenericType/source.cs +++ b/snippets/csharp/System/Type/MakeGenericType/source.cs @@ -1,6 +1,6 @@ // using System; -using System.Reflection; + using System.Collections.Generic; public class Test @@ -9,17 +9,17 @@ public static void Main() { Console.WriteLine("\r\n--- Create a constructed type from the generic Dictionary type."); - // Create a type object representing the generic Dictionary - // type, by omitting the type arguments (but keeping the + // Create a type object representing the generic Dictionary + // type, by omitting the type arguments (but keeping the // comma that separates them, so the compiler can infer the - // number of type parameters). + // number of type parameters). Type generic = typeof(Dictionary<,>); DisplayTypeInfo(generic); // Create an array of types to substitute for the type // parameters of Dictionary. The key is of type string, and // the type to be contained in the Dictionary is Test. - Type[] typeArgs = { typeof(string), typeof(Test) }; + Type[] typeArgs = [typeof(string), typeof(Test)]; // Create a Type object representing the constructed generic // type. @@ -30,27 +30,24 @@ public static void Main() // obtained using typeof() and GetGenericTypeDefinition(). Console.WriteLine("\r\n--- Compare types obtained by different methods:"); - Type t = typeof(Dictionary); - Console.WriteLine("\tAre the constructed types equal? {0}", t == constructed); - Console.WriteLine("\tAre the generic types equal? {0}", - t.GetGenericTypeDefinition() == generic); + Type t = typeof(Dictionary); + Console.WriteLine($"\tAre the constructed types equal? {t == constructed}"); + Console.WriteLine($"\tAre the generic types equal? {t.GetGenericTypeDefinition() == generic}"); } private static void DisplayTypeInfo(Type t) { - Console.WriteLine("\r\n{0}", t); + Console.WriteLine($"\r\n{t}"); - Console.WriteLine("\tIs this a generic type definition? {0}", - t.IsGenericTypeDefinition); + Console.WriteLine($"\tIs this a generic type definition? {t.IsGenericTypeDefinition}"); - Console.WriteLine("\tIs it a generic type? {0}", - t.IsGenericType); + Console.WriteLine($"\tIs it a generic type? {t.IsGenericType}"); Type[] typeArguments = t.GetGenericArguments(); - Console.WriteLine("\tList type arguments ({0}):", typeArguments.Length); + Console.WriteLine($"\tList type arguments ({typeArguments.Length}):"); foreach (Type tParam in typeArguments) { - Console.WriteLine("\t\t{0}", tParam); + Console.WriteLine($"\t\t{tParam}"); } } } diff --git a/snippets/csharp/System/Type/Missing/Project.csproj b/snippets/csharp/System/Type/Missing/Project.csproj new file mode 100644 index 00000000000..fca009c3149 --- /dev/null +++ b/snippets/csharp/System/Type/Missing/Project.csproj @@ -0,0 +1,9 @@ + + + Exe + net10.0 + + + + + diff --git a/snippets/csharp/System/Type/Missing/source.cs b/snippets/csharp/System/Type/Missing/source.cs index 76b60861815..4f718aac1fd 100644 --- a/snippets/csharp/System/Type/Missing/source.cs +++ b/snippets/csharp/System/Type/Missing/source.cs @@ -27,9 +27,9 @@ public static void Main() BindingFlags bf = BindingFlags.Public | BindingFlags.Instance | BindingFlags.InvokeMethod | BindingFlags.OptionalParamBinding; - t.InvokeMember("MyMethod", bf, null, o, new object[] {10, 55.3, 12}); - t.InvokeMember("MyMethod", bf, null, o, new object[] {10, 1.3, Type.Missing}); - t.InvokeMember("MyMethod", bf, null, o, new object[] {10, Type.Missing, Type.Missing}); + t.InvokeMember("MyMethod", bf, null, o, [10, 55.3, 12]); + t.InvokeMember("MyMethod", bf, null, o, [10, 1.3, Type.Missing]); + t.InvokeMember("MyMethod", bf, null, o, [10, Type.Missing, Type.Missing]); } private static object GenerateObjectFromSource(string objectName, @@ -37,10 +37,11 @@ private static object GenerateObjectFromSource(string objectName, { object genObject = null; CodeDomProvider codeProvider = CodeDomProvider.CreateProvider(providerName); - CompilerParameters cp = new CompilerParameters(); - - cp.GenerateExecutable = false; - cp.GenerateInMemory = true; + CompilerParameters cp = new() + { + GenerateExecutable = false, + GenerateInMemory = true + }; CompilerResults results = codeProvider.CompileAssemblyFromSource(cp, sourceLines); @@ -52,4 +53,4 @@ private static object GenerateObjectFromSource(string objectName, return genObject; } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Type/Module/type_tostring.cs b/snippets/csharp/System/Type/Module/type_tostring.cs index fe2b9678d35..842d6a8883c 100644 --- a/snippets/csharp/System/Type/Module/type_tostring.cs +++ b/snippets/csharp/System/Type/Module/type_tostring.cs @@ -1,4 +1,4 @@ -// +// using System; namespace MyNamespace @@ -12,14 +12,14 @@ public class Example { public static void Main() { - Type myType = typeof(MyNamespace.MyClass); - Console.WriteLine("Displaying information about {0}:", myType); - // Get the namespace of the myClass class. - Console.WriteLine(" Namespace: {0}.", myType.Namespace); - // Get the name of the module. - Console.WriteLine(" Module: {0}.", myType.Module); - // Get the fully qualified type name. - Console.WriteLine(" Fully qualified name: {0}.", myType.ToString()); + Type myType = typeof(MyNamespace.MyClass); + Console.WriteLine($"Displaying information about {myType}:"); + // Get the namespace of the myClass class. + Console.WriteLine($" Namespace: {myType.Namespace}."); + // Get the name of the module. + Console.WriteLine($" Module: {myType.Module}."); + // Get the fully qualified type name. + Console.WriteLine($" Fully qualified name: {myType}."); } } // The example displays the following output: @@ -27,4 +27,4 @@ public static void Main() // Namespace: MyNamespace. // Module: type_tostring.exe. // Fully qualified name: MyNamespace.MyClass. -// +// diff --git a/snippets/csharp/System/Type/Overview/Equals1.cs b/snippets/csharp/System/Type/Overview/Equals1.cs index e3a44d20d3f..ea5f7fc2644 100644 --- a/snippets/csharp/System/Type/Overview/Equals1.cs +++ b/snippets/csharp/System/Type/Overview/Equals1.cs @@ -1,4 +1,4 @@ -using System; +using System; public class Example1 { @@ -14,9 +14,9 @@ public static void Main() Type t = number1.GetType(); // Compare types of all objects with number1. - Console.WriteLine($"Type of number1 and number2 are equal: {Object.ReferenceEquals(t, number2.GetType())}"); - Console.WriteLine($"Type of number1 and number3 are equal: {Object.ReferenceEquals(t, number3.GetType())}"); - Console.WriteLine($"Type of number1 and number4 are equal: {Object.ReferenceEquals(t, number4.GetType())}"); + Console.WriteLine($"Type of number1 and number2 are equal: {object.ReferenceEquals(t, number2.GetType())}"); + Console.WriteLine($"Type of number1 and number3 are equal: {object.ReferenceEquals(t, number3.GetType())}"); + Console.WriteLine($"Type of number1 and number4 are equal: {object.ReferenceEquals(t, number4.GetType())}"); // The example displays the following output: // Type of number1 and number2 are equal: False diff --git a/snippets/csharp/System/Type/Overview/GetType1.cs b/snippets/csharp/System/Type/Overview/GetType1.cs index ecf2365b6d1..9bb0daa8f7e 100644 --- a/snippets/csharp/System/Type/Overview/GetType1.cs +++ b/snippets/csharp/System/Type/Overview/GetType1.cs @@ -1,12 +1,12 @@ -using System; +using System; public class Example2 { public static void Main() { // - object[] values = { "word", true, 120, 136.34, 'a' }; - foreach (var value in values) + object[] values = ["word", true, 120, 136.34, 'a']; + foreach (object value in values) Console.WriteLine($"{value} - type {value.GetType().Name}"); // The example displays the following output: diff --git a/snippets/csharp/System/Type/Overview/source.cs b/snippets/csharp/System/Type/Overview/source.cs index 2e479978b80..303403b32fd 100644 --- a/snippets/csharp/System/Type/Overview/source.cs +++ b/snippets/csharp/System/Type/Overview/source.cs @@ -9,14 +9,14 @@ class Example3 { static void Main() { - Type t = typeof(String); + Type t = typeof(string); MethodInfo substr = t.GetMethod("Substring", - new Type[] { typeof(int), typeof(int) }); + [typeof(int), typeof(int)]); - Object result = - substr.Invoke("Hello, World!", new Object[] { 7, 5 }); - Console.WriteLine("{0} returned \"{1}\".", substr, result); + object result = + substr.Invoke("Hello, World!", [7, 5]); + Console.WriteLine($"{substr} returned \"{result}\"."); } } diff --git a/snippets/csharp/System/Type/ReflectedType/source.cs b/snippets/csharp/System/Type/ReflectedType/source.cs index bf060d9a664..fb57e57ee7a 100644 --- a/snippets/csharp/System/Type/ReflectedType/source.cs +++ b/snippets/csharp/System/Type/ReflectedType/source.cs @@ -1,6 +1,6 @@ // using System; -using System.Reflection; + public abstract class MyClassA { @@ -11,8 +11,7 @@ public abstract class MyClassB public static void Main(string[] args) { - Console.WriteLine("Reflected type of MyClassB is {0}", - typeof(MyClassB).ReflectedType); //outputs MyClassA, the enclosing class + Console.WriteLine($"Reflected type of MyClassB is {typeof(MyClassB).ReflectedType}"); //outputs MyClassA, the enclosing class } } // diff --git a/snippets/csharp/System/Type/StructLayoutAttribute/source.cs b/snippets/csharp/System/Type/StructLayoutAttribute/source.cs index 6d97f7ca5cc..66a8afe89b8 100644 --- a/snippets/csharp/System/Type/StructLayoutAttribute/source.cs +++ b/snippets/csharp/System/Type/StructLayoutAttribute/source.cs @@ -11,17 +11,15 @@ public static void Main() DisplayLayoutAttribute(typeof(Test2).StructLayoutAttribute); } - private static void DisplayLayoutAttribute(StructLayoutAttribute sla) - { - Console.WriteLine("\r\nCharSet: "+sla.CharSet.ToString()+"\r\n Pack: "+sla.Pack.ToString()+"\r\n Size: "+sla.Size.ToString()+"\r\n Value: "+sla.Value.ToString()); - } + private static void DisplayLayoutAttribute(StructLayoutAttribute sla) => Console.WriteLine("\r\nCharSet: " + sla.CharSet + "\r\n Pack: " + sla.Pack + "\r\n Size: " + sla.Size + "\r\n Value: " + sla.Value); public struct Test1 { public byte B1; public short S; public byte B2; } - [StructLayout(LayoutKind.Explicit, Pack=1)] public struct Test2 + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct Test2 { [FieldOffset(0)] public byte B1; [FieldOffset(1)] public short S; diff --git a/snippets/csharp/System/Type/TypeHandle/type_typehandle.cs b/snippets/csharp/System/Type/TypeHandle/type_typehandle.cs index b734d2c81a9..3c3fcad33a9 100644 --- a/snippets/csharp/System/Type/TypeHandle/type_typehandle.cs +++ b/snippets/csharp/System/Type/TypeHandle/type_typehandle.cs @@ -1,6 +1,6 @@ -// +// using System; -using System.Reflection; + class MyClass { public int myField = 10; @@ -12,7 +12,7 @@ public static void Main() { try { - MyClass myClass = new MyClass(); + MyClass myClass = new(); // Get the type of MyClass. Type myClassType = myClass.GetType(); @@ -22,9 +22,9 @@ public static void Main() DisplayTypeHandle(myClassHandle); } - catch(Exception e) + catch (Exception e) { - Console.WriteLine("Exception: {0}", e.Message ); + Console.WriteLine($"Exception: {e.Message}"); } } @@ -34,7 +34,7 @@ public static void DisplayTypeHandle(RuntimeTypeHandle myTypeHandle) Type myType = Type.GetTypeFromHandle(myTypeHandle); // Display the type. Console.WriteLine("\nDisplaying the type from the handle:\n"); - Console.WriteLine("The type is {0}.", myType.ToString()); + Console.WriteLine($"The type is {myType}."); } } -// \ No newline at end of file +// diff --git a/snippets/csharp/System/TypeInitializationException/Overview/Missing1.cs b/snippets/csharp/System/TypeInitializationException/Overview/Missing1.cs index b6d72e3e237..dd617df1297 100644 --- a/snippets/csharp/System/TypeInitializationException/Overview/Missing1.cs +++ b/snippets/csharp/System/TypeInitializationException/Overview/Missing1.cs @@ -5,7 +5,7 @@ public class MissingEx1 { public static void Main() { - Person p = new Person("John", "Doe"); + Person p = new("John", "Doe"); Console.WriteLine(p); } } @@ -17,10 +17,7 @@ public class Person readonly string _fName; readonly string _lName; - static Person() - { - s_infoModule = new InfoModule(DateTime.UtcNow); - } + static Person() => s_infoModule = new(DateTime.UtcNow); public Person(string fName, string lName) { @@ -29,16 +26,13 @@ public Person(string fName, string lName) s_infoModule.Increment(); } - public override string ToString() - { - return string.Format("{0} {1}", _fName, _lName); - } + public override string ToString() => $"{_fName} {_lName}"; } // The example displays the following output if missing1a.dll is renamed or removed: -// Unhandled Exception: System.TypeInitializationException: -// The type initializer for 'Person' threw an exception. ---> -// System.IO.FileNotFoundException: Could not load file or assembly -// 'Missing1a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' +// Unhandled Exception: System.TypeInitializationException: +// The type initializer for 'Person' threw an exception. ---> +// System.IO.FileNotFoundException: Could not load file or assembly +// 'Missing1a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' // or one of its dependencies. The system cannot find the file specified. // at Person..cctor() // --- End of inner exception stack trace --- diff --git a/snippets/csharp/System/TypeInitializationException/Overview/Missing1a.cs b/snippets/csharp/System/TypeInitializationException/Overview/Missing1a.cs index 56903779fba..cbefba5bd3b 100644 --- a/snippets/csharp/System/TypeInitializationException/Overview/Missing1a.cs +++ b/snippets/csharp/System/TypeInitializationException/Overview/Missing1a.cs @@ -3,22 +3,13 @@ public class InfoModule { - private DateTime firstUse; - private int ctr = 0; + private DateTime firstUse; + private int ctr = 0; - public InfoModule(DateTime dat) - { - firstUse = dat; - } - - public int Increment() - { - return ++ctr; - } - - public DateTime GetInitializationTime() - { - return firstUse; - } + public InfoModule(DateTime dat) => firstUse = dat; + + public int Increment() => ++ctr; + + public DateTime GetInitializationTime() => firstUse; } // diff --git a/snippets/csharp/System/TypeInitializationException/Overview/Regex1.cs b/snippets/csharp/System/TypeInitializationException/Overview/Regex1.cs index dfeda845b44..0a82b45d2ec 100644 --- a/snippets/csharp/System/TypeInitializationException/Overview/Regex1.cs +++ b/snippets/csharp/System/TypeInitializationException/Overview/Regex1.cs @@ -1,7 +1,7 @@ // using System; using System.Text.RegularExpressions; -using static System.Net.Mime.MediaTypeNames; + public class RegexEx1 { @@ -11,8 +11,8 @@ public static void Run() // Set a timeout interval of -2 seconds. domain.SetData("REGEX_DEFAULT_MATCH_TIMEOUT", TimeSpan.FromSeconds(-2)); - Regex rgx = new Regex("[aeiouy]"); - Console.WriteLine($"Regular expression pattern: {rgx.ToString()}"); + Regex rgx = new("[aeiouy]"); + Console.WriteLine($"Regular expression pattern: {rgx}"); Console.WriteLine($"Timeout interval for this regex: {rgx.MatchTimeout.TotalSeconds} seconds"); } } diff --git a/snippets/csharp/System/TypeInitializationException/Overview/ctorException1.cs b/snippets/csharp/System/TypeInitializationException/Overview/ctorException1.cs index ac866e10443..4a0392148a4 100644 --- a/snippets/csharp/System/TypeInitializationException/Overview/ctorException1.cs +++ b/snippets/csharp/System/TypeInitializationException/Overview/ctorException1.cs @@ -3,28 +3,28 @@ public class Example { - private static TestClass test = new TestClass(3); - - public static void Main() - { - Example ex = new Example(); - Console.WriteLine(test.Value); - } + private static TestClass test = new(3); + + public static void Main() + { + Example ex = new(); + Console.WriteLine(test.Value); + } } public class TestClass { - public readonly int Value; - - public TestClass(int value) - { - if (value < 0 || value > 1) throw new ArgumentOutOfRangeException(nameof(value)); - Value = value; - } + public readonly int Value; + + public TestClass(int value) + { + if (value < 0 || value > 1) throw new ArgumentOutOfRangeException(nameof(value)); + Value = value; + } } // The example displays the following output: -// Unhandled Exception: System.TypeInitializationException: -// The type initializer for 'Example' threw an exception. ---> +// Unhandled Exception: System.TypeInitializationException: +// The type initializer for 'Example' threw an exception. ---> // System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. // at TestClass..ctor(Int32 value) // at Example..cctor() diff --git a/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor2.cs b/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor2.cs index b8b4effd96b..1cbe390c379 100644 --- a/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor2.cs +++ b/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor2.cs @@ -3,25 +3,27 @@ public class Example { - public static void Main() - { - try { - // Call a method that throws an exception. - TypeLoadExceptionDemoClass.GenerateException(); - } - catch (TypeLoadException e) { - Console.WriteLine("TypeLoadException:\n {0}", e.Message); - } - } + public static void Main() + { + try + { + // Call a method that throws an exception. + TypeLoadExceptionDemoClass.GenerateException(); + } + catch (TypeLoadException e) + { + Console.WriteLine($"TypeLoadException:\n {e.Message}"); + } + } } class TypeLoadExceptionDemoClass { - public static bool GenerateException() - { - // Throw a TypeLoadException with a custom defined message. - throw new TypeLoadException("This is a custom TypeLoadException error message."); - } + public static bool GenerateException() + { + // Throw a TypeLoadException with a custom defined message. + throw new TypeLoadException("This is a custom TypeLoadException error message."); + } } // The example displays the following output: // TypeLoadException: diff --git a/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor3.cs b/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor3.cs index 51589e8ee66..5bb423a9c2d 100644 --- a/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor3.cs +++ b/snippets/csharp/System/TypeLoadException/.ctor/typeloadexception_constructor3.cs @@ -12,42 +12,42 @@ as an inner exception.*/ public class TypeLoadException_Constructor3 { - public static void Main() - { - Console.WriteLine("Calling a method in a non-existent DLL which triggers a TypeLoadException."); - try - { - TypeLoadExceptionDemoClass3.GenerateException(); - } - catch (TypeLoadException e) - { - Console.WriteLine ("TypeLoadException: \n\tError Message = " + e.Message); - Console.WriteLine ("TypeLoadException: \n\tInnerException Message = " + e.InnerException.Message ); - } - catch (Exception e) - { - Console.WriteLine ("Exception: \n\tError Message = " + e.Message); - } - } + public static void Main() + { + Console.WriteLine("Calling a method in a non-existent DLL which triggers a TypeLoadException."); + try + { + TypeLoadExceptionDemoClass3.GenerateException(); + } + catch (TypeLoadException e) + { + Console.WriteLine("TypeLoadException: \n\tError Message = " + e.Message); + Console.WriteLine("TypeLoadException: \n\tInnerException Message = " + e.InnerException.Message); + } + catch (Exception e) + { + Console.WriteLine("Exception: \n\tError Message = " + e.Message); + } + } } class TypeLoadExceptionDemoClass3 { - // A call to this method will raise a TypeLoadException. - [DllImport("NonExistentDLL.DLL", EntryPoint="MethodNotExists")] - public static extern void NonExistentMethod(); + // A call to this method will raise a TypeLoadException. + [DllImport("NonExistentDLL.DLL", EntryPoint = "MethodNotExists")] + public static extern void NonExistentMethod(); - public static void GenerateException() - { - try - { - NonExistentMethod(); - } - catch (TypeLoadException e) - { - // Rethrow exception with the exception as inner exception - throw new TypeLoadException("This exception was raised due to a call to an invalid method.", e); - } - } + public static void GenerateException() + { + try + { + NonExistentMethod(); + } + catch (TypeLoadException e) + { + // Rethrow exception with the exception as inner exception + throw new TypeLoadException("This exception was raised due to a call to an invalid method.", e); + } + } } // diff --git a/snippets/csharp/System/TypeLoadException/Message/typeloadexception_typename.cs b/snippets/csharp/System/TypeLoadException/Message/typeloadexception_typename.cs index 0a4080a9a92..bc3ff020e9e 100644 --- a/snippets/csharp/System/TypeLoadException/Message/typeloadexception_typename.cs +++ b/snippets/csharp/System/TypeLoadException/Message/typeloadexception_typename.cs @@ -14,28 +14,27 @@ values are displayed. public class TypeLoadException_TypeName { - public static void Main() - { - // Get a reference to the assembly mscorlib.dll, which is always - // loaded. (System.String is defined in mscorlib.) - Assembly mscorlib = typeof(string).Assembly; + public static void Main() + { + // Get a reference to the assembly mscorlib.dll, which is always + // loaded. (System.String is defined in mscorlib.) + Assembly mscorlib = typeof(string).Assembly; - try - { - Console.WriteLine("Attempting to load a type that does not exist in mscorlib."); - // The boolean parameter causes an exception to be thrown if the - // type is not found. - Type myType = mscorlib.GetType("System.NonExistentType", true); - } - catch (TypeLoadException ex) - { - // Display the name of the type that was not found, and the - // exception message. - Console.WriteLine("TypeLoadException was caught. Type = '{0}'.", - ex.TypeName); - Console.WriteLine("Error Message = '{0}'", ex.Message); - } - } + try + { + Console.WriteLine("Attempting to load a type that does not exist in mscorlib."); + // The boolean parameter causes an exception to be thrown if the + // type is not found. + Type myType = mscorlib.GetType("System.NonExistentType", true); + } + catch (TypeLoadException ex) + { + // Display the name of the type that was not found, and the + // exception message. + Console.WriteLine($"TypeLoadException was caught. Type = '{ex.TypeName}'."); + Console.WriteLine($"Error Message = '{ex.Message}'"); + } + } } /* This code example produces output similar to the following: diff --git a/snippets/csharp/System/TypedReference/Overview/source.cs b/snippets/csharp/System/TypedReference/Overview/source.cs index 412e3377f61..70684dc3408 100644 --- a/snippets/csharp/System/TypedReference/Overview/source.cs +++ b/snippets/csharp/System/TypedReference/Overview/source.cs @@ -3,18 +3,18 @@ class TypedReferenceArray { - public static void Main() + public static void Main() + { + try { - try - { -// - Assembly.Load("mscorlib.dll").GetType("System.TypedReference[]"); -// - } - catch (Exception ex) - { - Console.WriteLine(ex.Message); - Console.WriteLine(ex.StackTrace); - } - } -} \ No newline at end of file + // + Assembly.Load("mscorlib.dll").GetType("System.TypedReference[]"); + // + } + catch (Exception ex) + { + Console.WriteLine(ex.Message); + Console.WriteLine(ex.StackTrace); + } + } +} diff --git a/snippets/csharp/System/UInt16/CompareTo/source.cs b/snippets/csharp/System/UInt16/CompareTo/source.cs index d5e48a9c9b7..18aa0072d82 100644 --- a/snippets/csharp/System/UInt16/CompareTo/source.cs +++ b/snippets/csharp/System/UInt16/CompareTo/source.cs @@ -1,314 +1,314 @@ using System; using System.Globalization; -namespace Snippets { - class Launcher { - static void Main(string[] args) - { - Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); - Console.WriteLine( t1.ToString("F", null) ); - - string str1 = t1.ToString("G", null); - Console.WriteLine( str1 ); - - Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); - Console.WriteLine( t2.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t2) ); - - Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); - Console.WriteLine( t3.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t3) ); - - Console.ReadLine(); - } - } - // - /// - /// Temperature class stores the value as UInt16 - /// and delegates most of the functionality - /// to the UInt16 implementation. - /// - public class Temperature : IComparable, IFormattable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt16.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt16.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets +{ + class Launcher + { + static void Main(string[] args) + { + Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); + Console.WriteLine(t1.ToString("F", null)); + + string str1 = t1.ToString("G", null); + Console.WriteLine(str1); + + Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); + Console.WriteLine(t2.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t2)); + + Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); + Console.WriteLine(t3.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t3)); + + Console.ReadLine(); + } + } + // + /// + /// Temperature class stores the value as UInt16 + /// and delegates most of the functionality + /// to the UInt16 implementation. + /// + public class Temperature : IComparable, IFormattable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ushort.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = ushort.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets2 { - // - public class Temperature { - public static ushort MinValue { - get { - return UInt16.MinValue; - } - } - - public static ushort MaxValue { - get { - return UInt16.MaxValue; - } - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets2 +{ + // + public class Temperature + { + public static ushort MinValue => ushort.MinValue; + + public static ushort MaxValue => ushort.MaxValue; + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets3 { - // - public class Temperature : IComparable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets3 +{ + // + public class Temperature : IComparable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets4 { - // - public class Temperature : IFormattable { - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets4 +{ + // + public class Temperature : IFormattable + { + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets5 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt16.Parse( s.Remove(s.LastIndexOf('\''), 2) ); - } - else { - temp.Value = UInt16.Parse(s); - } - - return temp; - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets5 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ushort.Parse(s.Remove(s.LastIndexOf('\''), 2)); + } + else + { + temp.Value = ushort.Parse(s); + } + + return temp; + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets6 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt16.Parse( s.Remove(s.LastIndexOf('\''), 2), provider); - } - else { - temp.Value = UInt16.Parse(s, provider); - } - - return temp; - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets6 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ushort.Parse(s.Remove(s.LastIndexOf('\''), 2), provider); + } + else + { + temp.Value = ushort.Parse(s, provider); + } + + return temp; + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets7 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt16.Parse( s.Remove(s.LastIndexOf('\''), 2), styles); - } - else { - temp.Value = UInt16.Parse(s, styles); - } - - return temp; - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets7 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ushort.Parse(s.Remove(s.LastIndexOf('\''), 2), styles); + } + else + { + temp.Value = ushort.Parse(s, styles); + } + + return temp; + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets8 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt16.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt16.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected ushort m_value; - - public ushort Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets8 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ushort.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = ushort.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected ushort m_value; + + public ushort Value { + get => m_value; + set => m_value = value; + } + } + // } diff --git a/snippets/csharp/System/UInt16/Equals/equalsoverl.cs b/snippets/csharp/System/UInt16/Equals/equalsoverl.cs index b14ee0a95c1..6cb59e8a592 100644 --- a/snippets/csharp/System/UInt16/Equals/equalsoverl.cs +++ b/snippets/csharp/System/UInt16/Equals/equalsoverl.cs @@ -3,42 +3,36 @@ public class Example { - static ushort value = 112; - - public static void Main() - { - byte byte1= 112; - Console.WriteLine("value = byte1: {0,16}", value.Equals(byte1)); - TestObjectForEquality(byte1); - - short short1 = 112; - Console.WriteLine("value = short1: {0,17}", value.Equals(short1)); - TestObjectForEquality(short1); - - int int1 = 112; - Console.WriteLine("value = int1: {0,19}", value.Equals(int1)); - TestObjectForEquality(int1); - - sbyte sbyte1 = 112; - Console.WriteLine("value = sbyte1: {0,17}", value.Equals(sbyte1)); - TestObjectForEquality(sbyte1); - - decimal dec1 = 112m; - Console.WriteLine("value = dec1: {0,21}", value.Equals(dec1)); - TestObjectForEquality(dec1); - - double dbl1 = 112; - Console.WriteLine("value = dbl1: {0,20}", value.Equals(dbl1)); - TestObjectForEquality(dbl1); - } - - private static void TestObjectForEquality(Object obj) - { - Console.WriteLine("{0} ({1}) = {2} ({3}): {4}\n", - value, value.GetType().Name, - obj, obj.GetType().Name, - value.Equals(obj)); - } + static ushort value = 112; + + public static void Main() + { + byte byte1 = 112; + Console.WriteLine($"value = byte1: {value.Equals(byte1),16}"); + TestObjectForEquality(byte1); + + short short1 = 112; + Console.WriteLine($"value = short1: {value.Equals(short1),17}"); + TestObjectForEquality(short1); + + int int1 = 112; + Console.WriteLine($"value = int1: {value.Equals(int1),19}"); + TestObjectForEquality(int1); + + sbyte sbyte1 = 112; + Console.WriteLine($"value = sbyte1: {value.Equals(sbyte1),17}"); + TestObjectForEquality(sbyte1); + + decimal dec1 = 112m; + Console.WriteLine($"value = dec1: {value.Equals(dec1),21}"); + TestObjectForEquality(dec1); + + double dbl1 = 112; + Console.WriteLine($"value = dbl1: {value.Equals(dbl1),20}"); + TestObjectForEquality(dbl1); + } + + private static void TestObjectForEquality(object obj) => Console.WriteLine($"{value} ({value.GetType().Name}) = {obj} ({obj.GetType().Name}): {value.Equals(obj)}\n"); } // The example displays the following output: // value = byte1: True diff --git a/snippets/csharp/System/UInt16/Equals/uint16_equals.cs b/snippets/csharp/System/UInt16/Equals/uint16_equals.cs index 491153d04f5..7fc6e0c14b2 100644 --- a/snippets/csharp/System/UInt16/Equals/uint16_equals.cs +++ b/snippets/csharp/System/UInt16/Equals/uint16_equals.cs @@ -15,8 +15,8 @@ public static void MyMethod() try { // - UInt16 myVariable1 = 10; - UInt16 myVariable2 = 10; + ushort myVariable1 = 10; + ushort myVariable2 = 10; //Display the declaring type. Console.WriteLine("\nType of 'myVariable1' is '{0}' and" + @@ -36,7 +36,7 @@ public static void MyMethod() } catch (Exception e) { - Console.WriteLine("Exception :{0}", e.Message); + Console.WriteLine($"Exception :{e.Message}"); } } } diff --git a/snippets/csharp/System/UInt16/MaxValue/MaxValue.cs b/snippets/csharp/System/UInt16/MaxValue/MaxValue.cs index 2a8b2056e75..07f7049d003 100644 --- a/snippets/csharp/System/UInt16/MaxValue/MaxValue.cs +++ b/snippets/csharp/System/UInt16/MaxValue/MaxValue.cs @@ -2,21 +2,21 @@ public class Class1 { - public static void Main() - { - // - int integerValue = 1216; - ushort uIntegerValue; - - if (integerValue >= ushort.MinValue & integerValue <= ushort.MaxValue) - { - uIntegerValue = (ushort) integerValue; - Console.WriteLine(uIntegerValue); - } - else - { - Console.WriteLine("Unable to convert {0} to a UInt16t.", integerValue); - } - // - } + public static void Main() + { + // + int integerValue = 1216; + ushort uIntegerValue; + + if (integerValue >= ushort.MinValue && integerValue <= ushort.MaxValue) + { + uIntegerValue = (ushort)integerValue; + Console.WriteLine(uIntegerValue); + } + else + { + Console.WriteLine($"Unable to convert {integerValue} to a UInt16."); + } + // + } } diff --git a/snippets/csharp/System/UInt16/Parse/Program.cs b/snippets/csharp/System/UInt16/Parse/Program.cs new file mode 100644 index 00000000000..48b8ef24291 --- /dev/null +++ b/snippets/csharp/System/UInt16/Parse/Program.cs @@ -0,0 +1,4 @@ +UInt16ParseExample2.Run(); +UInt16ParseExample3.Run(); +UInt16ParseExample4.Run(); +UInt16ParseExample5.Run(); diff --git a/snippets/csharp/System/UInt16/Parse/Project.csproj b/snippets/csharp/System/UInt16/Parse/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt16/Parse/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt16/Parse/parseex2.cs b/snippets/csharp/System/UInt16/Parse/parseex2.cs index 8f62ab5df7c..1b570b10a8a 100644 --- a/snippets/csharp/System/UInt16/Parse/parseex2.cs +++ b/snippets/csharp/System/UInt16/Parse/parseex2.cs @@ -2,34 +2,36 @@ using System; using System.Globalization; -public class Example +public class UInt16ParseExample2 { - public static void Main() - { - string[] values = { " 214 ", "1,064", "(0)", "1241+", " + 214 ", " +214 ", "2153.0", "1e03", "1300.0e-2" }; - NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; - NumberStyles[] styles = { NumberStyles.None, whitespace, - NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, - NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, + public static void Run() + { + string[] values = { " 214 ", "1,064", "(0)", "1241+", " + 214 ", " +214 ", "2153.0", "1e03", "1300.0e-2" }; + NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; + NumberStyles[] styles = { NumberStyles.None, whitespace, + NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, + NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, NumberStyles.AllowExponent | NumberStyles.AllowDecimalPoint }; - // Attempt to convert each number using each style combination. - foreach (string value in values) - { - Console.WriteLine("Attempting to convert '{0}':", value); - foreach (NumberStyles style in styles) - { - try { - ushort number = UInt16.Parse(value, style); - Console.WriteLine(" {0}: {1}", style, number); - } - catch (FormatException) { - Console.WriteLine(" {0}: Bad Format", style); + // Attempt to convert each number using each style combination. + foreach (string value in values) + { + Console.WriteLine($"Attempting to convert '{value}':"); + foreach (NumberStyles style in styles) + { + try + { + ushort number = ushort.Parse(value, style); + Console.WriteLine($" {style}: {number}"); + } + catch (FormatException) + { + Console.WriteLine($" {style}: Bad Format"); + } } - } - Console.WriteLine(); - } - } + Console.WriteLine(); + } + } } // The example display the following output: // Attempting to convert ' 214 ': @@ -38,56 +40,56 @@ public static void Main() // Integer, AllowTrailingSign: 214 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '1,064': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: 1064 // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '(0)': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '1241+': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 1241 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' + 214 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' +214 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 214 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '2153.0': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: 2153 -// +// // Attempting to convert '1e03': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: 1000 -// +// // Attempting to convert '1300.0e-2': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format diff --git a/snippets/csharp/System/UInt16/Parse/parseex3.cs b/snippets/csharp/System/UInt16/Parse/parseex3.cs index ec51129ab1d..0e3f0e06292 100644 --- a/snippets/csharp/System/UInt16/Parse/parseex3.cs +++ b/snippets/csharp/System/UInt16/Parse/parseex3.cs @@ -2,37 +2,40 @@ using System; using System.Globalization; -public class Example +public class UInt16ParseExample3 { - public static void Main() - { - // Define a custom culture that uses "++" as a positive sign. - CultureInfo ci = new CultureInfo(""); - ci.NumberFormat.PositiveSign = "++"; - // Create an array of cultures. - CultureInfo[] cultures = { ci, CultureInfo.InvariantCulture }; - // Create an array of strings to parse. - string[] values = { "++1403", "-0", "+0", "+16034", - Int16.MinValue.ToString(), "14.0", "18012" }; - // Parse the strings using each culture. - foreach (CultureInfo culture in cultures) - { - Console.WriteLine("Parsing with the '{0}' culture.", culture.Name); - foreach (string value in values) - { - try { - ushort number = UInt16.Parse(value, culture); - Console.WriteLine(" Converted '{0}' to {1}.", value, number); + public static void Run() + { + // Define a custom culture that uses "++" as a positive sign. + CultureInfo ci = new(""); + ci.NumberFormat.PositiveSign = "++"; + // Create an array of cultures. + CultureInfo[] cultures = { ci, CultureInfo.InvariantCulture }; + // Create an array of strings to parse. + string[] values = { "++1403", "-0", "+0", "+16034", + short.MinValue.ToString(), "14.0", "18012" }; + // Parse the strings using each culture. + foreach (CultureInfo culture in cultures) + { + Console.WriteLine($"Parsing with the '{culture.Name}' culture."); + foreach (string value in values) + { + try + { + ushort number = ushort.Parse(value, culture); + Console.WriteLine($" Converted '{value}' to {number}."); + } + catch (FormatException) + { + Console.WriteLine($" The format of '{value}' is invalid."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is outside the range of a UInt16 value."); + } } - catch (FormatException) { - Console.WriteLine(" The format of '{0}' is invalid.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is outside the range of a UInt16 value.", value); - } - } - } - } + } + } } // The example displays the following output: // Parsing with the culture. diff --git a/snippets/csharp/System/UInt16/Parse/parseex4.cs b/snippets/csharp/System/UInt16/Parse/parseex4.cs index 84d41b378da..1ef871ac156 100644 --- a/snippets/csharp/System/UInt16/Parse/parseex4.cs +++ b/snippets/csharp/System/UInt16/Parse/parseex4.cs @@ -2,44 +2,44 @@ using System; using System.Globalization; -public class Example +public class UInt16ParseExample4 { - public static void Main() - { - string[] cultureNames = { "en-US", "fr-FR" }; - NumberStyles[] styles= { NumberStyles.Integer, + public static void Run() + { + string[] cultureNames = { "en-US", "fr-FR" }; + NumberStyles[] styles = { NumberStyles.Integer, NumberStyles.Integer | NumberStyles.AllowDecimalPoint }; - string[] values = { "1702", "+1702.0", "+1702,0", "-1032.00", + string[] values = { "1702", "+1702.0", "+1702,0", "-1032.00", "-1032,00", "1045.1", "1045,1" }; - - // Parse strings using each culture - foreach (string cultureName in cultureNames) - { - CultureInfo ci = new CultureInfo(cultureName); - Console.WriteLine("Parsing strings using the {0} culture", - ci.DisplayName); - // Use each style. - foreach (NumberStyles style in styles) - { - Console.WriteLine(" Style: {0}", style.ToString()); - // Parse each numeric string. - foreach (string value in values) + + // Parse strings using each culture + foreach (string cultureName in cultureNames) + { + CultureInfo ci = new(cultureName); + Console.WriteLine($"Parsing strings using the {ci.DisplayName} culture"); + // Use each style. + foreach (NumberStyles style in styles) { - try { - Console.WriteLine(" Converted '{0}' to {1}.", value, - UInt16.Parse(value, style, ci)); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of range of the UInt16 type.", - value); - } + Console.WriteLine($" Style: {style.ToString()}"); + // Parse each numeric string. + foreach (string value in values) + { + try + { + Console.WriteLine($" Converted '{value}' to {ushort.Parse(value, style, ci)}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of range of the UInt16 type."); + } + } } - } - } - } + } + } } // The example displays the following output: // Parsing strings using the English (United States) culture diff --git a/snippets/csharp/System/UInt16/Parse/parseex5.cs b/snippets/csharp/System/UInt16/Parse/parseex5.cs index aff233c5bbf..889f620b5cb 100644 --- a/snippets/csharp/System/UInt16/Parse/parseex5.cs +++ b/snippets/csharp/System/UInt16/Parse/parseex5.cs @@ -1,29 +1,33 @@ // using System; -public class Example +public class UInt16ParseExample5 { - public static void Main() - { - string[] values = { "-0", "17", "-12", "185", "66012", "+0", + public static void Run() + { + string[] values = { "-0", "17", "-12", "185", "66012", "+0", "", null, "16.1", "28.0", "1,034" }; - foreach (string value in values) - { - try { - ushort number = UInt16.Parse(value); - Console.WriteLine("'{0}' --> {1}", value, number); - } - catch (FormatException) { - Console.WriteLine("'{0}' --> Bad Format", value); - } - catch (OverflowException) { - Console.WriteLine("'{0}' --> OverflowException", value); - } - catch (ArgumentNullException) { - Console.WriteLine("'{0}' --> Null", value); - } - } - } + foreach (string value in values) + { + try + { + ushort number = ushort.Parse(value); + Console.WriteLine($"'{value}' --> {number}"); + } + catch (FormatException) + { + Console.WriteLine($"'{value}' --> Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"'{value}' --> OverflowException"); + } + catch (ArgumentNullException) + { + Console.WriteLine($"'{value}' --> Null"); + } + } + } } // The example displays the following output: // '-0' --> 0 diff --git a/snippets/csharp/System/UInt16/ToString/Program.cs b/snippets/csharp/System/UInt16/ToString/Program.cs new file mode 100644 index 00000000000..860773be472 --- /dev/null +++ b/snippets/csharp/System/UInt16/ToString/Program.cs @@ -0,0 +1,4 @@ +UInt16ToStringExample1.Run(); +UInt16ToStringExample2.Run(); +UInt16ToStringExample3.Run(); +UInt16ToStringExample4.Run(); diff --git a/snippets/csharp/System/UInt16/ToString/Project.csproj b/snippets/csharp/System/UInt16/ToString/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt16/ToString/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt16/ToString/tostring1.cs b/snippets/csharp/System/UInt16/ToString/tostring1.cs index e81bfddcffc..6acfb024b97 100644 --- a/snippets/csharp/System/UInt16/ToString/tostring1.cs +++ b/snippets/csharp/System/UInt16/ToString/tostring1.cs @@ -1,22 +1,21 @@ // using System; -public class Example +public class UInt16ToStringExample1 { - public static void Main() - { - ushort value = 16324; - // Display value using default ToString method. - Console.WriteLine(value.ToString()); - Console.WriteLine(); - - // Define an array of format specifiers. - string[] formats = { "G", "C", "D", "F", "N", "X" }; - // Display value using the standard format specifiers. - foreach (string format in formats) - Console.WriteLine("{0} format specifier: {1,12}", - format, value.ToString(format)); - } + public static void Run() + { + ushort value = 16324; + // Display value using default ToString method. + Console.WriteLine(value.ToString()); + Console.WriteLine(); + + // Define an array of format specifiers. + string[] formats = { "G", "C", "D", "F", "N", "X" }; + // Display value using the standard format specifiers. + foreach (string format in formats) + Console.WriteLine($"{format} format specifier: {value.ToString(format),12}"); + } } // The example displays the following output: // 16324 diff --git a/snippets/csharp/System/UInt16/ToString/tostring2.cs b/snippets/csharp/System/UInt16/ToString/tostring2.cs index 1075f803ea9..6324bf04a36 100644 --- a/snippets/csharp/System/UInt16/ToString/tostring2.cs +++ b/snippets/csharp/System/UInt16/ToString/tostring2.cs @@ -2,28 +2,26 @@ using System; using System.Globalization; -public class Example +public class UInt16ToStringExample2 { - public static void Main() - { - // Define an array of CultureInfo objects. - CultureInfo[] ci = { new CultureInfo("en-US"), - new CultureInfo("fr-FR"), - CultureInfo.InvariantCulture }; - UInt16 value = 18924; - Console.WriteLine(" {0,12} {1,12} {2,12}", - GetName(ci[0]), GetName(ci[1]), GetName(ci[2])); - Console.WriteLine(" {0,12} {1,12} {2,12}", - value.ToString(ci[0]), value.ToString(ci[1]), value.ToString(ci[2])); - } + public static void Run() + { + // Define an array of CultureInfo objects. + CultureInfo[] ci = { new CultureInfo("en-US"), + new CultureInfo("fr-FR"), + CultureInfo.InvariantCulture }; + ushort value = 18924; + Console.WriteLine($" {GetName(ci[0]),12} {GetName(ci[1]),12} {GetName(ci[2]),12}"); + Console.WriteLine($" {value.ToString(ci[0]),12} {value.ToString(ci[1]),12} {value.ToString(ci[2]),12}"); + } - private static string GetName(CultureInfo ci) - { - if (ci.Equals(CultureInfo.InvariantCulture)) - return "Invariant"; - else - return ci.Name; - } + private static string GetName(CultureInfo ci) + { + if (ci.Equals(CultureInfo.InvariantCulture)) + return "Invariant"; + else + return ci.Name; + } } // The example displays the following output: // en-US fr-FR Invariant diff --git a/snippets/csharp/System/UInt16/ToString/tostring3.cs b/snippets/csharp/System/UInt16/ToString/tostring3.cs index a8793f054b2..236354a6c8c 100644 --- a/snippets/csharp/System/UInt16/ToString/tostring3.cs +++ b/snippets/csharp/System/UInt16/ToString/tostring3.cs @@ -1,19 +1,19 @@ // using System; -using System.Globalization; -public class Example + +public class UInt16ToStringExample3 { - public static void Main() - { - ushort value = 21708; - string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", - "N", "P", "X", "000000.0", "#.0", + public static void Run() + { + ushort value = 21708; + string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", + "N", "P", "X", "000000.0", "#.0", "00000000;(0);**Zero**" }; - - foreach (string specifier in specifiers) - Console.WriteLine("{0}: {1}", specifier, value.ToString(specifier)); - } + + foreach (string specifier in specifiers) + Console.WriteLine($"{specifier}: {value.ToString(specifier)}"); + } } // The example displays the following output: // G: 21708 diff --git a/snippets/csharp/System/UInt16/ToString/tostring4.cs b/snippets/csharp/System/UInt16/ToString/tostring4.cs index 8df6ae52e67..4c3a57d7e2a 100644 --- a/snippets/csharp/System/UInt16/ToString/tostring4.cs +++ b/snippets/csharp/System/UInt16/ToString/tostring4.cs @@ -2,56 +2,54 @@ using System; using System.Globalization; -public class Example +public class UInt16ToStringExample4 { - public static void Main() - { - // Define cultures whose formatting conventions are to be used. - CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), - CultureInfo.CreateSpecificCulture("fr-FR"), + public static void Run() + { + // Define cultures whose formatting conventions are to be used. + CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), + CultureInfo.CreateSpecificCulture("fr-FR"), CultureInfo.CreateSpecificCulture("es-ES") }; - string[] specifiers = {"G", "C", "D4", "E2", "F", "N", "P", "X2"}; - ushort value = 22042; - - foreach (string specifier in specifiers) - { - foreach (CultureInfo culture in cultures) - Console.WriteLine("{0,2} format using {1} culture: {2, 16}", - specifier, culture.Name, - value.ToString(specifier, culture)); - Console.WriteLine(); - } - } + string[] specifiers = { "G", "C", "D4", "E2", "F", "N", "P", "X2" }; + ushort value = 22042; + + foreach (string specifier in specifiers) + { + foreach (CultureInfo culture in cultures) + Console.WriteLine($"{specifier,2} format using {culture.Name} culture: {value.ToString(specifier, culture),16}"); + Console.WriteLine(); + } + } } // The example displays the following output: // G format using en-US culture: 22042 // G format using fr-FR culture: 22042 // G format using es-ES culture: 22042 -// +// // C format using en-US culture: $22,042.00 // C format using fr-FR culture: 22 042,00 € // C format using es-ES culture: 22.042,00 € -// +// // D4 format using en-US culture: 22042 // D4 format using fr-FR culture: 22042 // D4 format using es-ES culture: 22042 -// +// // E2 format using en-US culture: 2.20E+004 // E2 format using fr-FR culture: 2,20E+004 // E2 format using es-ES culture: 2,20E+004 -// +// // F format using en-US culture: 22042.00 // F format using fr-FR culture: 22042,00 // F format using es-ES culture: 22042,00 -// +// // N format using en-US culture: 22,042.00 // N format using fr-FR culture: 22 042,00 // N format using es-ES culture: 22.042,00 -// +// // P format using en-US culture: 2,204,200.00 % // P format using fr-FR culture: 2 204 200,00 % // P format using es-ES culture: 2.204.200,00 % -// +// // X2 format using en-US culture: 561A // X2 format using fr-FR culture: 561A // X2 format using es-ES culture: 561A diff --git a/snippets/csharp/System/UInt16/TryParse/Program.cs b/snippets/csharp/System/UInt16/TryParse/Program.cs new file mode 100644 index 00000000000..1958e43db86 --- /dev/null +++ b/snippets/csharp/System/UInt16/TryParse/Program.cs @@ -0,0 +1,3 @@ +UInt16TryParseStylesExample.Run(); +UInt32TryParseBasicExample.Run(); +UInt32TryParseStylesExample.Run(); diff --git a/snippets/csharp/System/UInt16/TryParse/Project.csproj b/snippets/csharp/System/UInt16/TryParse/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt16/TryParse/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt16/TryParse/tryparse11.cs b/snippets/csharp/System/UInt16/TryParse/tryparse11.cs index 24a2fa998b5..c068b5d4c35 100644 --- a/snippets/csharp/System/UInt16/TryParse/tryparse11.cs +++ b/snippets/csharp/System/UInt16/TryParse/tryparse11.cs @@ -1,36 +1,36 @@ using System; -public class Example +public class UInt32TryParseBasicExample { - public static void Main() - { - // - string[] numericStrings = { "1293.8", "+1671.7", "28347.", - " 33113684 ", "(0)", "-0", "-1", - "+1293617", "18-", "119870", "31,024", + public static void Run() + { + // + string[] numericStrings = { "1293.8", "+1671.7", "28347.", + " 33113684 ", "(0)", "-0", "-1", + "+1293617", "18-", "119870", "31,024", " 3127094 ", "00700000" }; - uint number; - foreach (string numericString in numericStrings) - { - if (UInt32.TryParse(numericString, out number)) - Console.WriteLine("Converted '{0}' to {1}.", numericString, number); - else - Console.WriteLine("Cannot convert '{0}' to a UInt32.", numericString); - } - // The example displays the following output: - // Cannot convert '1293.8' to a UInt32. - // Cannot convert '+1671.7' to a UInt32. - // Cannot convert '28347.' to a UInt32. - // Converted ' 33113684 ' to 33113684. - // Cannot convert '(0)' to a UInt32. - // Converted '-0' to 0. - // Cannot convert '-1' to a UInt32. - // Converted '+1293617' to 1293617. - // Cannot convert '18-' to a UInt32. - // Converted '119870' to 119870. - // Cannot convert '31,024' to a UInt32. - // Converted ' 3127094 ' to 3127094. - // Converted '0070000' to 70000. - // - } + uint number; + foreach (string numericString in numericStrings) + { + if (uint.TryParse(numericString, out number)) + Console.WriteLine($"Converted '{numericString}' to {number}."); + else + Console.WriteLine($"Cannot convert '{numericString}' to a UInt32."); + } + // The example displays the following output: + // Cannot convert '1293.8' to a UInt32. + // Cannot convert '+1671.7' to a UInt32. + // Cannot convert '28347.' to a UInt32. + // Converted ' 33113684 ' to 33113684. + // Cannot convert '(0)' to a UInt32. + // Converted '-0' to 0. + // Cannot convert '-1' to a UInt32. + // Converted '+1293617' to 1293617. + // Cannot convert '18-' to a UInt32. + // Converted '119870' to 119870. + // Cannot convert '31,024' to a UInt32. + // Converted ' 3127094 ' to 3127094. + // Converted '0070000' to 70000. + // + } } diff --git a/snippets/csharp/System/UInt16/TryParse/tryparse2.cs b/snippets/csharp/System/UInt16/TryParse/tryparse2.cs index d97093927b3..226fa126d16 100644 --- a/snippets/csharp/System/UInt16/TryParse/tryparse2.cs +++ b/snippets/csharp/System/UInt16/TryParse/tryparse2.cs @@ -2,56 +2,56 @@ using System; using System.Globalization; -public class Example +public class UInt16TryParseStylesExample { - public static void Main() - { - string numericString; - NumberStyles styles; - - numericString = "10603"; - styles = NumberStyles.Integer; - CallTryParse(numericString, styles); - - numericString = "-10603"; - styles = NumberStyles.None; - CallTryParse(numericString, styles); - - numericString = "29103.00"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); - - numericString = "10345.72"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); + public static void Run() + { + string numericString; + NumberStyles styles; - numericString = "2210E-01"; - styles = NumberStyles.Integer | NumberStyles.AllowExponent; - CallTryParse(numericString, styles); - - numericString = "9112E-01"; - CallTryParse(numericString, styles); - - numericString = "312E01"; - CallTryParse(numericString, styles); - - numericString = "FFC8"; - CallTryParse(numericString, NumberStyles.HexNumber); - - numericString = "0x8F8C"; - CallTryParse(numericString, NumberStyles.HexNumber); - } - - private static void CallTryParse(string stringToConvert, NumberStyles styles) - { - ushort number; - bool result = UInt16.TryParse(stringToConvert, styles, - CultureInfo.InvariantCulture, out number); - if (result) - Console.WriteLine($"Converted '{stringToConvert}' to {number}."); - else - Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); - } + numericString = "10603"; + styles = NumberStyles.Integer; + CallTryParse(numericString, styles); + + numericString = "-10603"; + styles = NumberStyles.None; + CallTryParse(numericString, styles); + + numericString = "29103.00"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "10345.72"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "2210E-01"; + styles = NumberStyles.Integer | NumberStyles.AllowExponent; + CallTryParse(numericString, styles); + + numericString = "9112E-01"; + CallTryParse(numericString, styles); + + numericString = "312E01"; + CallTryParse(numericString, styles); + + numericString = "FFC8"; + CallTryParse(numericString, NumberStyles.HexNumber); + + numericString = "0x8F8C"; + CallTryParse(numericString, NumberStyles.HexNumber); + } + + private static void CallTryParse(string stringToConvert, NumberStyles styles) + { + ushort number; + bool result = ushort.TryParse(stringToConvert, styles, + CultureInfo.InvariantCulture, out number); + if (result) + Console.WriteLine($"Converted '{stringToConvert}' to {number}."); + else + Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); + } } // The example displays the following output: // Converted '10603' to 10603. diff --git a/snippets/csharp/System/UInt16/TryParse/tryparse21.cs b/snippets/csharp/System/UInt16/TryParse/tryparse21.cs index 8c55b83e78e..dec240c9d9c 100644 --- a/snippets/csharp/System/UInt16/TryParse/tryparse21.cs +++ b/snippets/csharp/System/UInt16/TryParse/tryparse21.cs @@ -2,56 +2,56 @@ using System; using System.Globalization; -public class Example +public class UInt32TryParseStylesExample { - public static void Main() - { - string numericString; - NumberStyles styles; - - numericString = "2106034"; - styles = NumberStyles.Integer; - CallTryParse(numericString, styles); - - numericString = "-10603"; - styles = NumberStyles.None; - CallTryParse(numericString, styles); - - numericString = "29103674.00"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); - - numericString = "10345.72"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); + public static void Run() + { + string numericString; + NumberStyles styles; - numericString = "41792210E-01"; - styles = NumberStyles.Integer | NumberStyles.AllowExponent; - CallTryParse(numericString, styles); - - numericString = "9112E-01"; - CallTryParse(numericString, styles); - - numericString = "312E01"; - CallTryParse(numericString, styles); - - numericString = "FFC86DA1"; - CallTryParse(numericString, NumberStyles.HexNumber); - - numericString = "0x8F8C"; - CallTryParse(numericString, NumberStyles.HexNumber); - } - - private static void CallTryParse(string stringToConvert, NumberStyles styles) - { - uint number; - bool result = UInt32.TryParse(stringToConvert, styles, - CultureInfo.InvariantCulture, out number); - if (result) - Console.WriteLine($"Converted '{stringToConvert}' to {number}."); - else - Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); - } + numericString = "2106034"; + styles = NumberStyles.Integer; + CallTryParse(numericString, styles); + + numericString = "-10603"; + styles = NumberStyles.None; + CallTryParse(numericString, styles); + + numericString = "29103674.00"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "10345.72"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "41792210E-01"; + styles = NumberStyles.Integer | NumberStyles.AllowExponent; + CallTryParse(numericString, styles); + + numericString = "9112E-01"; + CallTryParse(numericString, styles); + + numericString = "312E01"; + CallTryParse(numericString, styles); + + numericString = "FFC86DA1"; + CallTryParse(numericString, NumberStyles.HexNumber); + + numericString = "0x8F8C"; + CallTryParse(numericString, NumberStyles.HexNumber); + } + + private static void CallTryParse(string stringToConvert, NumberStyles styles) + { + uint number; + bool result = uint.TryParse(stringToConvert, styles, + CultureInfo.InvariantCulture, out number); + if (result) + Console.WriteLine($"Converted '{stringToConvert}' to {number}."); + else + Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); + } } // The example displays the following output: // Converted '2106034' to 2106034. diff --git a/snippets/csharp/System/UInt32/CompareTo/source.cs b/snippets/csharp/System/UInt32/CompareTo/source.cs index 31f0f2ce977..e2496483bef 100644 --- a/snippets/csharp/System/UInt32/CompareTo/source.cs +++ b/snippets/csharp/System/UInt32/CompareTo/source.cs @@ -1,314 +1,314 @@ using System; using System.Globalization; -namespace Snippets { - class Launcher { - static void Main(string[] args) - { - Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); - Console.WriteLine( t1.ToString("F", null) ); - - string str1 = t1.ToString("G", null); - Console.WriteLine( str1 ); - - Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); - Console.WriteLine( t2.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t2) ); - - Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); - Console.WriteLine( t3.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t3) ); - - Console.ReadLine(); - } - } - // - /// - /// Temperature class stores the value as UInt32 - /// and delegates most of the functionality - /// to the UInt32 implementation. - /// - public class Temperature : IComparable, IFormattable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt32.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt32.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets +{ + class Launcher + { + static void Main(string[] args) + { + Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); + Console.WriteLine(t1.ToString("F", null)); + + string str1 = t1.ToString("G", null); + Console.WriteLine(str1); + + Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); + Console.WriteLine(t2.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t2)); + + Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); + Console.WriteLine(t3.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t3)); + + Console.ReadLine(); + } + } + // + /// + /// Temperature class stores the value as UInt32 + /// and delegates most of the functionality + /// to the UInt32 implementation. + /// + public class Temperature : IComparable, IFormattable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = uint.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = uint.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets2 { - // - public class Temperature { - public static uint MinValue { - get { - return UInt32.MinValue; - } - } - - public static uint MaxValue { - get { - return UInt32.MaxValue; - } - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets2 +{ + // + public class Temperature + { + public static uint MinValue => uint.MinValue; + + public static uint MaxValue => uint.MaxValue; + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets3 { - // - public class Temperature : IComparable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets3 +{ + // + public class Temperature : IComparable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets4 { - // - public class Temperature : IFormattable { - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets4 +{ + // + public class Temperature : IFormattable + { + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets5 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt32.Parse( s.Remove(s.LastIndexOf('\''), 2) ); - } - else { - temp.Value = UInt32.Parse(s); - } - - return temp; - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets5 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = uint.Parse(s.Remove(s.LastIndexOf('\''), 2)); + } + else + { + temp.Value = uint.Parse(s); + } + + return temp; + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets6 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt32.Parse( s.Remove(s.LastIndexOf('\''), 2), provider); - } - else { - temp.Value = UInt32.Parse(s, provider); - } - - return temp; - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets6 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = uint.Parse(s.Remove(s.LastIndexOf('\''), 2), provider); + } + else + { + temp.Value = uint.Parse(s, provider); + } + + return temp; + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets7 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt32.Parse( s.Remove(s.LastIndexOf('\''), 2), styles); - } - else { - temp.Value = UInt32.Parse(s, styles); - } - - return temp; - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets7 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = uint.Parse(s.Remove(s.LastIndexOf('\''), 2), styles); + } + else + { + temp.Value = uint.Parse(s, styles); + } + + return temp; + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets8 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt32.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt32.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected uint m_value; - - public uint Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets8 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = uint.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = uint.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected uint m_value; + + public uint Value { + get => m_value; + set => m_value = value; + } + } + // } diff --git a/snippets/csharp/System/UInt32/Equals/equalsoverl.cs b/snippets/csharp/System/UInt32/Equals/equalsoverl.cs index 53f0ee58e22..186405bfe27 100644 --- a/snippets/csharp/System/UInt32/Equals/equalsoverl.cs +++ b/snippets/csharp/System/UInt32/Equals/equalsoverl.cs @@ -3,50 +3,44 @@ public class Example { - static uint value = 112; - - public static void Main() - { - byte byte1= 112; - Console.WriteLine("value = byte1: {0,16}", value.Equals(byte1)); - TestObjectForEquality(byte1); + static uint value = 112; - short short1 = 112; - Console.WriteLine("value = short1: {0,17}", value.Equals(short1)); - TestObjectForEquality(short1); + public static void Main() + { + byte byte1 = 112; + Console.WriteLine($"value = byte1: {value.Equals(byte1),16}"); + TestObjectForEquality(byte1); - long long1 = 112; - Console.WriteLine("value = long1: {0,18}", value.Equals(long1)); - TestObjectForEquality(long1); + short short1 = 112; + Console.WriteLine($"value = short1: {value.Equals(short1),17}"); + TestObjectForEquality(short1); - sbyte sbyte1 = 112; - Console.WriteLine("value = sbyte1: {0,17}", value.Equals(sbyte1)); - TestObjectForEquality(sbyte1); + long long1 = 112; + Console.WriteLine($"value = long1: {value.Equals(long1),18}"); + TestObjectForEquality(long1); - ushort ushort1 = 112; - Console.WriteLine("value = ushort1: {0,16}", value.Equals(ushort1)); - TestObjectForEquality(ushort1); + sbyte sbyte1 = 112; + Console.WriteLine($"value = sbyte1: {value.Equals(sbyte1),17}"); + TestObjectForEquality(sbyte1); - ulong ulong1 = 112; - Console.WriteLine("value = ulong1: {0,18}", value.Equals(ulong1)); - TestObjectForEquality(ulong1); + ushort ushort1 = 112; + Console.WriteLine($"value = ushort1: {value.Equals(ushort1),16}"); + TestObjectForEquality(ushort1); - decimal dec1 = 112m; - Console.WriteLine("value = dec1: {0,21}", value.Equals(dec1)); - TestObjectForEquality(dec1); + ulong ulong1 = 112; + Console.WriteLine($"value = ulong1: {value.Equals(ulong1),18}"); + TestObjectForEquality(ulong1); - double dbl1 = 112; - Console.WriteLine("value = dbl1: {0,20}", value.Equals(dbl1)); - TestObjectForEquality(dbl1); - } + decimal dec1 = 112m; + Console.WriteLine($"value = dec1: {value.Equals(dec1),21}"); + TestObjectForEquality(dec1); - private static void TestObjectForEquality(Object obj) - { - Console.WriteLine("{0} ({1}) = {2} ({3}): {4}\n", - value, value.GetType().Name, - obj, obj.GetType().Name, - value.Equals(obj)); - } + double dbl1 = 112; + Console.WriteLine($"value = dbl1: {value.Equals(dbl1),20}"); + TestObjectForEquality(dbl1); + } + + private static void TestObjectForEquality(object obj) => Console.WriteLine($"{value} ({value.GetType().Name}) = {obj} ({obj.GetType().Name}): {value.Equals(obj)}\n"); } // The example displays the following output: // value = byte1: True diff --git a/snippets/csharp/System/UInt32/Equals/uint32_equals.cs b/snippets/csharp/System/UInt32/Equals/uint32_equals.cs index f5966b5ac63..6fe36d5cf47 100644 --- a/snippets/csharp/System/UInt32/Equals/uint32_equals.cs +++ b/snippets/csharp/System/UInt32/Equals/uint32_equals.cs @@ -9,32 +9,32 @@ of struct 'UInt32'. This compares an instance of 'UInt32' with the using System; class MyUInt32_Equals { - public static void Main() - { - try - { -// - UInt32 myVariable1 = 20; - UInt32 myVariable2 = 20; + public static void Main() + { + try + { + // + uint myVariable1 = 20; + uint myVariable2 = 20; // Display the declaring type. - Console.WriteLine("\nType of 'myVariable1' is '{0}' and"+ - " value is :{1}",myVariable1.GetType(), myVariable1); - Console.WriteLine("Type of 'myVariable2' is '{0}' and"+ - " value is :{1}",myVariable2.GetType(), myVariable2); + Console.WriteLine("\nType of 'myVariable1' is '{0}' and" + + " value is :{1}", myVariable1.GetType(), myVariable1); + Console.WriteLine("Type of 'myVariable2' is '{0}' and" + + " value is :{1}", myVariable2.GetType(), myVariable2); // Compare 'myVariable1' instance with 'myVariable2' Object. - if( myVariable1.Equals( myVariable2 ) ) - Console.WriteLine( "\nStructures 'myVariable1' and "+ - "'myVariable2' are equal"); + if (myVariable1.Equals(myVariable2)) + Console.WriteLine("\nStructures 'myVariable1' and " + + "'myVariable2' are equal"); else - Console.WriteLine( "\nStructures 'myVariable1' and "+ - "'myVariable2' are not equal"); -// - } - catch(Exception e) - { - Console.WriteLine("Exception :{0}", e.Message); - } - } + Console.WriteLine("\nStructures 'myVariable1' and " + + "'myVariable2' are not equal"); + // + } + catch (Exception e) + { + Console.WriteLine($"Exception :{e.Message}"); + } + } } diff --git a/snippets/csharp/System/UInt32/MaxValue/MaxValue1.cs b/snippets/csharp/System/UInt32/MaxValue/MaxValue1.cs index e468978f860..74a2b056a11 100644 --- a/snippets/csharp/System/UInt32/MaxValue/MaxValue1.cs +++ b/snippets/csharp/System/UInt32/MaxValue/MaxValue1.cs @@ -2,40 +2,36 @@ public class ULongRangeExample { - public static void Main() - { - // - long longValue = long.MaxValue / 2; - uint integerValue; - - if (longValue <= uint.MaxValue && - longValue >= uint.MinValue) - { - integerValue = (uint) longValue; - Console.WriteLine("Converted long integer value to {0:n0}.", - integerValue); - } - else - { - uint rangeLimit; - string relationship; - - if (longValue > uint.MaxValue) - { - rangeLimit = uint.MaxValue; - relationship = "greater"; - } - else - { - rangeLimit = uint.MinValue; - relationship = "less"; - } + public static void Main() + { + // + long longValue = long.MaxValue / 2; + uint integerValue; - Console.WriteLine("Conversion failure: {0:n0} is {1} than {2:n0}", - longValue, - relationship, - rangeLimit); - } - // - } + if (longValue <= uint.MaxValue && + longValue >= uint.MinValue) + { + integerValue = (uint)longValue; + Console.WriteLine($"Converted long integer value to {integerValue:n0}."); + } + else + { + uint rangeLimit; + string relationship; + + if (longValue > uint.MaxValue) + { + rangeLimit = uint.MaxValue; + relationship = "greater"; + } + else + { + rangeLimit = uint.MinValue; + relationship = "less"; + } + + Console.WriteLine($"Conversion failure: {longValue:n0} is {relationship} than {rangeLimit:n0}"); + } + // + } } diff --git a/snippets/csharp/System/UInt32/Parse/Program.cs b/snippets/csharp/System/UInt32/Parse/Program.cs new file mode 100644 index 00000000000..457da988a89 --- /dev/null +++ b/snippets/csharp/System/UInt32/Parse/Program.cs @@ -0,0 +1,3 @@ +ParseExample1.Run(); +ParseExample2.Run(); +ParseExample4.Run(); diff --git a/snippets/csharp/System/UInt32/Parse/Project.csproj b/snippets/csharp/System/UInt32/Parse/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt32/Parse/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt32/Parse/parse1.cs b/snippets/csharp/System/UInt32/Parse/parse1.cs index ec04e314312..faa339fdbac 100644 --- a/snippets/csharp/System/UInt32/Parse/parse1.cs +++ b/snippets/csharp/System/UInt32/Parse/parse1.cs @@ -1,39 +1,42 @@ using System; -public class Example +public class ParseExample1 { - public static void Main() - { - // - string[] values = { "+13230", "-0", "1,390,146", "$190,235,421,127", - "0xFA1B", "163042", "-10", "2147483648", + public static void Run() + { + // + string[] values = { "+13230", "-0", "1,390,146", "$190,235,421,127", + "0xFA1B", "163042", "-10", "2147483648", "14065839182", "16e07", "134985.0", "-12034" }; - foreach (string value in values) - { - try { - uint number = UInt32.Parse(value); - Console.WriteLine("{0} --> {1}", value, number); - } - catch (FormatException) { - Console.WriteLine("{0}: Bad Format", value); - } - catch (OverflowException) { - Console.WriteLine("{0}: Overflow", value); - } - } - // The example displays the following output: - // +13230 --> 13230 - // -0 --> 0 - // 1,390,146: Bad Format - // $190,235,421,127: Bad Format - // 0xFA1B: Bad Format - // 163042 --> 163042 - // -10: Overflow - // 2147483648 --> 2147483648 - // 14065839182: Overflow - // 16e07: Bad Format - // 134985.0: Bad Format - // -12034: Overflow - // - } + foreach (string value in values) + { + try + { + uint number = uint.Parse(value); + Console.WriteLine($"{value} --> {number}"); + } + catch (FormatException) + { + Console.WriteLine($"{value}: Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"{value}: Overflow"); + } + } + // The example displays the following output: + // +13230 --> 13230 + // -0 --> 0 + // 1,390,146: Bad Format + // $190,235,421,127: Bad Format + // 0xFA1B: Bad Format + // 163042 --> 163042 + // -10: Overflow + // 2147483648 --> 2147483648 + // 14065839182: Overflow + // 16e07: Bad Format + // 134985.0: Bad Format + // -12034: Overflow + // + } } diff --git a/snippets/csharp/System/UInt32/Parse/parseex2.cs b/snippets/csharp/System/UInt32/Parse/parseex2.cs index 3879074fa19..7b0e9470ab5 100644 --- a/snippets/csharp/System/UInt32/Parse/parseex2.cs +++ b/snippets/csharp/System/UInt32/Parse/parseex2.cs @@ -2,39 +2,41 @@ using System; using System.Globalization; -public class Example +public class ParseExample2 { - public static void Main() - { - string[] values= { " 214309 ", "1,064,181", "(0)", "10241+", " + 21499 ", + public static void Run() + { + string[] values = { " 214309 ", "1,064,181", "(0)", "10241+", " + 21499 ", " +21499 ", "122153.00", "1e03ff", "91300.0e-2" }; - NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; - NumberStyles[] styles= { NumberStyles.None, whitespace, - NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, - NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, + NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; + NumberStyles[] styles = { NumberStyles.None, whitespace, + NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, + NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, NumberStyles.AllowExponent | NumberStyles.AllowDecimalPoint }; - // Attempt to convert each number using each style combination. - foreach (string value in values) - { - Console.WriteLine("Attempting to convert '{0}':", value); - foreach (NumberStyles style in styles) - { - try { - uint number = UInt32.Parse(value, style); - Console.WriteLine(" {0}: {1}", style, number); - } - catch (FormatException) { - Console.WriteLine(" {0}: Bad Format", style); - } - catch (OverflowException) + // Attempt to convert each number using each style combination. + foreach (string value in values) + { + Console.WriteLine($"Attempting to convert '{value}':"); + foreach (NumberStyles style in styles) { - Console.WriteLine(" {0}: Overflow", value); - } - } - Console.WriteLine(); - } - } + try + { + uint number = uint.Parse(value, style); + Console.WriteLine($" {style}: {number}"); + } + catch (FormatException) + { + Console.WriteLine($" {style}: Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($" {value}: Overflow"); + } + } + Console.WriteLine(); + } + } } // The example displays the following output: // Attempting to convert ' 214309 ': @@ -43,60 +45,60 @@ public static void Main() // Integer, AllowTrailingSign: 214309 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '1,064,181': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: 1064181 // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '(0)': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '10241+': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 10241 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' + 21499 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' +21499 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 21499 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '122153.00': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: 122153 -// +// // Attempting to convert '1e03ff': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '91300.0e-2': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: 913 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/UInt32/Parse/parseex4.cs b/snippets/csharp/System/UInt32/Parse/parseex4.cs index b079e33ddef..43cc4a11b44 100644 --- a/snippets/csharp/System/UInt32/Parse/parseex4.cs +++ b/snippets/csharp/System/UInt32/Parse/parseex4.cs @@ -2,44 +2,44 @@ using System; using System.Globalization; -public class Example +public class ParseExample4 { - public static void Main() - { - string[] cultureNames= { "en-US", "fr-FR" }; - NumberStyles[] styles= { NumberStyles.Integer, + public static void Run() + { + string[] cultureNames = { "en-US", "fr-FR" }; + NumberStyles[] styles = { NumberStyles.Integer, NumberStyles.Integer | NumberStyles.AllowDecimalPoint }; - string[] values = { "170209", "+170209.0", "+170209,0", "-103214.00", + string[] values = { "170209", "+170209.0", "+170209,0", "-103214.00", "-103214,00", "104561.1", "104561,1" }; - - // Parse strings using each culture - foreach (string cultureName in cultureNames) - { - CultureInfo ci = new CultureInfo(cultureName); - Console.WriteLine("Parsing strings using the {0} culture", - ci.DisplayName); - // Use each style. - foreach (NumberStyles style in styles) - { - Console.WriteLine(" Style: {0}", style.ToString()); - // Parse each numeric string. - foreach (string value in values) + + // Parse strings using each culture + foreach (string cultureName in cultureNames) + { + CultureInfo ci = new(cultureName); + Console.WriteLine($"Parsing strings using the {ci.DisplayName} culture"); + // Use each style. + foreach (NumberStyles style in styles) { - try { - Console.WriteLine(" Converted '{0}' to {1}.", value, - UInt32.Parse(value, style, ci)); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of range of the UInt32 type.", - value); - } + Console.WriteLine($" Style: {style.ToString()}"); + // Parse each numeric string. + foreach (string value in values) + { + try + { + Console.WriteLine($" Converted '{value}' to {uint.Parse(value, style, ci)}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of range of the UInt32 type."); + } + } } - } - } - } + } + } } // The example displays the following output: // Parsing strings using the English (United States) culture @@ -76,4 +76,4 @@ public static void Main() // '-103214,00' is out of range of the UInt32 type. // Unable to parse '104561.1'. // '104561,1' is out of range of the UInt32 type. -// \ No newline at end of file +// diff --git a/snippets/csharp/System/UInt32/ToString/Program.cs b/snippets/csharp/System/UInt32/ToString/Program.cs new file mode 100644 index 00000000000..7af5a190e4e --- /dev/null +++ b/snippets/csharp/System/UInt32/ToString/Program.cs @@ -0,0 +1,4 @@ +UInt32ToStringExample1.Run(); +UInt32ToStringExample2.Run(); +UInt32ToStringExample3.Run(); +UInt32ToStringExample4.Run(); diff --git a/snippets/csharp/System/UInt32/ToString/Project.csproj b/snippets/csharp/System/UInt32/ToString/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt32/ToString/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt32/ToString/tostring1.cs b/snippets/csharp/System/UInt32/ToString/tostring1.cs index 0194e67d9af..61dc245107b 100644 --- a/snippets/csharp/System/UInt32/ToString/tostring1.cs +++ b/snippets/csharp/System/UInt32/ToString/tostring1.cs @@ -1,26 +1,25 @@ // using System; -public class Example +public class UInt32ToStringExample1 { - public static void Main() - { - uint value = 1632490; - // Display value using default ToString method. - Console.WriteLine(value.ToString()); - Console.WriteLine(); - - // Define an array of format specifiers. - string[] formats = { "G", "C", "D", "F", "N", "X" }; - // Display value using the standard format specifiers. - foreach (string format in formats) - Console.WriteLine("{0} format specifier: {1,16}", - format, value.ToString(format)); - } + public static void Run() + { + uint value = 1632490; + // Display value using default ToString method. + Console.WriteLine(value.ToString()); + Console.WriteLine(); + + // Define an array of format specifiers. + string[] formats = { "G", "C", "D", "F", "N", "X" }; + // Display value using the standard format specifiers. + foreach (string format in formats) + Console.WriteLine($"{format} format specifier: {value.ToString(format),16}"); + } } // The example displays the following output: // 1632490 -// +// // G format specifier: 1632490 // C format specifier: $1,632,490.00 // D format specifier: 1632490 diff --git a/snippets/csharp/System/UInt32/ToString/tostring2.cs b/snippets/csharp/System/UInt32/ToString/tostring2.cs index b10fee2ce2d..4cc6a2e9891 100644 --- a/snippets/csharp/System/UInt32/ToString/tostring2.cs +++ b/snippets/csharp/System/UInt32/ToString/tostring2.cs @@ -2,28 +2,26 @@ using System; using System.Globalization; -public class Example +public class UInt32ToStringExample2 { - public static void Main() - { - // Define an array of CultureInfo objects. - CultureInfo[] ci = { new CultureInfo("en-US"), - new CultureInfo("fr-FR"), - CultureInfo.InvariantCulture }; - uint value = 1870924; - Console.WriteLine(" {0,12} {1,12} {2,12}", - GetName(ci[0]), GetName(ci[1]), GetName(ci[2])); - Console.WriteLine(" {0,12} {1,12} {2,12}", - value.ToString(ci[0]), value.ToString(ci[1]), value.ToString(ci[2])); - } + public static void Run() + { + // Define an array of CultureInfo objects. + CultureInfo[] ci = { new CultureInfo("en-US"), + new CultureInfo("fr-FR"), + CultureInfo.InvariantCulture }; + uint value = 1870924; + Console.WriteLine($" {GetName(ci[0]),12} {GetName(ci[1]),12} {GetName(ci[2]),12}"); + Console.WriteLine($" {value.ToString(ci[0]),12} {value.ToString(ci[1]),12} {value.ToString(ci[2]),12}"); + } - private static string GetName(CultureInfo ci) - { - if (ci.Equals(CultureInfo.InvariantCulture)) - return "Invariant"; - else - return ci.Name; - } + private static string GetName(CultureInfo ci) + { + if (ci.Equals(CultureInfo.InvariantCulture)) + return "Invariant"; + else + return ci.Name; + } } // The example displays the following output: // en-US fr-FR Invariant diff --git a/snippets/csharp/System/UInt32/ToString/tostring3.cs b/snippets/csharp/System/UInt32/ToString/tostring3.cs index 297d0a1b02e..00260898a00 100644 --- a/snippets/csharp/System/UInt32/ToString/tostring3.cs +++ b/snippets/csharp/System/UInt32/ToString/tostring3.cs @@ -1,19 +1,19 @@ // using System; -using System.Globalization; -public class Example + +public class UInt32ToStringExample3 { - public static void Main() - { - uint value = 2179608; - string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", - "N", "P", "X", "000000.0", "#.0", + public static void Run() + { + uint value = 2179608; + string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", + "N", "P", "X", "000000.0", "#.0", "00000000;(0);**Zero**" }; - - foreach (string specifier in specifiers) - Console.WriteLine("{0}: {1}", specifier, value.ToString(specifier)); - } + + foreach (string specifier in specifiers) + Console.WriteLine($"{specifier}: {value.ToString(specifier)}"); + } } // The example displays the following output: // G: 2179608 diff --git a/snippets/csharp/System/UInt32/ToString/tostring4.cs b/snippets/csharp/System/UInt32/ToString/tostring4.cs index ffa9e04c388..0f522f30fb2 100644 --- a/snippets/csharp/System/UInt32/ToString/tostring4.cs +++ b/snippets/csharp/System/UInt32/ToString/tostring4.cs @@ -2,56 +2,54 @@ using System; using System.Globalization; -public class Example +public class UInt32ToStringExample4 { - public static void Main() - { - // Define cultures whose formatting conventions are to be used. - CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), - CultureInfo.CreateSpecificCulture("fr-FR"), + public static void Run() + { + // Define cultures whose formatting conventions are to be used. + CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), + CultureInfo.CreateSpecificCulture("fr-FR"), CultureInfo.CreateSpecificCulture("es-ES") }; - string[] specifiers = {"G", "C", "D4", "E2", "F", "N", "P", "X2"}; - uint value = 2222402; - - foreach (string specifier in specifiers) - { - foreach (CultureInfo culture in cultures) - Console.WriteLine("{0,2} format using {1} culture: {2, 18}", - specifier, culture.Name, - value.ToString(specifier, culture)); - Console.WriteLine(); - } - } + string[] specifiers = { "G", "C", "D4", "E2", "F", "N", "P", "X2" }; + uint value = 2222402; + + foreach (string specifier in specifiers) + { + foreach (CultureInfo culture in cultures) + Console.WriteLine($"{specifier,2} format using {culture.Name} culture: {value.ToString(specifier, culture),18}"); + Console.WriteLine(); + } + } } // The example displays the following output: // G format using en-US culture: 2222402 // G format using fr-FR culture: 2222402 // G format using es-ES culture: 2222402 -// +// // C format using en-US culture: $2,222,402.00 // C format using fr-FR culture: 2 222 402,00 € // C format using es-ES culture: 2.222.402,00 € -// +// // D4 format using en-US culture: 2222402 // D4 format using fr-FR culture: 2222402 // D4 format using es-ES culture: 2222402 -// +// // E2 format using en-US culture: 2.22E+006 // E2 format using fr-FR culture: 2,22E+006 // E2 format using es-ES culture: 2,22E+006 -// +// // F format using en-US culture: 2222402.00 // F format using fr-FR culture: 2222402,00 // F format using es-ES culture: 2222402,00 -// +// // N format using en-US culture: 2,222,402.00 // N format using fr-FR culture: 2 222 402,00 // N format using es-ES culture: 2.222.402,00 -// +// // P format using en-US culture: 222,240,200.00 % // P format using fr-FR culture: 222 240 200,00 % // P format using es-ES culture: 222.240.200,00 % -// +// // X2 format using en-US culture: 21E942 // X2 format using fr-FR culture: 21E942 // X2 format using es-ES culture: 21E942 diff --git a/snippets/csharp/System/UInt64/CompareTo/source.cs b/snippets/csharp/System/UInt64/CompareTo/source.cs index 068f462c181..52c992f0407 100644 --- a/snippets/csharp/System/UInt64/CompareTo/source.cs +++ b/snippets/csharp/System/UInt64/CompareTo/source.cs @@ -1,314 +1,314 @@ using System; using System.Globalization; -namespace Snippets { - class Launcher { - static void Main(string[] args) - { - Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); - Console.WriteLine( t1.ToString("F", null) ); - - string str1 = t1.ToString("G", null); - Console.WriteLine( str1 ); - - Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); - Console.WriteLine( t2.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t2) ); - - Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); - Console.WriteLine( t3.ToString("F", null) ); - - Console.WriteLine( t1.CompareTo(t3) ); - - Console.ReadLine(); - } - } - // - /// - /// Temperature class stores the value as UInt64 - /// and delegates most of the functionality - /// to the UInt64 implementation. - /// - public class Temperature : IComparable, IFormattable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt64.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt64.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets +{ + class Launcher + { + static void Main(string[] args) + { + Temperature t1 = Temperature.Parse("20'F", NumberStyles.Integer, null); + Console.WriteLine(t1.ToString("F", null)); + + string str1 = t1.ToString("G", null); + Console.WriteLine(str1); + + Temperature t2 = Temperature.Parse(str1, NumberStyles.Integer, null); + Console.WriteLine(t2.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t2)); + + Temperature t3 = Temperature.Parse("30'F", NumberStyles.Integer, null); + Console.WriteLine(t3.ToString("F", null)); + + Console.WriteLine(t1.CompareTo(t3)); + + Console.ReadLine(); + } + } + // + /// + /// Temperature class stores the value as UInt64 + /// and delegates most of the functionality + /// to the UInt64 implementation. + /// + public class Temperature : IComparable, IFormattable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ulong.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = ulong.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets2 { - // - public class Temperature { - public static ulong MinValue { - get { - return UInt64.MinValue; - } - } - - public static ulong MaxValue { - get { - return UInt64.MaxValue; - } - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets2 +{ + // + public class Temperature + { + public static ulong MinValue => ulong.MinValue; + + public static ulong MaxValue => ulong.MaxValue; + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets3 { - // - public class Temperature : IComparable { - /// - /// IComparable.CompareTo implementation. - /// - public int CompareTo(object obj) { - if(obj is Temperature) { - Temperature temp = (Temperature) obj; - - return m_value.CompareTo(temp.m_value); - } - - throw new ArgumentException("object is not a Temperature"); - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets3 +{ + // + public class Temperature : IComparable + { + /// + /// IComparable.CompareTo implementation. + /// + public int CompareTo(object obj) + { + if (obj is Temperature) + { + Temperature temp = (Temperature)obj; + + return m_value.CompareTo(temp.m_value); + } + + throw new ArgumentException("object is not a Temperature"); + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets4 { - // - public class Temperature : IFormattable { - /// - /// IFormattable.ToString implementation. - /// - public string ToString(string format, IFormatProvider provider) { - if( format != null && format.Equals("F") ) { - return String.Format("{0}'F", this.Value.ToString()); - } - - return m_value.ToString(format, provider); - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets4 +{ + // + public class Temperature : IFormattable + { + /// + /// IFormattable.ToString implementation. + /// + public string ToString(string format, IFormatProvider provider) + { + if (format != null && format.Equals("F")) + { + return $"{this.Value.ToString()}'F"; + } + + return m_value.ToString(format, provider); + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets5 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt64.Parse( s.Remove(s.LastIndexOf('\''), 2) ); - } - else { - temp.Value = UInt64.Parse(s); - } - - return temp; - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets5 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ulong.Parse(s.Remove(s.LastIndexOf('\''), 2)); + } + else + { + temp.Value = ulong.Parse(s); + } + + return temp; + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets6 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt64.Parse( s.Remove(s.LastIndexOf('\''), 2), provider); - } - else { - temp.Value = UInt64.Parse(s, provider); - } - - return temp; - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets6 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ulong.Parse(s.Remove(s.LastIndexOf('\''), 2), provider); + } + else + { + temp.Value = ulong.Parse(s, provider); + } + + return temp; + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets7 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt64.Parse( s.Remove(s.LastIndexOf('\''), 2), styles); - } - else { - temp.Value = UInt64.Parse(s, styles); - } - - return temp; - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets7 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ulong.Parse(s.Remove(s.LastIndexOf('\''), 2), styles); + } + else + { + temp.Value = ulong.Parse(s, styles); + } + + return temp; + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } -namespace Snippets8 { - // - public class Temperature { - /// - /// Parses the temperature from a string in form - /// [ws][sign]digits['F|'C][ws] - /// - public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) { - Temperature temp = new Temperature(); - - if( s.TrimEnd(null).EndsWith("'F") ) { - temp.Value = UInt64.Parse( s.Remove(s.LastIndexOf('\''), 2), styles, provider); - } - else { - temp.Value = UInt64.Parse(s, styles, provider); - } - - return temp; - } - - // The value holder - protected ulong m_value; - - public ulong Value { - get { - return m_value; - } - set { - m_value = value; - } - } - } - // +namespace Snippets8 +{ + // + public class Temperature + { + /// + /// Parses the temperature from a string in form + /// [ws][sign]digits['F|'C][ws] + /// + public static Temperature Parse(string s, NumberStyles styles, IFormatProvider provider) + { + Temperature temp = new(); + + if (s.TrimEnd(null).EndsWith("'F")) + { + temp.Value = ulong.Parse(s.Remove(s.LastIndexOf('\''), 2), styles, provider); + } + else + { + temp.Value = ulong.Parse(s, styles, provider); + } + + return temp; + } + + // The value holder + protected ulong m_value; + + public ulong Value { + get => m_value; + set => m_value = value; + } + } + // } diff --git a/snippets/csharp/System/UInt64/Equals/Program.cs b/snippets/csharp/System/UInt64/Equals/Program.cs new file mode 100644 index 00000000000..3319f2f339f --- /dev/null +++ b/snippets/csharp/System/UInt64/Equals/Program.cs @@ -0,0 +1,3 @@ +UInt64EqualsObjectExample.Run(); +UInt64EqualsOverloadExample.Run(); +UInt64EqualsExample.Run(); diff --git a/snippets/csharp/System/UInt64/Equals/Project.csproj b/snippets/csharp/System/UInt64/Equals/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt64/Equals/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt64/Equals/equals1.cs b/snippets/csharp/System/UInt64/Equals/equals1.cs index d7efc60d198..6ba81b5abfb 100644 --- a/snippets/csharp/System/UInt64/Equals/equals1.cs +++ b/snippets/csharp/System/UInt64/Equals/equals1.cs @@ -1,23 +1,20 @@ // using System; -public class Example +public class UInt64EqualsObjectExample { - public static void Main() - { - object[] values = { (short) 10, (short) 20, 10, 20, + public static void Run() + { + object[] values = { (short) 10, (short) 20, 10, 20, 10L, 20L, 10D, 20D, (ushort) 10, (ushort) 20, 10U, 20U, 10ul, 20ul }; - UInt64 baseValue = 20; - String baseType = baseValue.GetType().Name; - - foreach (var value in values) - Console.WriteLine("{0} ({1}) = {2} ({3}): {4}", - baseValue, baseType, - value, value.GetType().Name, - baseValue.Equals(value)); - } + ulong baseValue = 20; + string baseType = baseValue.GetType().Name; + + foreach (object value in values) + Console.WriteLine($"{baseValue} ({baseType}) = {value} ({value.GetType().Name}): {baseValue.Equals(value)}"); + } } // The example displays the following output: // 20 (UInt64) = 10 (Int16): False @@ -34,4 +31,4 @@ public static void Main() // 20 (UInt64) = 20 (UInt32): False // 20 (UInt64) = 10 (UInt64): False // 20 (UInt64) = 20 (UInt64): True -// \ No newline at end of file +// diff --git a/snippets/csharp/System/UInt64/Equals/equalsoverl.cs b/snippets/csharp/System/UInt64/Equals/equalsoverl.cs index 3ecff88cf30..99e4b7384d2 100644 --- a/snippets/csharp/System/UInt64/Equals/equalsoverl.cs +++ b/snippets/csharp/System/UInt64/Equals/equalsoverl.cs @@ -1,52 +1,46 @@ // using System; -public class Example +public class UInt64EqualsOverloadExample { - static ulong value = 112; - - public static void Main() - { - byte byte1= 112; - Console.WriteLine("value = byte1: {0,16}", value.Equals(byte1)); - TestObjectForEquality(byte1); + static ulong value = 112; - short short1 = 112; - Console.WriteLine("value = short1: {0,17}", value.Equals(short1)); - TestObjectForEquality(short1); + public static void Run() + { + byte byte1 = 112; + Console.WriteLine($"value = byte1: {value.Equals(byte1),16}"); + TestObjectForEquality(byte1); - int int1 = 112; - Console.WriteLine("value = int1: {0,19}", value.Equals(int1)); - TestObjectForEquality(int1); + short short1 = 112; + Console.WriteLine($"value = short1: {value.Equals(short1),17}"); + TestObjectForEquality(short1); - sbyte sbyte1 = 112; - Console.WriteLine("value = sbyte1: {0,17}", value.Equals(sbyte1)); - TestObjectForEquality(sbyte1); + int int1 = 112; + Console.WriteLine($"value = int1: {value.Equals(int1),19}"); + TestObjectForEquality(int1); - ushort ushort1 = 112; - Console.WriteLine("value = ushort1: {0,16}", value.Equals(ushort1)); - TestObjectForEquality(ushort1); + sbyte sbyte1 = 112; + Console.WriteLine($"value = sbyte1: {value.Equals(sbyte1),17}"); + TestObjectForEquality(sbyte1); - uint uint1 = 112; - Console.WriteLine("value = uint1: {0,18}", value.Equals(uint1)); - TestObjectForEquality(uint1); + ushort ushort1 = 112; + Console.WriteLine($"value = ushort1: {value.Equals(ushort1),16}"); + TestObjectForEquality(ushort1); - decimal dec1 = 112m; - Console.WriteLine("value = dec1: {0,21}", value.Equals(dec1)); - TestObjectForEquality(dec1); + uint uint1 = 112; + Console.WriteLine($"value = uint1: {value.Equals(uint1),18}"); + TestObjectForEquality(uint1); - double dbl1 = 112; - Console.WriteLine("value = dbl1: {0,20}", value.Equals(dbl1)); - TestObjectForEquality(dbl1); - } + decimal dec1 = 112m; + Console.WriteLine($"value = dec1: {value.Equals(dec1),21}"); + TestObjectForEquality(dec1); - private static void TestObjectForEquality(Object obj) - { - Console.WriteLine("{0} ({1}) = {2} ({3}): {4}\n", - value, value.GetType().Name, - obj, obj.GetType().Name, - value.Equals(obj)); - } + double dbl1 = 112; + Console.WriteLine($"value = dbl1: {value.Equals(dbl1),20}"); + TestObjectForEquality(dbl1); + } + + private static void TestObjectForEquality(object obj) => Console.WriteLine($"{value} ({value.GetType().Name}) = {obj} ({obj.GetType().Name}): {value.Equals(obj)}\n"); } // The example displays the following output: // value = byte1: True diff --git a/snippets/csharp/System/UInt64/Equals/uint64_equals.cs b/snippets/csharp/System/UInt64/Equals/uint64_equals.cs index e98b47116d2..e303f5ef7bc 100644 --- a/snippets/csharp/System/UInt64/Equals/uint64_equals.cs +++ b/snippets/csharp/System/UInt64/Equals/uint64_equals.cs @@ -1,23 +1,20 @@ // using System; -class Example +class UInt64EqualsExample { - public static void Main() - { - UInt64 value1 = 50; - UInt64 value2 = 50; + public static void Run() + { + ulong value1 = 50; + ulong value2 = 50; - // Display the values. - Console.WriteLine("value1: Type: {0} Value: {1}", - value1.GetType().Name, value1); - Console.WriteLine("value2: Type: {0} Value: {1}", - value2.GetType().Name, value2); + // Display the values. + Console.WriteLine($"value1: Type: {value1.GetType().Name} Value: {value1}"); + Console.WriteLine($"value2: Type: {value2.GetType().Name} Value: {value2}"); // Compare the two values. - Console.WriteLine("value1 and value2 are equal: {0}", - value1.Equals(value2)); - } + Console.WriteLine($"value1 and value2 are equal: {value1.Equals(value2)}"); + } } // The example displays the following output: // value1: Type: UInt64 Value: 50 diff --git a/snippets/csharp/System/UInt64/MaxValue/MaxValue1.cs b/snippets/csharp/System/UInt64/MaxValue/MaxValue1.cs index 8b8e3045eb6..a08ada6029a 100644 --- a/snippets/csharp/System/UInt64/MaxValue/MaxValue1.cs +++ b/snippets/csharp/System/UInt64/MaxValue/MaxValue1.cs @@ -2,42 +2,39 @@ public class ULongRangeExample { - public static void Main() - { - // - double decimalValue = -1.5; - ulong integerValue; - - // Discard fractional portion of Double value - double decimalInteger = Math.Floor(decimalValue); + public static void Main() + { + // + double decimalValue = -1.5; + ulong integerValue; - if (decimalInteger <= ulong.MaxValue && - decimalInteger >= ulong.MinValue) - { - integerValue = (ulong) decimalValue; - Console.WriteLine("Converted {0} to {1}.", decimalValue, integerValue); - } - else - { - ulong rangeLimit; - string relationship; - - if (decimalInteger > ulong.MaxValue) - { - rangeLimit = ulong.MaxValue; - relationship = "greater"; - } - else - { - rangeLimit = ulong.MinValue; - relationship = "less"; - } + // Discard fractional portion of Double value + double decimalInteger = Math.Floor(decimalValue); - Console.WriteLine("Conversion failure: {0} is {1} than {2}.", - decimalInteger, - relationship, - rangeLimit); - } - // - } + if (decimalInteger <= ulong.MaxValue && + decimalInteger >= ulong.MinValue) + { + integerValue = (ulong)decimalValue; + Console.WriteLine($"Converted {decimalValue} to {integerValue}."); + } + else + { + ulong rangeLimit; + string relationship; + + if (decimalInteger > ulong.MaxValue) + { + rangeLimit = ulong.MaxValue; + relationship = "greater"; + } + else + { + rangeLimit = ulong.MinValue; + relationship = "less"; + } + + Console.WriteLine($"Conversion failure: {decimalInteger} is {relationship} than {rangeLimit}."); + } + // + } } diff --git a/snippets/csharp/System/UInt64/Parse/Program.cs b/snippets/csharp/System/UInt64/Parse/Program.cs new file mode 100644 index 00000000000..a463149ef55 --- /dev/null +++ b/snippets/csharp/System/UInt64/Parse/Program.cs @@ -0,0 +1,3 @@ +UInt64ParseExample1.Run(); +UInt64ParseExample2.Run(); +UInt64ParseExample4.Run(); diff --git a/snippets/csharp/System/UInt64/Parse/Project.csproj b/snippets/csharp/System/UInt64/Parse/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt64/Parse/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt64/Parse/parse1.cs b/snippets/csharp/System/UInt64/Parse/parse1.cs index 0b59d80938a..7633545766a 100644 --- a/snippets/csharp/System/UInt64/Parse/parse1.cs +++ b/snippets/csharp/System/UInt64/Parse/parse1.cs @@ -1,38 +1,41 @@ using System; -public class Example +public class UInt64ParseExample1 { - public static void Main() - { - // - string[] values = { "+13230", "-0", "1,390,146", "$190,235,421,127", + public static void Run() + { + // + string[] values = { "+13230", "-0", "1,390,146", "$190,235,421,127", "0xFA1B", "163042", "-10", "14065839182", "16e07", "134985.0", "-12034" }; - foreach (string value in values) - { - try { - ulong number = UInt64.Parse(value); - Console.WriteLine("{0} --> {1}", value, number); - } - catch (FormatException) { - Console.WriteLine("{0}: Bad Format", value); - } - catch (OverflowException) { - Console.WriteLine("{0}: Overflow", value); - } - } - // The example displays the following output: - // +13230 --> 13230 - // -0 --> 0 - // 1,390,146: Bad Format - // $190,235,421,127: Bad Format - // 0xFA1B: Bad Format - // 163042 --> 163042 - // -10: Overflow - // 14065839182 --> 14065839182 - // 16e07: Bad Format - // 134985.0: Bad Format - // -12034: Overflow - // - } + foreach (string value in values) + { + try + { + ulong number = ulong.Parse(value); + Console.WriteLine($"{value} --> {number}"); + } + catch (FormatException) + { + Console.WriteLine($"{value}: Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($"{value}: Overflow"); + } + } + // The example displays the following output: + // +13230 --> 13230 + // -0 --> 0 + // 1,390,146: Bad Format + // $190,235,421,127: Bad Format + // 0xFA1B: Bad Format + // 163042 --> 163042 + // -10: Overflow + // 14065839182 --> 14065839182 + // 16e07: Bad Format + // 134985.0: Bad Format + // -12034: Overflow + // + } } diff --git a/snippets/csharp/System/UInt64/Parse/parseex2.cs b/snippets/csharp/System/UInt64/Parse/parseex2.cs index 3f704399295..dd8db283108 100644 --- a/snippets/csharp/System/UInt64/Parse/parseex2.cs +++ b/snippets/csharp/System/UInt64/Parse/parseex2.cs @@ -2,39 +2,41 @@ using System; using System.Globalization; -public class Example +public class UInt64ParseExample2 { - public static void Main() - { - string[] values= { " 214309 ", "1,064,181", "(0)", "10241+", " + 21499 ", + public static void Run() + { + string[] values = { " 214309 ", "1,064,181", "(0)", "10241+", " + 21499 ", " +21499 ", "122153.00", "1e03ff", "91300.0e-2" }; - NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; - NumberStyles[] styles= { NumberStyles.None, whitespace, - NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, - NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, + NumberStyles whitespace = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite; + NumberStyles[] styles = { NumberStyles.None, whitespace, + NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | whitespace, + NumberStyles.AllowThousands | NumberStyles.AllowCurrencySymbol, NumberStyles.AllowExponent | NumberStyles.AllowDecimalPoint }; - // Attempt to convert each number using each style combination. - foreach (string value in values) - { - Console.WriteLine("Attempting to convert '{0}':", value); - foreach (NumberStyles style in styles) - { - try { - ulong number = UInt64.Parse(value, style); - Console.WriteLine(" {0}: {1}", style, number); - } - catch (FormatException) { - Console.WriteLine(" {0}: Bad Format", style); - } - catch (OverflowException) + // Attempt to convert each number using each style combination. + foreach (string value in values) + { + Console.WriteLine($"Attempting to convert '{value}':"); + foreach (NumberStyles style in styles) { - Console.WriteLine(" {0}: Overflow", value); - } - } - Console.WriteLine(); - } - } + try + { + ulong number = ulong.Parse(value, style); + Console.WriteLine($" {style}: {number}"); + } + catch (FormatException) + { + Console.WriteLine($" {style}: Bad Format"); + } + catch (OverflowException) + { + Console.WriteLine($" {value}: Overflow"); + } + } + Console.WriteLine(); + } + } } // The example displays the following output: // Attempting to convert ' 214309 ': @@ -43,56 +45,56 @@ public static void Main() // Integer, AllowTrailingSign: 214309 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '1,064,181': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: 1064181 // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '(0)': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '10241+': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 10241 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' + 21499 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert ' +21499 ': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: 21499 // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '122153.00': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: 122153 -// +// // Attempting to convert '1e03ff': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format // Integer, AllowTrailingSign: Bad Format // AllowThousands, AllowCurrencySymbol: Bad Format // AllowDecimalPoint, AllowExponent: Bad Format -// +// // Attempting to convert '91300.0e-2': // None: Bad Format // AllowLeadingWhite, AllowTrailingWhite: Bad Format diff --git a/snippets/csharp/System/UInt64/Parse/parseex4.cs b/snippets/csharp/System/UInt64/Parse/parseex4.cs index aff85eb102b..caa5e31c30f 100644 --- a/snippets/csharp/System/UInt64/Parse/parseex4.cs +++ b/snippets/csharp/System/UInt64/Parse/parseex4.cs @@ -2,44 +2,44 @@ using System; using System.Globalization; -public class Example +public class UInt64ParseExample4 { - public static void Main() - { - string[] cultureNames= { "en-US", "fr-FR" }; - NumberStyles[] styles= { NumberStyles.Integer, + public static void Run() + { + string[] cultureNames = { "en-US", "fr-FR" }; + NumberStyles[] styles = { NumberStyles.Integer, NumberStyles.Integer | NumberStyles.AllowDecimalPoint }; - string[] values = { "170209", "+170209.0", "+170209,0", "-103214.00", + string[] values = { "170209", "+170209.0", "+170209,0", "-103214.00", "-103214,00", "104561.1", "104561,1" }; - - // Parse strings using each culture - foreach (string cultureName in cultureNames) - { - CultureInfo ci = new CultureInfo(cultureName); - Console.WriteLine("Parsing strings using the {0} culture", - ci.DisplayName); - // Use each style. - foreach (NumberStyles style in styles) - { - Console.WriteLine(" Style: {0}", style.ToString()); - // Parse each numeric string. - foreach (string value in values) + + // Parse strings using each culture + foreach (string cultureName in cultureNames) + { + CultureInfo ci = new(cultureName); + Console.WriteLine($"Parsing strings using the {ci.DisplayName} culture"); + // Use each style. + foreach (NumberStyles style in styles) { - try { - Console.WriteLine(" Converted '{0}' to {1}.", value, - UInt64.Parse(value, style, ci)); - } - catch (FormatException) { - Console.WriteLine(" Unable to parse '{0}'.", value); - } - catch (OverflowException) { - Console.WriteLine(" '{0}' is out of range of the UInt64 type.", - value); - } + Console.WriteLine($" Style: {style.ToString()}"); + // Parse each numeric string. + foreach (string value in values) + { + try + { + Console.WriteLine($" Converted '{value}' to {ulong.Parse(value, style, ci)}."); + } + catch (FormatException) + { + Console.WriteLine($" Unable to parse '{value}'."); + } + catch (OverflowException) + { + Console.WriteLine($" '{value}' is out of range of the UInt64 type."); + } + } } - } - } - } + } + } } // The example displays the following output: // Style: Integer diff --git a/snippets/csharp/System/UInt64/ToString/Program.cs b/snippets/csharp/System/UInt64/ToString/Program.cs new file mode 100644 index 00000000000..442730bd75e --- /dev/null +++ b/snippets/csharp/System/UInt64/ToString/Program.cs @@ -0,0 +1,4 @@ +UInt64ToStringExample1.Run(); +UInt64ToStringExample2.Run(); +UInt64ToStringExample3.Run(); +UInt64ToStringExample4.Run(); diff --git a/snippets/csharp/System/UInt64/ToString/Project.csproj b/snippets/csharp/System/UInt64/ToString/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt64/ToString/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt64/ToString/tostring1.cs b/snippets/csharp/System/UInt64/ToString/tostring1.cs index a5f35b12be5..9e02244ebcf 100644 --- a/snippets/csharp/System/UInt64/ToString/tostring1.cs +++ b/snippets/csharp/System/UInt64/ToString/tostring1.cs @@ -1,26 +1,25 @@ // using System; -public class Example +public class UInt64ToStringExample1 { - public static void Main() - { - ulong value = 163249057; - // Display value using default ToString method. - Console.WriteLine(value.ToString()); - Console.WriteLine(); - - // Define an array of format specifiers. - string[] formats = { "G", "C", "D", "F", "N", "X" }; - // Display value using the standard format specifiers. - foreach (string format in formats) - Console.WriteLine("{0} format specifier: {1,16}", - format, value.ToString(format)); - } + public static void Run() + { + ulong value = 163249057; + // Display value using default ToString method. + Console.WriteLine(value.ToString()); + Console.WriteLine(); + + // Define an array of format specifiers. + string[] formats = { "G", "C", "D", "F", "N", "X" }; + // Display value using the standard format specifiers. + foreach (string format in formats) + Console.WriteLine($"{format} format specifier: {value.ToString(format),16}"); + } } // The example displays the following output: // 163249057 -// +// // G format specifier: 163249057 // C format specifier: $163,249,057.00 // D format specifier: 163249057 diff --git a/snippets/csharp/System/UInt64/ToString/tostring2.cs b/snippets/csharp/System/UInt64/ToString/tostring2.cs index 9aea3c57d79..53daa1d01eb 100644 --- a/snippets/csharp/System/UInt64/ToString/tostring2.cs +++ b/snippets/csharp/System/UInt64/ToString/tostring2.cs @@ -2,28 +2,26 @@ using System; using System.Globalization; -public class Example +public class UInt64ToStringExample2 { - public static void Main() - { - // Define an array of CultureInfo objects. - CultureInfo[] ci = { new CultureInfo("en-US"), - new CultureInfo("fr-FR"), - CultureInfo.InvariantCulture }; - ulong value = 18709243; - Console.WriteLine(" {0,12} {1,12} {2,12}", - GetName(ci[0]), GetName(ci[1]), GetName(ci[2])); - Console.WriteLine(" {0,12} {1,12} {2,12}", - value.ToString(ci[0]), value.ToString(ci[1]), value.ToString(ci[2])); - } + public static void Run() + { + // Define an array of CultureInfo objects. + CultureInfo[] ci = { new CultureInfo("en-US"), + new CultureInfo("fr-FR"), + CultureInfo.InvariantCulture }; + ulong value = 18709243; + Console.WriteLine($" {GetName(ci[0]),12} {GetName(ci[1]),12} {GetName(ci[2]),12}"); + Console.WriteLine($" {value.ToString(ci[0]),12} {value.ToString(ci[1]),12} {value.ToString(ci[2]),12}"); + } - private static string GetName(CultureInfo ci) - { - if (ci.Equals(CultureInfo.InvariantCulture)) - return "Invariant"; - else - return ci.Name; - } + private static string GetName(CultureInfo ci) + { + if (ci.Equals(CultureInfo.InvariantCulture)) + return "Invariant"; + else + return ci.Name; + } } // The example displays the following output: // en-US fr-FR Invariant diff --git a/snippets/csharp/System/UInt64/ToString/tostring3.cs b/snippets/csharp/System/UInt64/ToString/tostring3.cs index ceea836f284..62fcfd81044 100644 --- a/snippets/csharp/System/UInt64/ToString/tostring3.cs +++ b/snippets/csharp/System/UInt64/ToString/tostring3.cs @@ -1,19 +1,19 @@ // using System; -using System.Globalization; -public class Example + +public class UInt64ToStringExample3 { - public static void Main() - { - ulong value = 217960834; - string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", - "N", "P", "X", "000000.0", "#.0", + public static void Run() + { + ulong value = 217960834; + string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", + "N", "P", "X", "000000.0", "#.0", "00000000;(0);**Zero**" }; - - foreach (string specifier in specifiers) - Console.WriteLine("{0}: {1}", specifier, value.ToString(specifier)); - } + + foreach (string specifier in specifiers) + Console.WriteLine($"{specifier}: {value.ToString(specifier)}"); + } } // The example displays the following output: // G: 217960834 diff --git a/snippets/csharp/System/UInt64/ToString/tostring4.cs b/snippets/csharp/System/UInt64/ToString/tostring4.cs index 2de875b7f2f..c625d786229 100644 --- a/snippets/csharp/System/UInt64/ToString/tostring4.cs +++ b/snippets/csharp/System/UInt64/ToString/tostring4.cs @@ -2,26 +2,24 @@ using System; using System.Globalization; -public class Example +public class UInt64ToStringExample4 { - public static void Main() - { - // Define cultures whose formatting conventions are to be used. - CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), + public static void Run() + { + // Define cultures whose formatting conventions are to be used. + CultureInfo[] cultures = { CultureInfo.CreateSpecificCulture("en-US"), CultureInfo.CreateSpecificCulture("fr-FR"), CultureInfo.CreateSpecificCulture("es-ES") }; - string[] specifiers = {"G", "C", "D4", "E2", "F", "N", "P", "X2"}; - ulong value = 22224021; + string[] specifiers = { "G", "C", "D4", "E2", "F", "N", "P", "X2" }; + ulong value = 22224021; - foreach (string specifier in specifiers) - { - foreach (CultureInfo culture in cultures) - Console.WriteLine("{0,2} format using {1} culture: {2, 18}", - specifier, culture.Name, - value.ToString(specifier, culture)); - Console.WriteLine(); - } - } + foreach (string specifier in specifiers) + { + foreach (CultureInfo culture in cultures) + Console.WriteLine($"{specifier,2} format using {culture.Name} culture: {value.ToString(specifier, culture),18}"); + Console.WriteLine(); + } + } } // The example displays the following output: // G format using en-US culture: 22224021 diff --git a/snippets/csharp/System/UInt64/TryParse/Program.cs b/snippets/csharp/System/UInt64/TryParse/Program.cs new file mode 100644 index 00000000000..afaba9c2d4b --- /dev/null +++ b/snippets/csharp/System/UInt64/TryParse/Program.cs @@ -0,0 +1,2 @@ +UInt64TryParseExample1.Run(); +UInt64TryParseExample2.Run(); diff --git a/snippets/csharp/System/UInt64/TryParse/Project.csproj b/snippets/csharp/System/UInt64/TryParse/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UInt64/TryParse/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UInt64/TryParse/tryparse1.cs b/snippets/csharp/System/UInt64/TryParse/tryparse1.cs index a50c2947877..3225f876e7c 100644 --- a/snippets/csharp/System/UInt64/TryParse/tryparse1.cs +++ b/snippets/csharp/System/UInt64/TryParse/tryparse1.cs @@ -1,35 +1,35 @@ using System; -public class Example +public class UInt64TryParseExample1 { - public static void Main() - { - // - string[] numericStrings = { "1293.8", "+1671.7", "28347.", - " 33113684 ", "(0)", "-0", "+1293617", - "18-", "119870", "31,024", " 3127094 ", + public static void Run() + { + // + string[] numericStrings = { "1293.8", "+1671.7", "28347.", + " 33113684 ", "(0)", "-0", "+1293617", + "18-", "119870", "31,024", " 3127094 ", "00700000" }; - ulong number; - foreach (string numericString in numericStrings) - { - if (UInt64.TryParse(numericString, out number)) - Console.WriteLine("Converted '{0}' to {1}.", numericString, number); - else - Console.WriteLine("Cannot convert '{0}' to a UInt64.", numericString); - } - // The example displays the following output: - // Cannot convert '1293.8' to a UInt64. - // Cannot convert '+1671.7' to a UInt64. - // Cannot convert '28347.' to a UInt64. - // Converted ' 33113684 ' to 33113684. - // Cannot convert '(0)' to a UInt64. - // Converted '-0' to 0. - // Converted '+1293617' to 1293617. - // Cannot convert '18-' to a UInt64. - // Converted '119870' to 119870. - // Cannot convert '31,024' to a UInt64. - // Converted ' 3127094 ' to 3127094. - // Converted '0070000' to 70000. - // - } + ulong number; + foreach (string numericString in numericStrings) + { + if (ulong.TryParse(numericString, out number)) + Console.WriteLine($"Converted '{numericString}' to {number}."); + else + Console.WriteLine($"Cannot convert '{numericString}' to a UInt64."); + } + // The example displays the following output: + // Cannot convert '1293.8' to a UInt64. + // Cannot convert '+1671.7' to a UInt64. + // Cannot convert '28347.' to a UInt64. + // Converted ' 33113684 ' to 33113684. + // Cannot convert '(0)' to a UInt64. + // Converted '-0' to 0. + // Converted '+1293617' to 1293617. + // Cannot convert '18-' to a UInt64. + // Converted '119870' to 119870. + // Cannot convert '31,024' to a UInt64. + // Converted ' 3127094 ' to 3127094. + // Converted '0070000' to 70000. + // + } } diff --git a/snippets/csharp/System/UInt64/TryParse/tryparse2.cs b/snippets/csharp/System/UInt64/TryParse/tryparse2.cs index 895259d975f..0a7e8271dcd 100644 --- a/snippets/csharp/System/UInt64/TryParse/tryparse2.cs +++ b/snippets/csharp/System/UInt64/TryParse/tryparse2.cs @@ -2,56 +2,56 @@ using System; using System.Globalization; -public class Example +public class UInt64TryParseExample2 { - public static void Main() - { - string numericString; - NumberStyles styles; - - numericString = "2106034"; - styles = NumberStyles.Integer; - CallTryParse(numericString, styles); - - numericString = "-10603"; - styles = NumberStyles.None; - CallTryParse(numericString, styles); - - numericString = "29103674.00"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); - - numericString = "10345.72"; - styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; - CallTryParse(numericString, styles); + public static void Run() + { + string numericString; + NumberStyles styles; - numericString = "41792210E-01"; - styles = NumberStyles.Integer | NumberStyles.AllowExponent; - CallTryParse(numericString, styles); - - numericString = "9112E-01"; - CallTryParse(numericString, styles); - - numericString = "312E01"; - CallTryParse(numericString, styles); - - numericString = "FFC86DA1"; - CallTryParse(numericString, NumberStyles.HexNumber); - - numericString = "0x8F8C"; - CallTryParse(numericString, NumberStyles.HexNumber); - } - - private static void CallTryParse(string stringToConvert, NumberStyles styles) - { - ulong number; - bool result = UInt64.TryParse(stringToConvert, styles, - CultureInfo.InvariantCulture, out number); - if (result) - Console.WriteLine($"Converted '{stringToConvert}' to {number}."); - else - Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); - } + numericString = "2106034"; + styles = NumberStyles.Integer; + CallTryParse(numericString, styles); + + numericString = "-10603"; + styles = NumberStyles.None; + CallTryParse(numericString, styles); + + numericString = "29103674.00"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "10345.72"; + styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint; + CallTryParse(numericString, styles); + + numericString = "41792210E-01"; + styles = NumberStyles.Integer | NumberStyles.AllowExponent; + CallTryParse(numericString, styles); + + numericString = "9112E-01"; + CallTryParse(numericString, styles); + + numericString = "312E01"; + CallTryParse(numericString, styles); + + numericString = "FFC86DA1"; + CallTryParse(numericString, NumberStyles.HexNumber); + + numericString = "0x8F8C"; + CallTryParse(numericString, NumberStyles.HexNumber); + } + + private static void CallTryParse(string stringToConvert, NumberStyles styles) + { + ulong number; + bool result = ulong.TryParse(stringToConvert, styles, + CultureInfo.InvariantCulture, out number); + if (result) + Console.WriteLine($"Converted '{stringToConvert}' to {number}."); + else + Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed."); + } } // The example displays the following output: // Converted '2106034' to 2106034. diff --git a/snippets/csharp/System/UIntPtr/Add/add1.cs b/snippets/csharp/System/UIntPtr/Add/add1.cs index dc0af559267..141d744bd1b 100644 --- a/snippets/csharp/System/UIntPtr/Add/add1.cs +++ b/snippets/csharp/System/UIntPtr/Add/add1.cs @@ -3,17 +3,17 @@ public class Example { - public static void Main() - { - int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - UIntPtr ptr = (UIntPtr) arr[0]; - for (int ctr = 0; ctr < arr.Length; ctr++) - { - UIntPtr newPtr = UIntPtr.Add(ptr, ctr); - Console.Write("{0} ", newPtr); - } - } + public static void Main() + { + int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; + UIntPtr ptr = (UIntPtr)arr[0]; + for (int ctr = 0; ctr < arr.Length; ctr++) + { + UIntPtr newPtr = UIntPtr.Add(ptr, ctr); + Console.Write($"{newPtr} "); + } + } } // The example displays the following output: // 1 2 3 4 5 6 7 8 9 10 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/UIntPtr/Subtract/subtract1.cs b/snippets/csharp/System/UIntPtr/Subtract/subtract1.cs index 30d39b365d2..2811102f504 100644 --- a/snippets/csharp/System/UIntPtr/Subtract/subtract1.cs +++ b/snippets/csharp/System/UIntPtr/Subtract/subtract1.cs @@ -3,17 +3,17 @@ public class Example { - public static void Main() - { - int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; - UIntPtr ptr = (UIntPtr) arr[arr.GetUpperBound(0)]; - for (int ctr = 0; ctr <= arr.GetUpperBound(0); ctr++) - { - UIntPtr newPtr = UIntPtr.Subtract(ptr, ctr); - Console.Write("{0} ", newPtr); - } - } + public static void Main() + { + int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; + UIntPtr ptr = (UIntPtr)arr[arr.GetUpperBound(0)]; + for (int ctr = 0; ctr <= arr.GetUpperBound(0); ctr++) + { + UIntPtr newPtr = UIntPtr.Subtract(ptr, ctr); + Console.Write($"{newPtr} "); + } + } } // The example displays the following output: // 10 9 8 7 6 5 4 3 2 1 -// \ No newline at end of file +// diff --git a/snippets/csharp/System/UIntPtr/op_Addition/Program.cs b/snippets/csharp/System/UIntPtr/op_Addition/Program.cs new file mode 100644 index 00000000000..5114f22057c --- /dev/null +++ b/snippets/csharp/System/UIntPtr/op_Addition/Program.cs @@ -0,0 +1,2 @@ +UIntPtrAdditionExample.Run(); +UIntPtrSubtractionExample.Run(); diff --git a/snippets/csharp/System/UIntPtr/op_Addition/Project.csproj b/snippets/csharp/System/UIntPtr/op_Addition/Project.csproj new file mode 100644 index 00000000000..a15a29bf12c --- /dev/null +++ b/snippets/csharp/System/UIntPtr/op_Addition/Project.csproj @@ -0,0 +1,8 @@ + + + + Exe + net10.0 + + + diff --git a/snippets/csharp/System/UIntPtr/op_Addition/op_addition1.cs b/snippets/csharp/System/UIntPtr/op_Addition/op_addition1.cs index 8d5ff254ac6..50714f4911b 100644 --- a/snippets/csharp/System/UIntPtr/op_Addition/op_addition1.cs +++ b/snippets/csharp/System/UIntPtr/op_Addition/op_addition1.cs @@ -1,17 +1,17 @@ using System; -public class Example +public class UIntPtrAdditionExample { - public static void Main() - { - // - int[] arr = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - UIntPtr ptr = (UIntPtr) arr[0]; - for (int ctr = 0; ctr < arr.Length; ctr++) - { - UIntPtr newPtr = ptr + ctr; - Console.WriteLine(newPtr); - } - // - } + public static void Run() + { + // + int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; + UIntPtr ptr = (UIntPtr)arr[0]; + for (int ctr = 0; ctr < arr.Length; ctr++) + { + UIntPtr newPtr = ptr + (nuint)ctr; + Console.WriteLine(newPtr); + } + // + } } diff --git a/snippets/csharp/System/UIntPtr/op_Addition/op_subtraction1.cs b/snippets/csharp/System/UIntPtr/op_Addition/op_subtraction1.cs index 22a4c7a5adf..3bfd2eadd0d 100644 --- a/snippets/csharp/System/UIntPtr/op_Addition/op_subtraction1.cs +++ b/snippets/csharp/System/UIntPtr/op_Addition/op_subtraction1.cs @@ -1,17 +1,17 @@ using System; -public class Example +public class UIntPtrSubtractionExample { - public static void Main() - { - // - int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; - UIntPtr ptr = (UIntPtr) arr[arr.GetUpperBound(0)]; - for (int ctr = 0; ctr <= arr.GetUpperBound(0); ctr++) - { - UIntPtr newPtr = ptr - ctr; - Console.Write("{0} ", newPtr); - } - // - } + public static void Run() + { + // + int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; + UIntPtr ptr = (UIntPtr)arr[arr.GetUpperBound(0)]; + for (int ctr = 0; ctr <= arr.GetUpperBound(0); ctr++) + { + UIntPtr newPtr = ptr - (nuint)ctr; + Console.Write($"{newPtr} "); + } + // + } } diff --git a/snippets/csharp/System/UnauthorizedAccessException/Overview/withio.cs b/snippets/csharp/System/UnauthorizedAccessException/Overview/withio.cs index 4b5b6eca616..8f2e06f9164 100644 --- a/snippets/csharp/System/UnauthorizedAccessException/Overview/withio.cs +++ b/snippets/csharp/System/UnauthorizedAccessException/Overview/withio.cs @@ -4,30 +4,34 @@ public class Example { - public static void Main() - { - string filePath = @".\ROFile.txt"; - if (!File.Exists(filePath)) - File.Create(filePath); - // Keep existing attributes, and set ReadOnly attribute. - File.SetAttributes(filePath, - (new FileInfo(filePath)).Attributes | FileAttributes.ReadOnly); + public static void Main() + { + string filePath = @".\ROFile.txt"; + if (!File.Exists(filePath)) + File.Create(filePath).Dispose(); - StreamWriter sw = null; - try { - sw = new StreamWriter(filePath); - sw.Write("Test"); - } - catch (UnauthorizedAccessException) { - FileAttributes attr = (new FileInfo(filePath)).Attributes; - Console.Write("UnAuthorizedAccessException: Unable to access file. "); - if ((attr & FileAttributes.ReadOnly) > 0) - Console.Write("The file is read-only."); - } - finally { - if (sw != null) sw.Close(); - } - } + // Keep existing attributes, and set ReadOnly attribute. + File.SetAttributes(filePath, + (new FileInfo(filePath)).Attributes | FileAttributes.ReadOnly); + + StreamWriter sw = null; + try + { + sw = new(filePath); + sw.Write("Test"); + } + catch (UnauthorizedAccessException) + { + FileAttributes attr = (new FileInfo(filePath)).Attributes; + Console.Write("UnAuthorizedAccessException: Unable to access file. "); + if ((attr & FileAttributes.ReadOnly) > 0) + Console.Write("The file is read-only."); + } + finally + { + if (sw != null) sw.Close(); + } + } } // The example displays the following output: // UnAuthorizedAccessException: Unable to access file. The file is read-only. diff --git a/snippets/csharp/System/Uri/.ctor/Project.csproj b/snippets/csharp/System/Uri/.ctor/Project.csproj new file mode 100644 index 00000000000..4a6d98d26b7 --- /dev/null +++ b/snippets/csharp/System/Uri/.ctor/Project.csproj @@ -0,0 +1,9 @@ + + + + Exe + net10.0-windows + true + + + diff --git a/snippets/csharp/System/Uri/.ctor/nclurienhancements.cs b/snippets/csharp/System/Uri/.ctor/nclurienhancements.cs index a11001351b8..0b99914c193 100644 --- a/snippets/csharp/System/Uri/.ctor/nclurienhancements.cs +++ b/snippets/csharp/System/Uri/.ctor/nclurienhancements.cs @@ -1,7 +1,7 @@ using System; -using System.Net; -using System.Text; -using System.Threading; + + + namespace Example { @@ -36,19 +36,23 @@ private static void SampleTryCreate() string addressString = "catalog/shownew.htm?date=today"; // Parse the string and create a new Uri instance, if possible. Uri result = null; - if (Uri.TryCreate(addressString, UriKind.RelativeOrAbsolute, out result)) { + if (Uri.TryCreate(addressString, UriKind.RelativeOrAbsolute, out result)) + { // The call was successful. Write the URI address to the console. Console.Write(result.ToString()); // Check whether new Uri instance is absolute or relative. - if (result.IsAbsoluteUri) { + if (result.IsAbsoluteUri) + { Console.WriteLine(" is an absolute Uri."); } - else { + else + { Console.WriteLine(" is a relative Uri."); } } - else { - // Let the user know that the call failed. + else + { + // Let the user know that the call failed. Console.WriteLine("addressString could not be parsed as a URI " + "address."); } @@ -60,18 +64,18 @@ private static void SampleConstructor() { // // Create an absolute Uri from a string. - Uri absoluteUri = new Uri("http://www.contoso.com/"); + Uri absoluteUri = new("http://www.contoso.com/"); // Create a relative Uri from a string. allowRelative = true to allow for // creating a relative Uri. - Uri relativeUri = new Uri("/catalog/shownew.htm?date=today", UriKind.Relative); + Uri relativeUri = new("/catalog/shownew.htm?date=today", UriKind.Relative); // Check whether the new Uri is absolute or relative. if (!relativeUri.IsAbsoluteUri) - Console.WriteLine("{0} is a relative Uri.", relativeUri); + Console.WriteLine($"{relativeUri} is a relative Uri."); // Create a new Uri from an absolute Uri and a relative Uri. - Uri combinedUri = new Uri(absoluteUri, relativeUri); + Uri combinedUri = new(absoluteUri, relativeUri); Console.WriteLine(combinedUri.AbsoluteUri); // } @@ -81,7 +85,7 @@ private static void SampleOriginalString() { // // Create a new Uri from a string address. - Uri uriAddress = new Uri("HTTP://www.ConToso.com:80//thick%20and%20thin.htm"); + Uri uriAddress = new("HTTP://www.ConToso.com:80//thick%20and%20thin.htm"); // Write the new Uri to the console and note the difference in the two values. // ToString() gives the canonical version. OriginalString gives the original @@ -100,7 +104,7 @@ private static void SampleDNSSafeHost() { // // Create new Uri using a string address. - Uri address = new Uri("http://[fe80::200:39ff:fe36:1a2d%254]/temp/example.htm"); + Uri address = new("http://[fe80::200:39ff:fe36:1a2d%254]/temp/example.htm"); // Make the address DNS safe. @@ -117,17 +121,17 @@ private static void SampleOperatorEqual() { // // Create some Uris. - Uri address1 = new Uri("http://www.contoso.com/index.htm#search"); - Uri address2 = new Uri("http://www.contoso.com/index.htm"); - Uri address3 = new Uri("http://www.contoso.com/index.htm?date=today"); + Uri address1 = new("http://www.contoso.com/index.htm#search"); + Uri address2 = new("http://www.contoso.com/index.htm"); + Uri address3 = new("http://www.contoso.com/index.htm?date=today"); // The first two are equal because the fragment is ignored. if (address1 == address2) - Console.WriteLine("{0} is equal to {1}", address1.ToString(), address2.ToString()); + Console.WriteLine($"{address1.ToString()} is equal to {address2.ToString()}"); // The second two are not equal. if (address2 != address3) - Console.WriteLine("{0} is not equal to {1}", address2.ToString(), address3.ToString()); + Console.WriteLine($"{address2.ToString()} is not equal to {address3.ToString()}"); // } @@ -136,14 +140,14 @@ private static void SampleIsBaseOf() { // // Create a base Uri. - Uri baseUri = new Uri("http://www.contoso.com/"); + Uri baseUri = new("http://www.contoso.com/"); // Create a new Uri from a string. - Uri uriAddress = new Uri("http://www.contoso.com/index.htm?date=today"); + Uri uriAddress = new("http://www.contoso.com/index.htm?date=today"); // Determine whether BaseUri is a base of UriAddress. if (baseUri.IsBaseOf(uriAddress)) - Console.WriteLine("{0} is the base of {1}", baseUri, uriAddress); + Console.WriteLine($"{baseUri} is the base of {uriAddress}"); // } } diff --git a/snippets/csharp/System/Uri/.ctor/source.cs b/snippets/csharp/System/Uri/.ctor/source.cs index 5e9260532e0..1bcfd2903c8 100644 --- a/snippets/csharp/System/Uri/.ctor/source.cs +++ b/snippets/csharp/System/Uri/.ctor/source.cs @@ -1,15 +1,13 @@ using System; -using System.Data; -using System.Security.Principal; using System.Windows.Forms; -public class Form1: Form +public class UriConstructorForm1 : Form { - protected void Method() - { -// -Uri myUri = new Uri("http://www.contoso.com/"); + protected void Method() + { + // + Uri myUri = new("http://www.contoso.com/"); -// - } + // + } } diff --git a/snippets/csharp/System/Uri/.ctor/source2.cs b/snippets/csharp/System/Uri/.ctor/source2.cs index 32d5bcda07c..1ea7c279ce7 100644 --- a/snippets/csharp/System/Uri/.ctor/source2.cs +++ b/snippets/csharp/System/Uri/.ctor/source2.cs @@ -1,19 +1,16 @@ using System; -using System.Data; -using System.Security.Principal; -using System.IO; using System.Windows.Forms; -public class Form1: Form +public class UriConstructorForm2 : Form { - protected void Method() - { -// -Uri baseUri = new Uri("http://www.contoso.com"); - Uri myUri = new Uri(baseUri, "catalog/shownew.htm"); + protected void Method() + { + // + Uri baseUri = new("http://www.contoso.com"); + Uri myUri = new(baseUri, "catalog/shownew.htm"); -Console.WriteLine(myUri.ToString()); + Console.WriteLine(myUri.ToString()); -// - } + // + } } diff --git a/snippets/csharp/System/Uri/AbsolutePath/source.cs b/snippets/csharp/System/Uri/AbsolutePath/source.cs index 9faa6f489aa..828ce4cca8f 100644 --- a/snippets/csharp/System/Uri/AbsolutePath/source.cs +++ b/snippets/csharp/System/Uri/AbsolutePath/source.cs @@ -1,6 +1,6 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 @@ -8,11 +8,11 @@ public class Form1 protected void Method() { // - Uri baseUri = new Uri("http://www.contoso.com/"); - Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com/"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.AbsolutePath); // } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Uri/AbsoluteUri/source.cs b/snippets/csharp/System/Uri/AbsoluteUri/source.cs index 280a9a037a9..10b68dec3d2 100644 --- a/snippets/csharp/System/Uri/AbsoluteUri/source.cs +++ b/snippets/csharp/System/Uri/AbsoluteUri/source.cs @@ -1,6 +1,6 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 @@ -8,9 +8,9 @@ public class Form1 protected void Method() { // - Uri baseUri= new Uri("http://www.contoso.com"); - Uri myUri = new Uri(baseUri,"catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.AbsoluteUri); // } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Uri/Authority/source.cs b/snippets/csharp/System/Uri/Authority/source.cs index 6ea24db8682..77a296ced25 100644 --- a/snippets/csharp/System/Uri/Authority/source.cs +++ b/snippets/csharp/System/Uri/Authority/source.cs @@ -1,18 +1,18 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 { - protected void Method() - { -// - Uri baseUri = new Uri("http://www.contoso.com:8080/"); - Uri myUri = new Uri(baseUri,"shownew.htm?date=today"); + protected void Method() + { + // + Uri baseUri = new("http://www.contoso.com:8080/"); + Uri myUri = new(baseUri, "shownew.htm?date=today"); - Console.WriteLine(myUri.Authority); + Console.WriteLine(myUri.Authority); -// - } + // + } } diff --git a/snippets/csharp/System/Uri/CheckHostName/source.cs b/snippets/csharp/System/Uri/CheckHostName/source.cs index 837e5c6c6b1..73d988bfc0c 100644 --- a/snippets/csharp/System/Uri/CheckHostName/source.cs +++ b/snippets/csharp/System/Uri/CheckHostName/source.cs @@ -1,15 +1,15 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 { - protected void Method() - { -// -Console.WriteLine(Uri.CheckHostName("www.contoso.com")); + protected void Method() + { + // + Console.WriteLine(Uri.CheckHostName("www.contoso.com")); -// - } + // + } } diff --git a/snippets/csharp/System/Uri/CheckSchemeName/uriexamples.cs b/snippets/csharp/System/Uri/CheckSchemeName/uriexamples.cs index 05f60b1cd08..64e398d601a 100644 --- a/snippets/csharp/System/Uri/CheckSchemeName/uriexamples.cs +++ b/snippets/csharp/System/Uri/CheckSchemeName/uriexamples.cs @@ -1,8 +1,8 @@ using System; -using System.Net; -using System.Text; -using System.Threading; -using System.Runtime.Serialization; + + + + namespace Example { @@ -38,9 +38,9 @@ public static void Main() private static void SampleToString() { - // + // // Create a new Uri from a string address. - Uri uriAddress = new Uri("HTTP://www.Contoso.com:80/thick%20and%20thin.htm"); + Uri uriAddress = new("HTTP://www.Contoso.com:80/thick%20and%20thin.htm"); // Write the new Uri to the console and note the difference in the two values. // ToString() gives the canonical version. OriginalString gives the orginal @@ -51,190 +51,189 @@ private static void SampleToString() // The following outputs "HTTP://www.Contoso.com:80/thick%20and%20thin.htm". Console.WriteLine(uriAddress.OriginalString); - // + // } private static void SampleEquals() { - // + // // Create some Uris. - Uri address1 = new Uri("http://www.contoso.com/index.htm#search"); - Uri address2 = new Uri("http://www.contoso.com/index.htm"); + Uri address1 = new("http://www.contoso.com/index.htm#search"); + Uri address2 = new("http://www.contoso.com/index.htm"); if (address1.Equals(address2)) Console.WriteLine("The two addresses are equal"); else Console.WriteLine("The two addresses are not equal"); // Will output "The two addresses are equal" - // + // } private static void GetParts() { - // + // // Create Uri - Uri uriAddress = new Uri("http://www.contoso.com/index.htm#search"); + Uri uriAddress = new("http://www.contoso.com/index.htm#search"); Console.WriteLine(uriAddress.Fragment); - Console.WriteLine("Uri {0} the default port ", uriAddress.IsDefaultPort ? "uses" : "does not use"); + Console.WriteLine($"Uri {(uriAddress.IsDefaultPort ? "uses" : "does not use")} the default port "); - Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path)); - Console.WriteLine("Hash code {0}", uriAddress.GetHashCode()); + Console.WriteLine($"The path of this Uri is {uriAddress.GetLeftPart(UriPartial.Path)}"); + Console.WriteLine($"Hash code {uriAddress.GetHashCode()}"); // The example displays output similar to the following: // #search // Uri uses the default port // The path of this Uri is http://www.contoso.com/index.htm // Hash code -988419291 - // - // - Uri uriAddress1 = new Uri("http://www.contoso.com/title/index.htm"); - Console.WriteLine("The parts are {0}, {1}, {2}", uriAddress1.Segments[0], uriAddress1.Segments[1], uriAddress1.Segments[2]); - // - - // - Uri uriAddress2 = new Uri("file://server/filename.ext"); + // + // + Uri uriAddress1 = new("http://www.contoso.com/title/index.htm"); + Console.WriteLine($"The parts are {uriAddress1.Segments[0]}, {uriAddress1.Segments[1]}, {uriAddress1.Segments[2]}"); + // + + // + Uri uriAddress2 = new("file://server/filename.ext"); Console.WriteLine(uriAddress2.LocalPath); - Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not"); - Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not"); - Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not"); + Console.WriteLine($"Uri {(uriAddress2.IsUnc ? "is" : "is not")} a UNC path"); + Console.WriteLine($"Uri {(uriAddress2.IsLoopback ? "is" : "is not")} a local host"); + Console.WriteLine($"Uri {(uriAddress2.IsFile ? "is" : "is not")} a file"); // The example displays the following output: // \\server\filename.ext // Uri is a UNC path // Uri is not a local host // Uri is a file - // + // } private static void HexConversions() { - // - char testChar = 'e'; + // + char testChar = 'e'; if (Uri.IsHexDigit(testChar)) - Console.WriteLine("'{0}' is the hexadecimal representation of {1}", testChar, Uri.FromHex(testChar)); + Console.WriteLine($"'{testChar}' is the hexadecimal representation of {Uri.FromHex(testChar)}"); else - Console.WriteLine("'{0}' is not a hexadecimal character", testChar); + Console.WriteLine($"'{testChar}' is not a hexadecimal character"); string returnString = Uri.HexEscape(testChar); - Console.WriteLine("The hexadecimal value of '{0}' is {1}", testChar, returnString); - // + Console.WriteLine($"The hexadecimal value of '{testChar}' is {returnString}"); + // - // + // string testString = "%75"; int index = 0; if (Uri.IsHexEncoding(testString, index)) - Console.WriteLine("The character is {0}", Uri.HexUnescape(testString, ref index)); + Console.WriteLine($"The character is {Uri.HexUnescape(testString, ref index)}"); else - Console.WriteLine("The character is not hexadecimal encoded"); - // + Console.WriteLine("The character is not hexadecimal encoded"); + // } // MakeRelative private static void SampleMakeRelative() { - // + // // Create a base Uri. - Uri address1 = new Uri("http://www.contoso.com/"); + Uri address1 = new("http://www.contoso.com/"); // Create a new Uri from a string. - Uri address2 = new Uri("http://www.contoso.com/index.htm?date=today"); + Uri address2 = new("http://www.contoso.com/index.htm?date=today"); // Determine the relative Uri. - Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2)); - // + Console.WriteLine($"The difference is {address1.MakeRelativeUri(address2)}"); + // } //CheckSchemeName private static void SampleCheckSchemeName() { - // - Uri address1 = new Uri("http://www.contoso.com/index.htm#search"); - Console.WriteLine("address 1 {0} a valid scheme name", - Uri.CheckSchemeName(address1.Scheme) ? " has" : " does not have"); + // + Uri address1 = new("http://www.contoso.com/index.htm#search"); + Console.WriteLine($"address 1 {(Uri.CheckSchemeName(address1.Scheme) ? " has" : " does not have")} a valid scheme name"); if (address1.Scheme == Uri.UriSchemeHttp) Console.WriteLine("Uri is HTTP type"); Console.WriteLine(address1.HostNameType); - // + // - // - Uri address2 = new Uri("file://server/filename.ext"); + // + Uri address2 = new("file://server/filename.ext"); if (address2.Scheme == Uri.UriSchemeFile) Console.WriteLine("Uri is a file"); - // + // Console.WriteLine(address2.HostNameType); - // - Uri address3 = new Uri("mailto:user@contoso.com?subject=uri"); + // + Uri address3 = new("mailto:user@contoso.com?subject=uri"); if (address3.Scheme == Uri.UriSchemeMailto) Console.WriteLine("Uri is an email address"); - // + // - // - Uri address4 = new Uri("news:123456@contoso.com"); + // + Uri address4 = new("news:123456@contoso.com"); if (address4.Scheme == Uri.UriSchemeNews) Console.WriteLine("Uri is an Internet news group"); - // + // - // - Uri address5 = new Uri("nntp://news.contoso.com/123456@contoso.com"); + // + Uri address5 = new("nntp://news.contoso.com/123456@contoso.com"); if (address5.Scheme == Uri.UriSchemeNntp) Console.WriteLine("Uri is nntp protocol"); - // + // - // - Uri address6 = new Uri("gopher://example.contoso.com/"); + // + Uri address6 = new("gopher://example.contoso.com/"); if (address6.Scheme == Uri.UriSchemeGopher) Console.WriteLine("Uri is Gopher protocol"); - // + // - // - Uri address7 = new Uri("ftp://contoso/files/testfile.txt"); + // + Uri address7 = new("ftp://contoso/files/testfile.txt"); if (address7.Scheme == Uri.UriSchemeFtp) Console.WriteLine("Uri is Ftp protocol"); - // + // - // - Uri address8 = new Uri("https://example.contoso.com"); + // + Uri address8 = new("https://example.contoso.com"); if (address8.Scheme == Uri.UriSchemeHttps) Console.WriteLine("Uri is Https protocol."); - // + // - // + // string address = "www.contoso.com"; - string uriString = String.Format("{0}{1}{2}/", Uri.UriSchemeHttp, Uri.SchemeDelimiter, address); - #if OLDMETHOD + string uriString = $"{Uri.UriSchemeHttp}{Uri.SchemeDelimiter}{address}/"; +#if OLDMETHOD Uri result; if (Uri.TryParse(uriString, false, false, out result)) Console.WriteLine("{0} is a valid Uri", result.ToString()); else Console.WriteLine("Uri not created"); #endif - Uri result = new Uri(uriString); + Uri result = new(uriString); if (result.IsWellFormedOriginalString()) - Console.WriteLine("{0} is a well formed Uri", uriString); + Console.WriteLine($"{uriString} is a well formed Uri"); else - Console.WriteLine("{0} is not a well formed Uri", uriString); - // + Console.WriteLine($"{uriString} is not a well formed Uri"); + // } private static void SampleUserInfo() { - // - Uri uriAddress = new Uri ("http://user:password@www.contoso.com/index.htm "); + // + Uri uriAddress = new("http://user:password@www.contoso.com/index.htm "); Console.WriteLine(uriAddress.UserInfo); - Console.WriteLine("Fully Escaped {0}", uriAddress.UserEscaped ? "yes" : "no"); - // + Console.WriteLine($"Fully Escaped {(uriAddress.UserEscaped ? "yes" : "no")}"); + // } private static void UnescapeUriWithPlusConversion() { - // - String DataString = Uri.UnescapeDataString(".NET+Framework"); - Console.WriteLine("Unescaped string: {0}", DataString); + // + string DataString = Uri.UnescapeDataString(".NET+Framework"); + Console.WriteLine($"Unescaped string: {DataString}"); - String PlusString = DataString.Replace('+',' '); - Console.WriteLine("plus to space string: {0}", PlusString); - // + string PlusString = DataString.Replace('+', ' '); + Console.WriteLine($"plus to space string: {PlusString}"); + // } } } diff --git a/snippets/csharp/System/Uri/Host/source.cs b/snippets/csharp/System/Uri/Host/source.cs index 9b9051d84a3..ba1d4c4beeb 100644 --- a/snippets/csharp/System/Uri/Host/source.cs +++ b/snippets/csharp/System/Uri/Host/source.cs @@ -1,6 +1,6 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 @@ -8,10 +8,10 @@ public class Form1 protected void Method() { // - Uri baseUri = new Uri("http://www.contoso.com:8080/"); - Uri myUri = new Uri(baseUri, "shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com:8080/"); + Uri myUri = new(baseUri, "shownew.htm?date=today"); Console.WriteLine(myUri.Host); // } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Uri/HostComparison/source.cs b/snippets/csharp/System/Uri/HostComparison/source.cs index c8ebf4678ec..90e74411d51 100644 --- a/snippets/csharp/System/Uri/HostComparison/source.cs +++ b/snippets/csharp/System/Uri/HostComparison/source.cs @@ -1,4 +1,4 @@ -using System; +using System; public class UriHostComparison { @@ -9,7 +9,7 @@ public static void Main() // Example 1: Regular hostname (ASCII). Console.WriteLine("Example 1: Regular ASCII hostname"); - Uri uri1 = new Uri("http://www.contoso.com:8080/path"); + Uri uri1 = new("http://www.contoso.com:8080/path"); Console.WriteLine($" Host: {uri1.Host}"); // www.contoso.com Console.WriteLine($" IdnHost: {uri1.IdnHost}"); // www.contoso.com Console.WriteLine($" DnsSafeHost: {uri1.DnsSafeHost}"); // www.contoso.com @@ -17,7 +17,7 @@ public static void Main() // Example 2: International domain name (non-ASCII). Console.WriteLine("Example 2: International domain name"); - Uri uri2 = new Uri("http://münchen.de/path"); + Uri uri2 = new("http://münchen.de/path"); Console.WriteLine($" Host: {uri2.Host}"); // münchen.de (original) Console.WriteLine($" IdnHost: {uri2.IdnHost}"); // xn--mnchen-3ya.de (punycode) Console.WriteLine($" DnsSafeHost: {uri2.DnsSafeHost}"); // münchen.de or xn--mnchen-3ya.de, depending on configuration. @@ -25,7 +25,7 @@ public static void Main() // Example 3: International domain name already in punycode (encoded) form. Console.WriteLine("Example 3: Already-encoded international domain name"); - Uri uri2Encoded = new Uri("http://xn--mnchen-3ya.de/path"); + Uri uri2Encoded = new("http://xn--mnchen-3ya.de/path"); Console.WriteLine($" Host: {uri2Encoded.Host}"); // xn--mnchen-3ya.de (as provided) Console.WriteLine($" IdnHost: {uri2Encoded.IdnHost}"); // xn--mnchen-3ya.de (already punycode) Console.WriteLine($" DnsSafeHost: {uri2Encoded.DnsSafeHost}"); // xn--mnchen-3ya.de @@ -33,7 +33,7 @@ public static void Main() // Example 4: IPv6 address without zone ID. Console.WriteLine("Example 4: IPv6 address without zone ID"); - Uri uri3 = new Uri("http://[::1]:8080/path"); + Uri uri3 = new("http://[::1]:8080/path"); Console.WriteLine($" Host: {uri3.Host}"); // [::1] (with brackets) Console.WriteLine($" IdnHost: {uri3.IdnHost}"); // ::1 (without brackets) Console.WriteLine($" DnsSafeHost: {uri3.DnsSafeHost}"); // ::1 (without brackets) @@ -41,7 +41,7 @@ public static void Main() // Example 5: IPv6 link-local address with zone ID. Console.WriteLine("Example 5: IPv6 link-local address with zone ID"); - Uri uri4 = new Uri("http://[fe80::1%10]:8080/path"); + Uri uri4 = new("http://[fe80::1%10]:8080/path"); Console.WriteLine($" Host: {uri4.Host}"); // [fe80::1] (with brackets, no zone ID) Console.WriteLine($" IdnHost: {uri4.IdnHost}"); // fe80::1%10 (without brackets, with zone ID) Console.WriteLine($" DnsSafeHost: {uri4.DnsSafeHost}"); // fe80::1%10 (without brackets, with zone ID) @@ -49,7 +49,7 @@ public static void Main() // Example 6: IPv4 address. Console.WriteLine("Example 6: IPv4 address"); - Uri uri5 = new Uri("http://192.168.1.1:8080/path"); + Uri uri5 = new("http://192.168.1.1:8080/path"); Console.WriteLine($" Host: {uri5.Host}"); // 192.168.1.1 Console.WriteLine($" IdnHost: {uri5.IdnHost}"); // 192.168.1.1 Console.WriteLine($" DnsSafeHost: {uri5.DnsSafeHost}"); // 192.168.1.1 diff --git a/snippets/csharp/System/Uri/Overview/source.cs b/snippets/csharp/System/Uri/Overview/source.cs index cdcd2d216b8..e91b21816db 100644 --- a/snippets/csharp/System/Uri/Overview/source.cs +++ b/snippets/csharp/System/Uri/Overview/source.cs @@ -1,69 +1,67 @@ -using System; -using System.Net; +using System; using System.Net.Http; - public class Form1 { - protected void Method() - { - // - Uri siteUri = new Uri("http://www.contoso.com/"); + protected void Method() + { + // + Uri siteUri = new("http://www.contoso.com/"); + + // HttpClient lifecycle management best practices: + // https://learn.microsoft.com/dotnet/fundamentals/networking/http/httpclient-guidelines#recommended-use + using HttpClient client = new(); + using HttpRequestMessage request = new(HttpMethod.Get, siteUri); + using HttpResponseMessage response = client.Send(request); + // + + // + Uri uri = new("https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName"); + + Console.WriteLine($"AbsolutePath: {uri.AbsolutePath}"); + Console.WriteLine($"AbsoluteUri: {uri.AbsoluteUri}"); + Console.WriteLine($"DnsSafeHost: {uri.DnsSafeHost}"); + Console.WriteLine($"Fragment: {uri.Fragment}"); + Console.WriteLine($"Host: {uri.Host}"); + Console.WriteLine($"HostNameType: {uri.HostNameType}"); + Console.WriteLine($"IdnHost: {uri.IdnHost}"); + Console.WriteLine($"IsAbsoluteUri: {uri.IsAbsoluteUri}"); + Console.WriteLine($"IsDefaultPort: {uri.IsDefaultPort}"); + Console.WriteLine($"IsFile: {uri.IsFile}"); + Console.WriteLine($"IsLoopback: {uri.IsLoopback}"); + Console.WriteLine($"IsUnc: {uri.IsUnc}"); + Console.WriteLine($"LocalPath: {uri.LocalPath}"); + Console.WriteLine($"OriginalString: {uri.OriginalString}"); + Console.WriteLine($"PathAndQuery: {uri.PathAndQuery}"); + Console.WriteLine($"Port: {uri.Port}"); + Console.WriteLine($"Query: {uri.Query}"); + Console.WriteLine($"Scheme: {uri.Scheme}"); + Console.WriteLine($"Segments: {string.Join(", ", uri.Segments)}"); + Console.WriteLine($"UserEscaped: {uri.UserEscaped}"); + Console.WriteLine($"UserInfo: {uri.UserInfo}"); - // HttpClient lifecycle management best practices: - // https://learn.microsoft.com/dotnet/fundamentals/networking/http/httpclient-guidelines#recommended-use - HttpClient client = new HttpClient(); - HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, siteUri); - HttpResponseMessage response = client.Send(request); - // - - // - Uri uri = new Uri("https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName"); - - Console.WriteLine($"AbsolutePath: {uri.AbsolutePath}"); - Console.WriteLine($"AbsoluteUri: {uri.AbsoluteUri}"); - Console.WriteLine($"DnsSafeHost: {uri.DnsSafeHost}"); - Console.WriteLine($"Fragment: {uri.Fragment}"); - Console.WriteLine($"Host: {uri.Host}"); - Console.WriteLine($"HostNameType: {uri.HostNameType}"); - Console.WriteLine($"IdnHost: {uri.IdnHost}"); - Console.WriteLine($"IsAbsoluteUri: {uri.IsAbsoluteUri}"); - Console.WriteLine($"IsDefaultPort: {uri.IsDefaultPort}"); - Console.WriteLine($"IsFile: {uri.IsFile}"); - Console.WriteLine($"IsLoopback: {uri.IsLoopback}"); - Console.WriteLine($"IsUnc: {uri.IsUnc}"); - Console.WriteLine($"LocalPath: {uri.LocalPath}"); - Console.WriteLine($"OriginalString: {uri.OriginalString}"); - Console.WriteLine($"PathAndQuery: {uri.PathAndQuery}"); - Console.WriteLine($"Port: {uri.Port}"); - Console.WriteLine($"Query: {uri.Query}"); - Console.WriteLine($"Scheme: {uri.Scheme}"); - Console.WriteLine($"Segments: {string.Join(", ", uri.Segments)}"); - Console.WriteLine($"UserEscaped: {uri.UserEscaped}"); - Console.WriteLine($"UserInfo: {uri.UserInfo}"); - - // AbsolutePath: /Home/Index.htm - // AbsoluteUri: https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName - // DnsSafeHost: www.contoso.com - // Fragment: #FragmentName - // Host: www.contoso.com - // HostNameType: Dns - // IdnHost: www.contoso.com - // IsAbsoluteUri: True - // IsDefaultPort: False - // IsFile: False - // IsLoopback: False - // IsUnc: False - // LocalPath: /Home/Index.htm - // OriginalString: https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName - // PathAndQuery: /Home/Index.htm?q1=v1&q2=v2 - // Port: 80 - // Query: ?q1=v1&q2=v2 - // Scheme: https - // Segments: /, Home/, Index.htm - // UserEscaped: False - // UserInfo: user:password + // AbsolutePath: /Home/Index.htm + // AbsoluteUri: https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName + // DnsSafeHost: www.contoso.com + // Fragment: #FragmentName + // Host: www.contoso.com + // HostNameType: Dns + // IdnHost: www.contoso.com + // IsAbsoluteUri: True + // IsDefaultPort: False + // IsFile: False + // IsLoopback: False + // IsUnc: False + // LocalPath: /Home/Index.htm + // OriginalString: https://user:password@www.contoso.com:80/Home/Index.htm?q1=v1&q2=v2#FragmentName + // PathAndQuery: /Home/Index.htm?q1=v1&q2=v2 + // Port: 80 + // Query: ?q1=v1&q2=v2 + // Scheme: https + // Segments: /, Home/, Index.htm + // UserEscaped: False + // UserInfo: user:password - // - } + // + } } diff --git a/snippets/csharp/System/Uri/PathAndQuery/source.cs b/snippets/csharp/System/Uri/PathAndQuery/source.cs index 8337964ac6a..bdfaa3c7b6b 100644 --- a/snippets/csharp/System/Uri/PathAndQuery/source.cs +++ b/snippets/csharp/System/Uri/PathAndQuery/source.cs @@ -1,6 +1,6 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 @@ -8,8 +8,8 @@ public class Form1 protected void Method() { // - Uri baseUri = new Uri("http://www.contoso.com/"); - Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com/"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.PathAndQuery); // @@ -19,10 +19,10 @@ public void Method2() { // - Uri baseUri = new Uri ("http://www.contoso.com/"); - Uri myUri = new Uri (baseUri, "catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com/"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); - Console.WriteLine (myUri.Query); + Console.WriteLine(myUri.Query); // } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Uri/Port/source.cs b/snippets/csharp/System/Uri/Port/source.cs index 77687e3cffc..6814c27f16b 100644 --- a/snippets/csharp/System/Uri/Port/source.cs +++ b/snippets/csharp/System/Uri/Port/source.cs @@ -1,6 +1,6 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 @@ -8,11 +8,11 @@ public class Form1 protected void Method() { // - Uri baseUri = new Uri("http://www.contoso.com/"); - Uri myUri = new Uri(baseUri,"catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com/"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.Port); // } -} \ No newline at end of file +} diff --git a/snippets/csharp/System/Uri/Scheme/source.cs b/snippets/csharp/System/Uri/Scheme/source.cs index 59ca2860b89..b3b8b29ff42 100644 --- a/snippets/csharp/System/Uri/Scheme/source.cs +++ b/snippets/csharp/System/Uri/Scheme/source.cs @@ -1,14 +1,14 @@ using System; -using System.Data; -using System.Security.Principal; + + public class Form1 { protected void Method() { // - Uri baseUri = new Uri("http://www.contoso.com/"); - Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); + Uri baseUri = new("http://www.contoso.com/"); + Uri myUri = new(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.Scheme); // diff --git a/snippets/csharp/System/UriBuilder/.ctor/Project.csproj b/snippets/csharp/System/UriBuilder/.ctor/Project.csproj new file mode 100644 index 00000000000..b62ae7deede --- /dev/null +++ b/snippets/csharp/System/UriBuilder/.ctor/Project.csproj @@ -0,0 +1,9 @@ + + + + Library + net10.0-windows + true + + + diff --git a/snippets/csharp/System/UriBuilder/.ctor/source.cs b/snippets/csharp/System/UriBuilder/.ctor/source.cs index 24d8691fc4f..b4906bea741 100644 --- a/snippets/csharp/System/UriBuilder/.ctor/source.cs +++ b/snippets/csharp/System/UriBuilder/.ctor/source.cs @@ -1,15 +1,13 @@ using System; -using System.Data; -using System.Security.Principal; using System.Windows.Forms; -public class Form1: Form +public class UriBuilderConstructorForm : Form { - protected void Method() - { -// -UriBuilder myUri = new UriBuilder("http","www.contoso.com"); + protected void Method() + { + // + UriBuilder myUri = new("http", "www.contoso.com"); -// - } + // + } } diff --git a/snippets/csharp/System/UriBuilder/.ctor/source1.cs b/snippets/csharp/System/UriBuilder/.ctor/source1.cs index 311930fe00e..c1ab40bcede 100644 --- a/snippets/csharp/System/UriBuilder/.ctor/source1.cs +++ b/snippets/csharp/System/UriBuilder/.ctor/source1.cs @@ -1,15 +1,13 @@ using System; -using System.Data; -using System.Security.Principal; using System.Windows.Forms; -public class Form1: Form +public class UriBuilderConstructorForm1 : Form { - protected void Method() - { -// -UriBuilder myUri = new UriBuilder("http","www.contoso.com",8080); + protected void Method() + { + // + UriBuilder myUri = new("http", "www.contoso.com", 8080); -// - } + // + } } diff --git a/snippets/csharp/System/UriBuilder/.ctor/source2.cs b/snippets/csharp/System/UriBuilder/.ctor/source2.cs index 84b8d2283e1..8e9009a8caf 100644 --- a/snippets/csharp/System/UriBuilder/.ctor/source2.cs +++ b/snippets/csharp/System/UriBuilder/.ctor/source2.cs @@ -1,15 +1,13 @@ using System; -using System.Data; -using System.Security.Principal; using System.Windows.Forms; -public class Form1: Form +public class UriBuilderConstructorForm2 : Form { - protected void Method() - { -// -UriBuilder myUri = new UriBuilder("http","www.contoso.com",8080,"index.htm"); + protected void Method() + { + // + UriBuilder myUri = new("http", "www.contoso.com", 8080, "index.htm"); -// - } + // + } } diff --git a/snippets/csharp/System/UriBuilder/.ctor/source3.cs b/snippets/csharp/System/UriBuilder/.ctor/source3.cs index ba5a17a2204..2ec8799f768 100644 --- a/snippets/csharp/System/UriBuilder/.ctor/source3.cs +++ b/snippets/csharp/System/UriBuilder/.ctor/source3.cs @@ -1,15 +1,13 @@ using System; -using System.Data; -using System.Security.Principal; using System.Windows.Forms; -public class Form1: Form +public class UriBuilderConstructorForm3 : Form { - protected void Method() - { -// -UriBuilder myUri = new UriBuilder("http","www.contoso.com",8080,"index.htm","#top"); + protected void Method() + { + // + UriBuilder myUri = new("http", "www.contoso.com", 8080, "index.htm", "#top"); -// - } + // + } } diff --git a/snippets/csharp/System/UriBuilder/Fragment/source.cs b/snippets/csharp/System/UriBuilder/Fragment/source.cs index 64ff7df4ed5..0064d4c1d1c 100644 --- a/snippets/csharp/System/UriBuilder/Fragment/source.cs +++ b/snippets/csharp/System/UriBuilder/Fragment/source.cs @@ -1,19 +1,21 @@ -using System; -using System.Data; -using System.Security.Principal; +using System; + + public class Form1 { - protected void Method() - { -// -UriBuilder uBuild = new UriBuilder("http://www.contoso.com/"); -uBuild.Path = "index.htm"; -uBuild.Fragment = "main"; + protected void Method() + { + // + UriBuilder uBuild = new("http://www.contoso.com/") + { + Path = "index.htm", + Fragment = "main" + }; -Uri myUri = uBuild.Uri; + Uri myUri = uBuild.Uri; -// - } + // + } } diff --git a/snippets/csharp/System/UriBuilder/Query/main.cs b/snippets/csharp/System/UriBuilder/Query/main.cs index f4971e6c279..bdc64dd4445 100644 --- a/snippets/csharp/System/UriBuilder/Query/main.cs +++ b/snippets/csharp/System/UriBuilder/Query/main.cs @@ -1,28 +1,28 @@ #region Using directives using System; -using System.Collections.Generic; -using System.Text; + + #endregion namespace ConsoleApplication1 { - class Program - { - static void Main(string[] args) - { - // - UriBuilder baseUri = new UriBuilder("http://www.contoso.com/default.aspx?Param1=7890"); - string queryToAppend = "param2=1234"; + class Program + { + static void Main(string[] args) + { + // + UriBuilder baseUri = new("http://www.contoso.com/default.aspx?Param1=7890"); + string queryToAppend = "param2=1234"; - if (baseUri.Query != null && baseUri.Query.Length > 1) - // Note: In .NET Core and .NET 5+, you can simplify by removing - // the call to Substring(), which removes the leading "?" character. - baseUri.Query = baseUri.Query.Substring(1) + "&" + queryToAppend; - else - baseUri.Query = queryToAppend; - // - } - } + if (baseUri.Query != null && baseUri.Query.Length > 1) + // Note: In .NET Core and .NET 5+, you can simplify by removing + // the call to Substring(), which removes the leading "?" character. + baseUri.Query = baseUri.Query.Substring(1) + "&" + queryToAppend; + else + baseUri.Query = queryToAppend; + // + } + } } diff --git a/snippets/csharp/System/ValueType/Equals/Project.csproj b/snippets/csharp/System/ValueType/Equals/Project.csproj new file mode 100644 index 00000000000..dfdef3fd2a7 --- /dev/null +++ b/snippets/csharp/System/ValueType/Equals/Project.csproj @@ -0,0 +1,8 @@ + + + + Library + net10.0 + + + diff --git a/snippets/csharp/System/ValueType/Equals/source.cs b/snippets/csharp/System/ValueType/Equals/source.cs index 4b2be270f81..eb88125f284 100644 --- a/snippets/csharp/System/ValueType/Equals/source.cs +++ b/snippets/csharp/System/ValueType/Equals/source.cs @@ -1,26 +1,27 @@ -using System; + namespace Snippets { - // - public struct Complex - { - public double m_Re; - public double m_Im; + // + public struct Complex + { + public double m_Re; + public double m_Im; - public override bool Equals( object ob ){ - if( ob is Complex ) { - Complex c = (Complex) ob; - return m_Re==c.m_Re && m_Im==c.m_Im; - } - else { - return false; - } - } + public override bool Equals(object ob) + { + if (ob is Complex) + { + Complex c = (Complex)ob; + return m_Re == c.m_Re && m_Im == c.m_Im; + } + else + { + return false; + } + } - public override int GetHashCode(){ - return m_Re.GetHashCode() ^ m_Im.GetHashCode(); - } - } - // -} \ No newline at end of file + public override int GetHashCode() => m_Re.GetHashCode() ^ m_Im.GetHashCode(); + } + // +} diff --git a/snippets/csharp/System/ValueType/Overview/example1.cs b/snippets/csharp/System/ValueType/Overview/example1.cs index c626a8da7e5..59c610aff7d 100644 --- a/snippets/csharp/System/ValueType/Overview/example1.cs +++ b/snippets/csharp/System/ValueType/Overview/example1.cs @@ -4,92 +4,90 @@ public class Utility { - public enum NumericRelationship { - GreaterThan = 1, - EqualTo = 0, - LessThan = -1 - }; - - public static NumericRelationship Compare(ValueType value1, ValueType value2) - { - if (!IsNumeric(value1)) - throw new ArgumentException("value1 is not a number."); - else if (!IsNumeric(value2)) - throw new ArgumentException("value2 is not a number."); + public enum NumericRelationship + { + GreaterThan = 1, + EqualTo = 0, + LessThan = -1 + }; - // Use BigInteger as common integral type - if (IsInteger(value1) && IsInteger(value2)) { - BigInteger bigint1 = (BigInteger) value1; - BigInteger bigint2 = (BigInteger) value2; - return (NumericRelationship) BigInteger.Compare(bigint1, bigint2); - } - // At least one value is floating point; use Double. - else { - Double dbl1 = 0; - Double dbl2 = 0; - try { - dbl1 = Convert.ToDouble(value1); - } - catch (OverflowException) { - Console.WriteLine("value1 is outside the range of a Double."); - } - try { - dbl2 = Convert.ToDouble(value2); - } - catch (OverflowException) { - Console.WriteLine("value2 is outside the range of a Double."); - } - return (NumericRelationship) dbl1.CompareTo(dbl2); - } - } - - public static bool IsInteger(ValueType value) - { - return (value is SByte || value is Int16 || value is Int32 - || value is Int64 || value is Byte || value is UInt16 - || value is UInt32 || value is UInt64 - || value is BigInteger); - } + public static NumericRelationship Compare(ValueType value1, ValueType value2) + { + if (!IsNumeric(value1)) + throw new ArgumentException("value1 is not a number."); + else if (!IsNumeric(value2)) + throw new ArgumentException("value2 is not a number."); - public static bool IsFloat(ValueType value) - { - return (value is float || value is double || value is Decimal); - } + // Use BigInteger as common integral type + if (IsInteger(value1) && IsInteger(value2)) + { + BigInteger bigint1 = (BigInteger)value1; + BigInteger bigint2 = (BigInteger)value2; + return (NumericRelationship)BigInteger.Compare(bigint1, bigint2); + } + // At least one value is floating point; use Double. + else + { + double dbl1 = 0; + double dbl2 = 0; + try + { + dbl1 = Convert.ToDouble(value1); + } + catch (OverflowException) + { + Console.WriteLine("value1 is outside the range of a Double."); + } + try + { + dbl2 = Convert.ToDouble(value2); + } + catch (OverflowException) + { + Console.WriteLine("value2 is outside the range of a Double."); + } + return (NumericRelationship)dbl1.CompareTo(dbl2); + } + } - public static bool IsNumeric(ValueType value) - { - return (value is Byte || - value is Int16 || - value is Int32 || - value is Int64 || - value is SByte || - value is UInt16 || - value is UInt32 || - value is UInt64 || - value is BigInteger || - value is Decimal || - value is Double || - value is Single); - } + public static bool IsInteger(ValueType value) => (value is sbyte || value is short || value is int + || value is long || value is byte || value is ushort + || value is uint || value is ulong + || value is BigInteger); + + public static bool IsFloat(ValueType value) => (value is float || value is double || value is decimal); + + public static bool IsNumeric(ValueType value) => (value is byte || + value is short || + value is int || + value is long || + value is sbyte || + value is ushort || + value is uint || + value is ulong || + value is BigInteger || + value is decimal || + value is double || + value is float); } // -// +// public class Example { - public static void Main() - { - Console.WriteLine(Utility.IsNumeric(12)); - Console.WriteLine(Utility.IsNumeric(true)); - Console.WriteLine(Utility.IsNumeric('c')); - Console.WriteLine(Utility.IsNumeric(new DateTime(2012, 1, 1))); - Console.WriteLine(Utility.IsInteger(12.2)); - Console.WriteLine(Utility.IsInteger(123456789)); - Console.WriteLine(Utility.IsFloat(true)); - Console.WriteLine(Utility.IsFloat(12.2)); - Console.WriteLine(Utility.IsFloat(12)); - Console.WriteLine("{0} {1} {2}", 12.1, Utility.Compare(12.1, 12), 12); - } + public static void Main() + { + Console.WriteLine(Utility.IsNumeric(12)); + Console.WriteLine(Utility.IsNumeric(true)); + Console.WriteLine(Utility.IsNumeric('c')); + Console.WriteLine(Utility.IsNumeric(new DateTime(2012, 1, 1))); + Console.WriteLine(Utility.IsInteger(12.2)); + Console.WriteLine(Utility.IsInteger(123456789)); + Console.WriteLine(Utility.IsFloat(true)); + Console.WriteLine(Utility.IsFloat(12.2)); + Console.WriteLine(Utility.IsFloat(12)); + Console.WriteLine($"{12.1} {Utility.Compare(12.1, 12)} {12}"); + } } // The example displays the following output: // True diff --git a/snippets/csharp/System/ValueType/ToString/ToString2.cs b/snippets/csharp/System/ValueType/ToString/ToString2.cs index a1377024d90..8644062a0ed 100644 --- a/snippets/csharp/System/ValueType/ToString/ToString2.cs +++ b/snippets/csharp/System/ValueType/ToString/ToString2.cs @@ -4,32 +4,29 @@ public class Example { - public static void Main() - { - var empA = new EmployeeA{ Name = "Robert",}; - Console.WriteLine(empA.ToString()); - - var empB = new EmployeeB{ Name = "Robert",}; - Console.WriteLine(empB.ToString()); - } + public static void Main() + { + var empA = new EmployeeA { Name = "Robert", }; + Console.WriteLine(empA.ToString()); + + var empB = new EmployeeB { Name = "Robert", }; + Console.WriteLine(empB.ToString()); + } } namespace Corporate.EmployeeObjects { public struct EmployeeA { - public String Name { get; set; } + public string Name { get; set; } } - + public struct EmployeeB { - public String Name { get; set; } + public string Name { get; set; } - public override String ToString() - { - return Name; - } - } + public override string ToString() => Name; + } } // The example displays the following output: // Corporate.EmployeeObjects.EmployeeA diff --git a/snippets/csharp/System/Version/.ctor/rev.cs b/snippets/csharp/System/Version/.ctor/rev.cs index 8728a2ecb91..0c4c1da9aa5 100644 --- a/snippets/csharp/System/Version/.ctor/rev.cs +++ b/snippets/csharp/System/Version/.ctor/rev.cs @@ -3,22 +3,22 @@ // MajorRevision, and MinorRevision properties. using System; -class Sample +class Sample { - public static void Main() + public static void Main() { - string fmtStd = "Standard version:\n" + - " major.minor.build.revision = {0}.{1}.{2}.{3}"; - string fmtInt = "Interim version:\n" + - " major.minor.build.majRev/minRev = {0}.{1}.{2}.{3}/{4}"; + string fmtStd = "Standard version:\n" + + " major.minor.build.revision = {0}.{1}.{2}.{3}"; + string fmtInt = "Interim version:\n" + + " major.minor.build.majRev/minRev = {0}.{1}.{2}.{3}/{4}"; - Version std = new Version(2, 4, 1128, 2); - Version interim = new Version(2, 4, 1128, (100 << 16) + 2); + Version std = new(2, 4, 1128, 2); + Version interim = new(2, 4, 1128, (100 << 16) + 2); - Console.WriteLine(fmtStd, std.Major, std.Minor, std.Build, std.Revision); - Console.WriteLine(fmtInt, interim.Major, interim.Minor, interim.Build, - interim.MajorRevision, interim.MinorRevision); + Console.WriteLine(fmtStd, std.Major, std.Minor, std.Build, std.Revision); + Console.WriteLine(fmtInt, interim.Major, interim.Minor, interim.Build, + interim.MajorRevision, interim.MinorRevision); } } /* @@ -30,4 +30,4 @@ public static void Main() major.minor.build.majRev/minRev = 2.4.1128.100/2 */ -// \ No newline at end of file +// diff --git a/snippets/csharp/System/Version/Overview/GettingVersions1.cs b/snippets/csharp/System/Version/Overview/GettingVersions1.cs index 7d914d90746..d775e45659b 100644 --- a/snippets/csharp/System/Version/Overview/GettingVersions1.cs +++ b/snippets/csharp/System/Version/Overview/GettingVersions1.cs @@ -1,5 +1,4 @@ using System; -using System.Reflection; [assembly: CLSCompliant(true)] public class Class1 diff --git a/snippets/csharp/System/Version/Overview/comparisons1.cs b/snippets/csharp/System/Version/Overview/comparisons1.cs index 67c94f8978e..31749246054 100644 --- a/snippets/csharp/System/Version/Overview/comparisons1.cs +++ b/snippets/csharp/System/Version/Overview/comparisons1.cs @@ -2,33 +2,25 @@ public class Example7 { - public static void Main() - { - CompareSimple(); - } + public static void Main() => CompareSimple(); - private static void CompareSimple() - { - // - Version v1 = new(2, 0); - Version v2 = new("2.1"); - Console.Write("Version {0} is ", v1); - switch(v1.CompareTo(v2)) - { - case 0: - Console.Write("the same as"); - break; - case 1: - Console.Write("later than"); - break; - case -1: - Console.Write("earlier than"); - break; - } - Console.WriteLine($" Version {v2}."); + private static void CompareSimple() + { + // + Version v1 = new(2, 0); + Version v2 = new("2.1"); + string relationship = v1.CompareTo(v2) switch + { + -1 => "earlier than", + 0 => "the same as", + 1 => "later than", + _ => throw new InvalidOperationException() + }; - // The example displays the following output: - // Version 2.0 is earlier than Version 2.1. - // - } + Console.WriteLine($"Version {v1} is {relationship} Version {v2}."); + + // The example displays the following output: + // Version 2.0 is earlier than Version 2.1. + // + } } diff --git a/snippets/csharp/System/Version/Overview/comparisons2.cs b/snippets/csharp/System/Version/Overview/comparisons2.cs index e4f6dc58c92..3de96a7f718 100644 --- a/snippets/csharp/System/Version/Overview/comparisons2.cs +++ b/snippets/csharp/System/Version/Overview/comparisons2.cs @@ -1,24 +1,27 @@ // using System; -enum VersionTime {Earlier = -1, Same = 0, Later = 1 }; +enum VersionTime +{ + Earlier = -1, + Same = 0, + Later = 1 +} public class Example2 { - public static void Main() - { - Version v1 = new(1, 1); - Version v1a = new("1.1.0"); - ShowRelationship(v1, v1a); - - Version v1b = new(1, 1, 0, 0); - ShowRelationship(v1b, v1a); - } + public static void Main() + { + Version v1 = new(1, 1); + Version v1a = new("1.1.0"); + ShowRelationship(v1, v1a); + + Version v1b = new(1, 1, 0, 0); + ShowRelationship(v1b, v1a); + } - private static void ShowRelationship(Version v1, Version v2) - { - Console.WriteLine($"Relationship of {v1} to {v2}: {(VersionTime) v1.CompareTo(v2)}"); - } + private static void ShowRelationship(Version v1, Version v2) => + Console.WriteLine($"Relationship of {v1} to {v2}: {(VersionTime)v1.CompareTo(v2)}"); } // The example displays the following output: diff --git a/snippets/csharp/System/Version/Overview/currentapp.cs b/snippets/csharp/System/Version/Overview/currentapp.cs index 0a932351d50..82979bf7577 100644 --- a/snippets/csharp/System/Version/Overview/currentapp.cs +++ b/snippets/csharp/System/Version/Overview/currentapp.cs @@ -4,13 +4,13 @@ public class Example4 { - public static void Main() - { - // Get the version of the executing assembly (that is, this assembly). - Assembly assem = Assembly.GetEntryAssembly(); - AssemblyName assemName = assem.GetName(); - Version ver = assemName.Version; - Console.WriteLine("Application {0}, Version {1}", assemName.Name, ver.ToString()); - } + public static void Main() + { + // Get the version of the executing assembly (that is, this assembly). + Assembly assem = Assembly.GetEntryAssembly(); + AssemblyName assemName = assem.GetName(); + Version ver = assemName.Version; + Console.WriteLine($"Application {assemName.Name}, Version {ver}"); + } } // diff --git a/snippets/csharp/System/Version/Overview/currentassem.cs b/snippets/csharp/System/Version/Overview/currentassem.cs index e83f32b25e7..11559103e42 100644 --- a/snippets/csharp/System/Version/Overview/currentassem.cs +++ b/snippets/csharp/System/Version/Overview/currentassem.cs @@ -4,13 +4,13 @@ public class Example3 { - public static void Main() - { - // Get the version of the current assembly. - Assembly assem = typeof(Example3).Assembly; - AssemblyName assemName = assem.GetName(); - Version ver = assemName.Version; - Console.WriteLine("{0}, Version {1}", assemName.Name, ver.ToString()); - } + public static void Main() + { + // Get the version of the current assembly. + Assembly assem = typeof(Example3).Assembly; + AssemblyName assemName = assem.GetName(); + Version ver = assemName.Version; + Console.WriteLine($"{assemName.Name}, Version {ver}"); + } } // diff --git a/snippets/csharp/System/Version/Overview/example1.cs b/snippets/csharp/System/Version/Overview/example1.cs index e595209c12f..5fc37e45c07 100644 --- a/snippets/csharp/System/Version/Overview/example1.cs +++ b/snippets/csharp/System/Version/Overview/example1.cs @@ -2,19 +2,18 @@ using System; using System.Reflection; -[assembly:AssemblyVersionAttribute("2.0.1")] +[assembly: AssemblyVersion("2.0.1")] public class Example1 { - public static void Main() - { - Assembly thisAssem = typeof(Example1).Assembly; - AssemblyName thisAssemName = thisAssem.GetName(); - - Version ver = thisAssemName.Version; - - Console.WriteLine("This is version {0} of {1}.", ver, thisAssemName.Name); - } + public static void Main() + { + Assembly thisAssem = typeof(Example1).Assembly; + AssemblyName thisAssemName = thisAssem.GetName(); + Version ver = thisAssemName.Version; + + Console.WriteLine($"This is version {ver} of {thisAssemName.Name}."); + } } // The example displays the following output: diff --git a/snippets/csharp/System/Version/Parse/parse1.cs b/snippets/csharp/System/Version/Parse/parse1.cs index 3faf054b2c8..8fe2308e930 100644 --- a/snippets/csharp/System/Version/Parse/parse1.cs +++ b/snippets/csharp/System/Version/Parse/parse1.cs @@ -3,56 +3,63 @@ public class Example { - public static void Main() - { - string input = "4.0"; - ParseVersion(input); - - input = "4.0."; - ParseVersion(input); - - input = "1.1.2"; - ParseVersion(input); - - input = "1.1.2.01702"; - ParseVersion(input); - - input = "1.1.2.0702.119"; - ParseVersion(input); - - input = "1.3.5.2150000000"; - ParseVersion(input); - } - - private static void ParseVersion(string input) - { - try { - Version ver = Version.Parse(input); - Console.WriteLine("Converted '{0} to {1}.", input, ver); - } - catch (ArgumentNullException) { - Console.WriteLine("Error: String to be parsed is null."); - } - catch (ArgumentOutOfRangeException) { - Console.WriteLine("Error: Negative value in '{0}'.", input); - } - catch (ArgumentException) { - Console.WriteLine("Error: Bad number of components in '{0}'.", - input); - } - catch (FormatException) { - Console.WriteLine("Error: Non-integer value in '{0}'.", input); - } - catch (OverflowException) { - Console.WriteLine("Error: Number out of range in '{0}'.", input); - } - } + public static void Main() + { + string input = "4.0"; + ParseVersion(input); + + input = "4.0."; + ParseVersion(input); + + input = "1.1.2"; + ParseVersion(input); + + input = "1.1.2.01702"; + ParseVersion(input); + + input = "1.1.2.0702.119"; + ParseVersion(input); + + input = "1.3.5.2150000000"; + ParseVersion(input); + } + + private static void ParseVersion(string input) + { + try + { + Version ver = Version.Parse(input); + Console.WriteLine($"Converted '{input}' to {ver}."); + } + catch (ArgumentNullException) + { + Console.WriteLine("Error: String to be parsed is null."); + } + catch (ArgumentOutOfRangeException) + { + Console.WriteLine($"Error: Negative value in '{input}'."); + } + catch (ArgumentException) + { + Console.WriteLine($"Error: Bad number of components in '{input}'."); + } + catch (FormatException) + { + Console.WriteLine($"Error: Non-integer value in '{input}'."); + } + catch (OverflowException) + { + Console.WriteLine($"Error: Number out of range in '{input}'."); + } + } } + // The example displays the following output: -// Converted '4.0 to 4.0. +// Converted '4.0' to 4.0. // Error: Non-integer value in '4.0.'. -// Converted '1.1.2 to 1.1.2. -// Converted '1.1.2.01702 to 1.1.2.1702. +// Converted '1.1.2' to 1.1.2. +// Converted '1.1.2.01702' to 1.1.2.1702. // Error: Bad number of components in '1.1.2.0702.119'. // Error: Number out of range in '1.3.5.2150000000'. -// \ No newline at end of file + +// diff --git a/snippets/csharp/System/Version/TryParse/tryparse1.cs b/snippets/csharp/System/Version/TryParse/tryparse1.cs index e814d444c22..988e365c56b 100644 --- a/snippets/csharp/System/Version/TryParse/tryparse1.cs +++ b/snippets/csharp/System/Version/TryParse/tryparse1.cs @@ -3,42 +3,43 @@ public class Example { - public static void Main() - { - string input = "4.0"; - ParseVersion(input); - - input = "4.0."; - ParseVersion(input); - - input = "1.1.2"; - ParseVersion(input); - - input = "1.1.2.01702"; - ParseVersion(input); - - input = "1.1.2.0702.119"; - ParseVersion(input); - - input = "1.3.5.2150000000"; - ParseVersion(input); - } - - private static void ParseVersion(string input) - { - Version ver = null; - if (Version.TryParse(input, out ver)) - Console.WriteLine("Converted '{0} to {1}.", input, ver); - else - Console.WriteLine("Unable to determine the version from '{0}'.", - input); - } + public static void Main() + { + string input = "4.0"; + ParseVersion(input); + + input = "4.0."; + ParseVersion(input); + + input = "1.1.2"; + ParseVersion(input); + + input = "1.1.2.01702"; + ParseVersion(input); + + input = "1.1.2.0702.119"; + ParseVersion(input); + + input = "1.3.5.2150000000"; + ParseVersion(input); + } + + private static void ParseVersion(string input) + { + Version ver = null; + if (Version.TryParse(input, out ver)) + Console.WriteLine($"Converted '{input}' to {ver}."); + else + Console.WriteLine($"Unable to determine the version from '{input}'."); + } } + // The example displays the following output: -// Converted '4.0 to 4.0. +// Converted '4.0' to 4.0. // Unable to determine the version from '4.0.'. -// Converted '1.1.2 to 1.1.2. -// Converted '1.1.2.01702 to 1.1.2.1702. +// Converted '1.1.2' to 1.1.2. +// Converted '1.1.2.01702' to 1.1.2.1702. // Unable to determine the version from '1.1.2.0702.119'. // Unable to determine the version from '1.3.5.2150000000'. -// \ No newline at end of file + +// diff --git a/snippets/csharp/System/WeakReference/Overview/program.cs b/snippets/csharp/System/WeakReference/Overview/program.cs index e4d13b0f6e1..c8c7c2dab7a 100644 --- a/snippets/csharp/System/WeakReference/Overview/program.cs +++ b/snippets/csharp/System/WeakReference/Overview/program.cs @@ -8,21 +8,22 @@ public static void Main() { // Create the cache. int cacheSize = 50; - Random r = new Random(); - Cache c = new Cache(cacheSize); + Random r = new(); + Cache c = new(cacheSize); string DataName = ""; GC.Collect(0); // Randomly access objects in the cache. - for (int i = 0; i < c.Count; i++) { + for (int i = 0; i < c.Count; i++) + { int index = r.Next(c.Count); // Access the object by getting a property value. DataName = c[index].Name; } // Show results. - double regenPercent = c.RegenerationCount/(double)c.Count; + double regenPercent = c.RegenerationCount / (double)c.Count; Console.WriteLine($"Cache size: {c.Count}, Regenerated: {regenPercent:P0}"); } } @@ -37,49 +38,47 @@ public class Cache public Cache(int count) { - _cache = new Dictionary(); + _cache = new(); // // Add objects with a short weak reference to the cache. - for (int i = 0; i < count; i++) { + for (int i = 0; i < count; i++) + { _cache.Add(i, new WeakReference(new Data(i), false)); } // } // Number of items in the cache. - public int Count - { - get { return _cache.Count; } - } + public int Count => _cache.Count; // Number of times an object needs to be regenerated. - public int RegenerationCount - { - get { return regenCount; } - } + public int RegenerationCount => regenCount; // Retrieve a data object from the cache. public Data this[int index] { - get { + get + { // Data d = _cache[index].Target as Data; - if (d == null) { + if (d == null) + { // If the object was reclaimed, generate a new one. - Console.WriteLine("Regenerate object at {0}: Yes", index); - d = new Data(index); + Console.WriteLine($"Regenerate object at {index}: Yes"); + d = new(index); _cache[index].Target = d; regenCount++; } - else { + else + { // Object was obtained with the weak reference. - Console.WriteLine("Regenerate object at {0}: No", index); + Console.WriteLine($"Regenerate object at {index}: No"); } return d; - // - } + // + } } } @@ -96,10 +95,7 @@ public Data(int size) } // Simple property. - public string Name - { - get { return _name; } - } + public string Name => _name; } // Example of the last lines of the output: // @@ -114,4 +110,4 @@ public string Name // Regenerate object at 43: Yes // Regenerate object at 38: No // Cache size: 50, Regenerated: 94% -// \ No newline at end of file +// diff --git a/xml/FrameworksIndex/net-11.0-pp.xml b/xml/FrameworksIndex/net-11.0-pp.xml index bcf75534a62..7f9158bed47 100644 --- a/xml/FrameworksIndex/net-11.0-pp.xml +++ b/xml/FrameworksIndex/net-11.0-pp.xml @@ -96,7 +96,6 @@ - @@ -4147,10 +4146,6 @@ - - - - @@ -7534,22 +7529,6 @@ - - - - - - - - - - - - - - - - diff --git a/xml/Microsoft.Extensions.DependencyInjection/FromKeyedServicesAttribute.xml b/xml/Microsoft.Extensions.DependencyInjection/FromKeyedServicesAttribute.xml index c6269760cc3..6617a3c2673 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/FromKeyedServicesAttribute.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/FromKeyedServicesAttribute.xml @@ -33,8 +33,8 @@ Indicates that the parameter should be bound using the keyed service registered with the specified key. To be added. - + diff --git a/xml/Microsoft.Extensions.DependencyInjection/ValidationLocalizationServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ValidationLocalizationServiceCollectionExtensions.xml deleted file mode 100644 index 96303ddfb97..00000000000 --- a/xml/Microsoft.Extensions.DependencyInjection/ValidationLocalizationServiceCollectionExtensions.xml +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.Object - - - - - [System.Runtime.CompilerServices.Nullable(0)] - [<System.Runtime.CompilerServices.Nullable(0)>] - - - - - Extension methods for registering the default -based validation - localizer. - - To be added. - - - - - - - - - Method - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - Microsoft.Extensions.DependencyInjection.IServiceCollection - - - - - - - [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] - [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] - - - - - - The to add services to. - An optional callback to configure - . - - Adds the default -based validation localizer to the - service collection and wires it up by setting . - - The for chaining. - - - Internally calls - to ensure an is registered, and registers an - bridge that sets - to a default - instance (only when has not already been set). - - - Call AddValidation() separately to register the validation pipeline itself. - Call order does not matter. - - - Minimal API parameter validation: top-level Minimal API parameters do not have - a declaring type. - For applications that validate Minimal API parameters, prefer the - overload (shared-resource pattern), - or set explicitly to a - delegate that does not depend on the declaring type (which is passed as - in the parameter case). - - - The default registered by - AddLocalization() reads strings from .resx resource files. To localize against - other sources (databases, JSON files, in-memory dictionaries, third-party translation - services), register your own implementation - either before or after . - The validation localizer resolves the factory at validation time, so registration order - does not matter: - - - - builder.Services.AddValidation(); - builder.Services.AddValidationLocalization(); - builder.Services.AddSingleton<IStringLocalizerFactory, MyDatabaseLocalizerFactory>(); - - - - - - - - - - - - Method - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - Microsoft.Extensions.DependencyInjection.IServiceCollection - - - - - - [System.Runtime.CompilerServices.Nullable(2)] - [<System.Runtime.CompilerServices.Nullable(2)>] - - - - - - - - - - [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] - [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] - - - - - - The type that identifies the shared resource source. - The to add services to. - An optional callback to further configure - . - - Adds the default -based validation localizer configured to - resolve localized strings against the resource type - for all types being validated. - - The for chaining. - - - Use this when validation messages live in a single shared resource file rather than - per-type resource files. - - - Equivalent to setting to - (_, factory) => factory.Create(typeof(TResource)), but the configured provider - resolves the once and reuses the same instance for every - declaring type, avoiding repeated factory lookups. - - - - - - diff --git a/xml/Microsoft.Extensions.Validation.Localization/IValidationAttributeFormatter.xml b/xml/Microsoft.Extensions.Validation.Localization/IValidationAttributeFormatter.xml deleted file mode 100644 index 24d904144eb..00000000000 --- a/xml/Microsoft.Extensions.Validation.Localization/IValidationAttributeFormatter.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - - - Formats a validation error message template with attribute-specific arguments. - Used by the validation localization pipeline to produce fully formatted error messages - from localized templates that contain positional placeholders beyond {0} (the display name). - - - - To add formatting support for a custom validation attribute, you have two options: - - - - - Implement directly on the attribute itself. - checks for this first and uses the - attribute as its own formatter automatically. - - - - - Create a separate implementation and register - it via by calling - . - - - - - The following example shows how to register a formatter for a custom attribute: - - public class MyAttributeFormatter(MyAttribute attribute) : IValidationAttributeFormatter - { - public string FormatErrorMessage(CultureInfo culture, string messageTemplate, string displayName) - => string.Format(culture, messageTemplate, displayName, attribute.CustomProperty); - } - - // Register it in Program.cs: - builder.Services.AddValidationLocalization(options => - options.AttributeFormatters.AddFormatter<MyAttribute>( - attribute => new MyAttributeFormatter(attribute))); - - - - - - - - - - - - Method - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.String - - - - - - - - The to use when formatting. - The error message template containing format placeholders. - The resolved display name of the member being validated. - - Formats the specified by substituting attribute-specific - arguments alongside the . - - The fully formatted error message. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Validation.Localization/ValidationAttributeFormatterRegistry.xml b/xml/Microsoft.Extensions.Validation.Localization/ValidationAttributeFormatterRegistry.xml deleted file mode 100644 index d393230dcf2..00000000000 --- a/xml/Microsoft.Extensions.Validation.Localization/ValidationAttributeFormatterRegistry.xml +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.Object - - - - - [System.Runtime.CompilerServices.Nullable(0)] - [<System.Runtime.CompilerServices.Nullable(0)>] - - - - - Registry of factories keyed by - type. Used by the validation localization pipeline - to format localized error message templates with attribute-specific arguments. - - - - Resolution order: - - - - - If the attribute implements itself (self-formatting), - it is returned directly. - - - - - If a factory is registered for the attribute's type via - , - it is used to create a formatter. - - - - - Otherwise, is returned, indicating that no attribute-specific - formatter is available. - - - - - Built-in formatters for standard validation attributes (such as , - , , etc.) are registered - automatically. Later registrations for the same attribute type replace earlier ones. - - - - builder.Services.AddValidationLocalization(options => - options.AttributeFormatters.AddFormatter<CreditCardAttribute>( - attribute => new CreditCardAttributeFormatter(attribute))); - - - - - - - - - - - - Constructor - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - - - Creates a new instance of - with built-in formatters for standard validation attributes. - - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.Void - - - - - - [System.Runtime.CompilerServices.Nullable(0)] - [<System.Runtime.CompilerServices.Nullable(0)>] - - - - System.ComponentModel.DataAnnotations.ValidationAttribute - - - - - - - - The validation attribute type to register a formatter for. - - A factory delegate that creates an - from the attribute instance. - - - Registers a formatter factory for the specified validation attribute type. - Later registrations for the same type replace earlier ones. - - - Configuration is intended to happen during application startup. Mutating the registry - after the validation pipeline has begun processing requests is not thread-safe. - - - - - - - - - - - Method - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - Microsoft.Extensions.Validation.Localization.IValidationAttributeFormatter - - - [System.Runtime.CompilerServices.Nullable(2)] - [<System.Runtime.CompilerServices.Nullable(2)>] - - - - - - - - The validation attribute to get a formatter for. - - Returns an for the specified . - If the attribute implements itself, it is returned directly. - Otherwise, the registry is consulted. Returns if no formatter is registered - for the attribute's type. - - - An if the attribute self-formats or a factory - is registered; otherwise, . - - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Validation.Localization/ValidationLocalizationOptions.xml b/xml/Microsoft.Extensions.Validation.Localization/ValidationLocalizationOptions.xml deleted file mode 100644 index 5065a53bdcf..00000000000 --- a/xml/Microsoft.Extensions.Validation.Localization/ValidationLocalizationOptions.xml +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.Object - - - - - [System.Runtime.CompilerServices.Nullable(0)] - [<System.Runtime.CompilerServices.Nullable(0)>] - - - - - Configuration options for the Microsoft.Extensions.Validation.Localization default - -based validation localizer. Configure via - services.AddValidationLocalization(options => ...). - - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - - [System.Runtime.CompilerServices.Nullable(1)] - [<System.Runtime.CompilerServices.Nullable(1)>] - - - - Microsoft.Extensions.Validation.Localization.ValidationAttributeFormatterRegistry - - - - Gets the registry of formatters for attribute-specific error message template formatting. - Built-in formatters for standard attributes are registered automatically. - - To be added. - - The registry is intended to be configured during application startup (typically inside the - AddValidationLocalization options callback) by calling - . - Mutating the registry after the validation pipeline has begun processing requests is not - thread-safe and is not supported. - - - - - - - - - - - Property - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - System.Func<Microsoft.Extensions.Validation.ErrorMessageLocalizationContext,System.String> - - - - Gets or sets the delegate that determines the localization lookup key for a - validation attribute's error message. When configured, the delegate is invoked for - every attribute and takes precedence over . - Returning or an empty string defers to using - directly as the lookup key. - - To be added. - - - When (the default), only attributes with - set are localized (using the - value as the key); attributes without - an explicit are not localized at all. - - - When configured, the delegate can: - - - Provide a fallback key for attributes without an explicit - (convention-based key selection). - Transform an existing into a - different lookup key by reading - 's - from the context. - Return or an empty string to defer to the default - behavior of using as the key. - - - - options.ErrorMessageKeyProvider = context => - $"{context.Attribute.GetType().Name}_ValidationError"; - // This makes the localizer look up "RequiredAttribute_ValidationError" - // instead of "The {0} field is required." - - - - - - - - - - - - - Property - - Microsoft.Extensions.Validation.Localization - 11.0.0.0 - - - - [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 2, 1, 1 })] - [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 2, 1, 1 })>] - - - - System.Func<System.Type,Microsoft.Extensions.Localization.IStringLocalizerFactory,Microsoft.Extensions.Localization.IStringLocalizer> - - - - Gets or sets the delegate that controls which is used - for a given declaring type. The declaring type is the type that contains the property - being validated, or when the validation pipeline has no declaring - type to attribute the message to (e.g., top-level Minimal API parameters). - - To be added. - - - When (the default), - is called with the declaring type, which follows the standard resource file naming convention - (e.g., Resources/Models.Customer.fr.resx for type Models.Customer). - For declaring-type-less invocations, the no-provider fallback uses typeof(object). - In that case the resolved resource source is rarely useful, which is why configuring - this delegate (or using AddValidationLocalization<TResource>()) - is recommended for Minimal API parameter validation. - - - - options.LocalizerProvider = (type, factory) => - factory.Create(typeof(SharedValidationMessages)); - - - - For the shared-resource pattern above, prefer the dedicated - AddValidationLocalization<TResource>() overload, which configures - for you (with a single-instance optimization that - skips re-resolving the same on every validation call). - - - The delegate must return a non-null . Returning - causes an to be thrown the next time validation tries - to localize a message for that declaring type. - - - Caching: the validation pipeline does not cache the - returned by this delegate. The delegate is invoked once per call to - and - , so the underlying - is responsible for caching localizer instances if - instance creation is expensive. However, the default factory registered by - AddLocalization() (ResourceManagerStringLocalizerFactory) caches its - results internally. If your delegate itself does - meaningful work beyond calling the factory, capture the result in a closure to amortize - that cost across calls. - - - - - - diff --git a/xml/Microsoft.Extensions.VectorData/VectorStore.xml b/xml/Microsoft.Extensions.VectorData/VectorStore.xml index 6c63df52e7f..ace12029887 100644 --- a/xml/Microsoft.Extensions.VectorData/VectorStore.xml +++ b/xml/Microsoft.Extensions.VectorData/VectorStore.xml @@ -225,9 +225,9 @@ To successfully request a collection, either must be annotated with attributes that define the schema of the record type, or must be provided. + - diff --git a/xml/PackageInformation/net-11.0-pp.json b/xml/PackageInformation/net-11.0-pp.json index ba997135da7..a6c110f0a46 100644 --- a/xml/PackageInformation/net-11.0-pp.json +++ b/xml/PackageInformation/net-11.0-pp.json @@ -1 +1 @@ -{"net-11.0-pp":{"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Memory":{"Name":"Microsoft.Bcl.Memory","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI":{"Name":"Microsoft.Extensions.AI","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Abstractions":{"Name":"Microsoft.Extensions.AI.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.AzureAIInference":{"Name":"Microsoft.Extensions.AI.AzureAIInference","Version":"10.0.0-preview.1.25559.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation":{"Name":"Microsoft.Extensions.AI.Evaluation","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.NLP":{"Name":"Microsoft.Extensions.AI.Evaluation.NLP","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Quality":{"Name":"Microsoft.Extensions.AI.Evaluation.Quality","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Reporting":{"Name":"Microsoft.Extensions.AI.Evaluation.Reporting","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Reporting.Azure":{"Name":"Microsoft.Extensions.AI.Evaluation.Reporting.Azure","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Safety":{"Name":"Microsoft.Extensions.AI.Evaluation.Safety","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.OpenAI":{"Name":"Microsoft.Extensions.AI.OpenAI","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Build":{"Name":"Microsoft.Extensions.AmbientMetadata.Build","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion":{"Name":"Microsoft.Extensions.DataIngestion","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.Abstractions":{"Name":"Microsoft.Extensions.DataIngestion.Abstractions","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.Markdig":{"Name":"Microsoft.Extensions.DataIngestion.Markdig","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.MarkItDown":{"Name":"Microsoft.Extensions.DataIngestion.MarkItDown","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery":{"Name":"Microsoft.Extensions.ServiceDiscovery","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Abstractions":{"Name":"Microsoft.Extensions.ServiceDiscovery.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Dns":{"Name":"Microsoft.Extensions.ServiceDiscovery.Dns","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Yarp":{"Name":"Microsoft.Extensions.ServiceDiscovery.Yarp","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Validation":{"Name":"Microsoft.Extensions.Validation","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Validation.Localization":{"Name":"Microsoft.Extensions.Validation.Localization","Version":"11.0.0-preview.6.26359.118","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.VectorData.Abstractions":{"Name":"Microsoft.Extensions.VectorData.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CommandLine":{"Name":"System.CommandLine","Version":"3.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CommandLine.StaticCompletions":{"Name":"System.CommandLine.StaticCompletions","Version":"3.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.GdiPlus":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Nrbf":{"Name":"System.Formats.Nrbf","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Linq.AsyncEnumerable":{"Name":"System.Linq.AsyncEnumerable","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.ServerSentEvents":{"Name":"System.Net.ServerSentEvents","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Formatters":{"Name":"System.Runtime.Serialization.Formatters","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Http":{"Name":"System.ServiceModel.Http","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetFramingBase":{"Name":"System.ServiceModel.NetFramingBase","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetNamedPipe":{"Name":"System.ServiceModel.NetNamedPipe","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetTcp":{"Name":"System.ServiceModel.NetTcp","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Duplex":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Primitives":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Security":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.UnixDomainSocket":{"Name":"System.ServiceModel.UnixDomainSocket","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.RateLimiting":{"Name":"System.Threading.RateLimiting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"net-11.0-pp":{"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Memory":{"Name":"Microsoft.Bcl.Memory","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI":{"Name":"Microsoft.Extensions.AI","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Abstractions":{"Name":"Microsoft.Extensions.AI.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.AzureAIInference":{"Name":"Microsoft.Extensions.AI.AzureAIInference","Version":"10.0.0-preview.1.25559.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation":{"Name":"Microsoft.Extensions.AI.Evaluation","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.NLP":{"Name":"Microsoft.Extensions.AI.Evaluation.NLP","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Quality":{"Name":"Microsoft.Extensions.AI.Evaluation.Quality","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Reporting":{"Name":"Microsoft.Extensions.AI.Evaluation.Reporting","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Reporting.Azure":{"Name":"Microsoft.Extensions.AI.Evaluation.Reporting.Azure","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.Evaluation.Safety":{"Name":"Microsoft.Extensions.AI.Evaluation.Safety","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AI.OpenAI":{"Name":"Microsoft.Extensions.AI.OpenAI","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Build":{"Name":"Microsoft.Extensions.AmbientMetadata.Build","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion":{"Name":"Microsoft.Extensions.DataIngestion","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.Abstractions":{"Name":"Microsoft.Extensions.DataIngestion.Abstractions","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.Markdig":{"Name":"Microsoft.Extensions.DataIngestion.Markdig","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DataIngestion.MarkItDown":{"Name":"Microsoft.Extensions.DataIngestion.MarkItDown","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"10.9.0-preview.1.26411.16","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery":{"Name":"Microsoft.Extensions.ServiceDiscovery","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Abstractions":{"Name":"Microsoft.Extensions.ServiceDiscovery.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Dns":{"Name":"Microsoft.Extensions.ServiceDiscovery.Dns","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ServiceDiscovery.Yarp":{"Name":"Microsoft.Extensions.ServiceDiscovery.Yarp","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Validation":{"Name":"Microsoft.Extensions.Validation","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.VectorData.Abstractions":{"Name":"Microsoft.Extensions.VectorData.Abstractions","Version":"10.9.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CommandLine":{"Name":"System.CommandLine","Version":"3.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.CommandLine.StaticCompletions":{"Name":"System.CommandLine.StaticCompletions","Version":"3.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.GdiPlus":{"Name":"System.Drawing.Common","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Nrbf":{"Name":"System.Formats.Nrbf","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Linq.AsyncEnumerable":{"Name":"System.Linq.AsyncEnumerable","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.ServerSentEvents":{"Name":"System.Net.ServerSentEvents","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Formatters":{"Name":"System.Runtime.Serialization.Formatters","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Http":{"Name":"System.ServiceModel.Http","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetFramingBase":{"Name":"System.ServiceModel.NetFramingBase","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetNamedPipe":{"Name":"System.ServiceModel.NetNamedPipe","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetTcp":{"Name":"System.ServiceModel.NetTcp","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Duplex":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Primitives":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Security":{"Name":"System.ServiceModel.Primitives","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.UnixDomainSocket":{"Name":"System.ServiceModel.UnixDomainSocket","Version":"10.0.652802","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.RateLimiting":{"Name":"System.Threading.RateLimiting","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"11.0.0-preview.7.26381.103","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Abstractions.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Abstractions.json index 1319d9e2e99..6f8d45bef1e 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Abstractions.json @@ -1,4727 +1,4815 @@ { "Assembly": "Microsoft.Extensions.AI.Abstractions", - "GUID": "009612BAE0214B3499911578164EB223FFFFFFFF", + "GUID": "A7CC91512F8B46559B1101CC27069A09FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L12C5-L14C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L12C5-L14C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L18C11-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L18C11-L20C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L24C11-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L24C11-L26C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L33C58-L33C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs#L33C58-L33C67" } ], "DocsId": "T:Microsoft.Extensions.AI.AdditionalPropertiesDictionary", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.#ctor(System.Collections.Generic.IDictionary{System.String,`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L34C5-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L34C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,`0}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L40C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L40C5-L51C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L58C62-L58C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L58C62-L58C78" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L77C66-L77C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L77C66-L77C71" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IReadOnlyDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L80C69-L80C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L80C69-L80C85" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IReadOnlyDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L83C71-L83C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L83C71-L83C89" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Add(System.String,`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L86C50-L86C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L86C50-L86C77" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.TryAdd(System.String,`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L95C9-L95C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L95C9-L95C47" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#Add(System.Collections.Generic.KeyValuePair{System.String,`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L108C94-L108C160" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L108C94-L108C160" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L111C28-L111C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L111C28-L111C47" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#Contains(System.Collections.Generic.KeyValuePair{System.String,`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L115C9-L115C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L115C9-L115C80" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L118C44-L118C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L118C44-L118C72" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#CopyTo(System.Collections.Generic.KeyValuePair{System.String,`0}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L122C9-L122C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L122C9-L122C91" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L128C42-L128C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L128C42-L128C74" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L131C108-L131C123" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L131C108-L131C123" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L134C48-L134C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L134C48-L134C63" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L137C39-L137C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L137C39-L137C62" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#Remove(System.Collections.Generic.KeyValuePair{System.String,`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L140C97-L140C166" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L140C97-L140C166" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.TryGetValue``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L159C9-L189C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L159C9-L189C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.TryGetValue(System.String,`0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L193C85-L193C124" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L193C85-L193C124" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IDictionary#TryGetValue(System.String,`0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L196C83-L196C123" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L196C83-L196C123" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IReadOnlyDictionary#TryGetValue(System.String,`0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L199C91-L199C131" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L199C91-L199C131" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Item(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L63C16-L63C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L63C16-L63C32" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L68C40-L68C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L68C40-L68C56" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L71C42-L71C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L71C42-L71C60" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L74C25-L74C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L74C25-L74C42" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#ICollection>#IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L77C66-L77C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L77C66-L77C71" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IReadOnlyDictionary#Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L80C69-L80C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L80C69-L80C85" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.System#Collections#Generic#IReadOnlyDictionary#Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L83C71-L83C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L83C71-L83C89" }, { "DocsId": "T:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AutoChatToolMode.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AutoChatToolMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L24C49-L24C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L24C49-L24C72" }, { "DocsId": "M:Microsoft.Extensions.AI.AutoChatToolMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L27C42-L27C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs#L27C42-L27C80" } ], "DocsId": "T:Microsoft.Extensions.AI.AutoChatToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/AutoChatToolMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetService``1(Microsoft.Extensions.AI.IChatClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L27C9-L29C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L27C9-L29C104" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetRequiredService(Microsoft.Extensions.AI.IChatClient,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L49C9-L54C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L49C9-L54C80" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetRequiredService``1(Microsoft.Extensions.AI.IChatClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L73C9-L80C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L73C9-L80C24" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetResponseAsync(Microsoft.Extensions.AI.IChatClient,System.String,Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L97C9-L100C113" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L97C9-L100C113" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetResponseAsync(Microsoft.Extensions.AI.IChatClient,Microsoft.Extensions.AI.ChatMessage,Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L117C9-L120C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L117C9-L120C83" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetStreamingResponseAsync(Microsoft.Extensions.AI.IChatClient,System.String,Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L137C9-L140C122" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L137C9-L140C122" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatClientExtensions.GetStreamingResponseAsync(Microsoft.Extensions.AI.IChatClient,Microsoft.Extensions.AI.ChatMessage,Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L157C9-L160C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs#L157C9-L160C92" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatClientExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatClientMetadata.#ctor(System.String,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L18C5-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L18C5-L23C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatClientMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L30C35-L30C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L30C35-L30C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatClientMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L33C31-L33C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L33C31-L33C35" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatClientMetadata.DefaultModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L40C37-L40C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs#L40C37-L40C41" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatClientMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatClientMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L24C9-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L24C9-L25C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L31C69-L31C115" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L31C69-L31C115" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.Equals(Microsoft.Extensions.AI.ChatFinishReason)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L34C51-L34C110" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L34C51-L34C110" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L37C42-L37C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L37C42-L37C93" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.op_Equality(Microsoft.Extensions.AI.ChatFinishReason,Microsoft.Extensions.AI.ChatFinishReason)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L47C9-L47C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L47C9-L47C35" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.op_Inequality(Microsoft.Extensions.AI.ChatFinishReason,Microsoft.Extensions.AI.ChatFinishReason)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L58C9-L58C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L58C9-L58C33" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L63C42-L63C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L63C42-L63C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatFinishReason.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L28C28-L28C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L28C28-L28C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatFinishReason.Stop", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L66C43-L66C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L66C43-L66C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatFinishReason.Length", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L69C45-L69C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L69C45-L69C49" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatFinishReason.ToolCalls", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L72C48-L72C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L72C48-L72C52" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatFinishReason.ContentFilter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L75C52-L75C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L75C52-L75C56" }, { "DocsId": "T:Microsoft.Extensions.AI.ChatFinishReason.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatFinishReason", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C42-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C42-L25C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatMessage.#ctor(Microsoft.Extensions.AI.ChatRole,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L31C11-L33C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatMessage.#ctor(Microsoft.Extensions.AI.ChatRole,System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C42-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C42-L42C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatMessage.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L51C9-L60C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L51C9-L60C10" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatMessage.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L106C42-L106C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L106C42-L106C46" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.AuthorName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L65C16-L65C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L65C16-L65C27" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.CreatedAt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L70C40-L70C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L70C40-L70C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.Role", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C28-L73C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L73C28-L73C32" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L80C27-L80C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L80C27-L80C48" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L86C16-L86C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L86C16-L86C32" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.MessageId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L91C32-L91C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L91C32-L91C36" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L100C40-L100C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L100C40-L100C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatMessage.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L103C67-L103C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs#L103C67-L103C71" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L15C5-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L15C5-L17C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatOptions.#ctor(Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L20C5-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L20C5-L55C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L238C43-L238C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L238C43-L238C52" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.ConversationId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L59C37-L59C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L59C37-L59C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.Instructions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L62C35-L62C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L62C35-L62C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.Temperature", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L68C33-L68C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L68C33-L68C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.MaxOutputTokens", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L71C35-L71C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L71C35-L71C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.TopP", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L79C26-L79C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L79C26-L79C30" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.TopK", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L87C24-L87C28" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L87C24-L87C28" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.FrequencyPenalty", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L96C38-L96C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L96C38-L96C42" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.PresencePenalty", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L105C37-L105C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L105C37-L105C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.Seed", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L108C25-L108C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L108C25-L108C29" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.Reasoning", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L113C42-L113C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L113C42-L113C46" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.ResponseFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L127C49-L127C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L127C49-L127C53" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L130C30-L130C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L130C30-L130C34" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.StopSequences", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L138C43-L138C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L138C43-L138C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.AllowMultipleToolCalls", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L155C43-L155C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L155C43-L155C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.ToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L159C37-L159C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L159C37-L159C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.Tools", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L164C35-L164C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L164C35-L164C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.AllowBackgroundResponses", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L188C45-L188C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L188C45-L188C49" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.ContinuationToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L201C59-L201C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L201C59-L201C63" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L221C67-L221C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L221C67-L221C71" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L224C67-L224C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs#L224C67-L224C71" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponse.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L26C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L26C5-L28C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponse.#ctor(Microsoft.Extensions.AI.ChatMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L33C5-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L33C5-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponse.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L42C5-L45C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L42C5-L45C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponse.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L118C42-L118C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L118C42-L118C46" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponse.ToChatResponseUpdates", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L124C9-L169C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L124C9-L169C24" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.Messages", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L51C16-L51C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L51C16-L51C54" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L61C27-L61C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L61C27-L61C66" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L64C33-L64C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L64C33-L64C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.ConversationId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L76C37-L76C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L76C37-L76C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L79C30-L79C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L79C30-L79C34" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.CreatedAt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L82C40-L82C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L82C40-L82C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.FinishReason", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L85C45-L85C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L85C45-L85C49" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L88C34-L88C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L88C34-L88C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.ContinuationToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L103C59-L103C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L103C59-L103C63" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L112C40-L112C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L112C40-L112C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponse.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L115C67-L115C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs#L115C67-L115C71" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponse", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponse.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.AddMessages(System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatResponse)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L32C9-L46C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L32C9-L46C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.AddMessages(System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage},System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatResponseUpdate})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L61C9-L70C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L61C9-L70C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.AddMessages(System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatResponseUpdate,System.Func{Microsoft.Extensions.AI.AIContent,System.Boolean})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L84C9-L98C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L84C9-L98C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.AddMessagesAsync(System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage},System.Collections.Generic.IAsyncEnumerable{Microsoft.Extensions.AI.ChatResponseUpdate},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L116C9-L119C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L116C9-L119C67" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.ToChatResponse(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatResponseUpdate})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L139C9-L150C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L139C9-L150C25" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseExtensions.ToChatResponseAsync(System.Collections.Generic.IAsyncEnumerable{Microsoft.Extensions.AI.ChatResponseUpdate},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L167C9-L169C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs#L167C9-L169C64" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponseExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormat.ForJsonSchema(System.Text.Json.JsonElement,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L46C9-L46C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L46C9-L46C51" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormat.ForJsonSchema``1(System.Text.Json.JsonSerializerOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L63C9-L63C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L63C9-L63C83" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormat.ForJsonSchema(System.Type,System.Text.Json.JsonSerializerOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L82C9-L92C102" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L82C9-L92C102" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseFormat.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L34C49-L34C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L34C49-L34C53" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseFormat.Json", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L37C49-L37C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs#L37C49-L37C53" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponseFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormat.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormatJson.#ctor(System.Nullable{System.Text.Json.JsonElement},System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L20C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L20C5-L33C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseFormatJson.Schema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L36C34-L36C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L36C34-L36C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseFormatJson.SchemaName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L39C33-L39C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L39C33-L39C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseFormatJson.SchemaDescription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs#L42C40-L42C44" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponseFormatJson", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatJson.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormatText.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L17C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L17C5-L20C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormatText.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L23C49-L23C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L23C49-L23C78" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseFormatText.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L26C42-L26C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs#L26C42-L26C86" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponseFormatText", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseFormatText.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseUpdate.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L40C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L40C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseUpdate.#ctor(System.Nullable{Microsoft.Extensions.AI.ChatRole},System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L48C11-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L48C11-L50C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseUpdate.#ctor(System.Nullable{Microsoft.Extensions.AI.ChatRole},System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L55C5-L59C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L55C5-L59C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseUpdate.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L69C9-L82C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L69C9-L82C10" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatResponseUpdate.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L160C42-L160C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L160C42-L160C46" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.AuthorName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L87C9-L87C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L87C9-L87C13" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.Role", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L92C29-L92C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L92C29-L92C33" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L99C27-L99C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L99C27-L99C88" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L105C16-L105C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L105C16-L105C32" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L116C40-L116C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L116C40-L116C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L119C67-L119C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L119C67-L119C71" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L122C33-L122C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L122C33-L122C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.MessageId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L137C32-L137C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L137C32-L137C36" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.ConversationId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L148C37-L148C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L148C37-L148C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.CreatedAt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L151C40-L151C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L151C40-L151C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.FinishReason", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L154C45-L154C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L154C45-L154C49" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L157C30-L157C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L157C30-L157C34" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatResponseUpdate.ContinuationToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L173C59-L173C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs#L173C59-L173C63" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatResponseUpdate", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdate.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L48C9-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L48C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.op_Equality(Microsoft.Extensions.AI.ChatRole,Microsoft.Extensions.AI.ChatRole)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L60C9-L60C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L60C9-L60C35" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.op_Inequality(Microsoft.Extensions.AI.ChatRole,Microsoft.Extensions.AI.ChatRole)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L72C9-L72C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L72C9-L72C33" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L77C12-L77C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L77C12-L77C58" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.Equals(Microsoft.Extensions.AI.ChatRole)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L81C12-L81C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L81C12-L81C81" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L85C12-L85C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L85C12-L85C63" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L88C42-L88C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L88C42-L88C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatRole.System", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatRole.Assistant", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L25C40-L25C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L25C40-L25C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatRole.User", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L28C35-L28C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L28C35-L28C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatRole.Tool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L31C35-L31C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatRole.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L39C27-L39C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L39C27-L39C31" }, { "DocsId": "T:Microsoft.Extensions.AI.ChatRole.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatRole", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatToolMode.RequireSpecific(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L62C80-L62C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L65C80-L65C97" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatToolMode.Auto", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L36C43-L36C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L36C43-L36C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatToolMode.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L48C43-L48C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L48C43-L48C47" }, { "DocsId": "P:Microsoft.Extensions.AI.ChatToolMode.RequireAny", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L54C53-L54C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs#L57C53-L57C57" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatToolMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.#ctor(Microsoft.Extensions.AI.IChatClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L27C5-L30C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L27C5-L30C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L35C9-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L35C9-L37C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.GetResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L45C9-L45C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L45C9-L45C75" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.GetStreamingResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L50C9-L50C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L50C9-L50C84" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L55C9-L60C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L55C9-L60C61" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingChatClient.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L67C9-L71C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L67C9-L71C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingChatClient.InnerClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L40C41-L40C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs#L40C41-L40C45" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingChatClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/DelegatingChatClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IChatClient.GetResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IChatClient.GetStreamingResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IChatClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IChatClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.NoneChatToolMode.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.NoneChatToolMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L24C49-L24C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L24C49-L24C72" }, { "DocsId": "M:Microsoft.Extensions.AI.NoneChatToolMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L27C42-L27C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs#L27C42-L27C80" } ], "DocsId": "T:Microsoft.Extensions.AI.NoneChatToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/NoneChatToolMode.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.Low", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.Medium", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.High", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningEffort.ExtraHigh", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ReasoningEffort", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningEffort.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ReasoningOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.ReasoningOptions.Effort", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs#L29C38-L29C42" }, { "DocsId": "P:Microsoft.Extensions.AI.ReasoningOptions.Output", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs#L37C38-L37C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs#L37C38-L37C42" } ], "DocsId": "T:Microsoft.Extensions.AI.ReasoningOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.AI.ReasoningOutput.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningOutput.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningOutput.Summary", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ReasoningOutput.Full", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ReasoningOutput", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ReasoningOutput.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RequiredChatToolMode.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L34C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L34C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.AI.RequiredChatToolMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L50C9-L51C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L50C9-L51C59" }, { "DocsId": "M:Microsoft.Extensions.AI.RequiredChatToolMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L55C9-L56C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L55C9-L56C51" }, { "DocsId": "P:Microsoft.Extensions.AI.RequiredChatToolMode.RequiredFunctionName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L23C43-L23C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs#L23C43-L23C47" } ], "DocsId": "T:Microsoft.Extensions.AI.RequiredChatToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/RequiredChatToolMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IChatReducer.ReduceAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatReduction/IChatReducer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatReduction/IChatReducer.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IChatReducer", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatReduction/IChatReducer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatReduction/IChatReducer.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.Create(System.Func{Microsoft.Extensions.AI.RoutingContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.AI.IChatClient}})", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs#L45C9-L47C62" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.SelectClientAsync(Microsoft.Extensions.AI.RoutingContext,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.GetResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.GetStreamingResponseAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.GetService(System.Type,System.Object)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs#L102C9-L104C87" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.Dispose", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs#L110C9-L112C6" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.Dispose(System.Boolean)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs#L119C5-L119C6" + }, + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingChatClient.#ctor", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.AI.RoutingChatClient", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingChatClient.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.AI.RoutingContext.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingContext.cs#L29C5-L37C6" + }, + { + "DocsId": "P:Microsoft.Extensions.AI.RoutingContext.Messages", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingContext.cs#L43C48-L43C52" + }, + { + "DocsId": "P:Microsoft.Extensions.AI.RoutingContext.ChatOptions", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingContext.cs#L51C39-L51C43" + } + ], + "DocsId": "T:Microsoft.Extensions.AI.RoutingContext", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatRouting/RoutingContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIAnnotation.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L19C5-L21C6" }, { "DocsId": "P:Microsoft.Extensions.AI.AIAnnotation.AnnotatedRegions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L28C55-L28C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L28C55-L28C59" }, { "DocsId": "P:Microsoft.Extensions.AI.AIAnnotation.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L37C40-L37C44" }, { "DocsId": "P:Microsoft.Extensions.AI.AIAnnotation.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L42C67-L42C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs#L42C67-L42C71" } ], "DocsId": "T:Microsoft.Extensions.AI.AIAnnotation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIAnnotation.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIContent.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L40C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L40C5-L42C6" }, { "DocsId": "P:Microsoft.Extensions.AI.AIContent.Annotations", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L47C47-L47C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L47C47-L47C51" }, { "DocsId": "P:Microsoft.Extensions.AI.AIContent.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L56C40-L56C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L56C40-L56C44" }, { "DocsId": "P:Microsoft.Extensions.AI.AIContent.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L59C67-L59C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs#L59C67-L59C71" } ], "DocsId": "T:Microsoft.Extensions.AI.AIContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AIContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AnnotatedRegion.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AnnotatedRegion.cs#L20C5-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AnnotatedRegion.cs#L20C5-L22C6" } ], "DocsId": "T:Microsoft.Extensions.AI.AnnotatedRegion", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AnnotatedRegion.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/AnnotatedRegion.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.CitationAnnotation.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L17C5-L19C6" }, { "DocsId": "P:Microsoft.Extensions.AI.CitationAnnotation.Title", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L27C28-L27C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L27C28-L27C32" }, { "DocsId": "P:Microsoft.Extensions.AI.CitationAnnotation.Url", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L32C23-L32C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L32C23-L32C27" }, { "DocsId": "P:Microsoft.Extensions.AI.CitationAnnotation.FileId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L40C29-L40C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L40C29-L40C33" }, { "DocsId": "P:Microsoft.Extensions.AI.CitationAnnotation.ToolName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L47C31-L47C35" }, { "DocsId": "P:Microsoft.Extensions.AI.CitationAnnotation.Snippet", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L52C30-L52C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs#L52C30-L52C34" } ], "DocsId": "T:Microsoft.Extensions.AI.CitationAnnotation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CitationAnnotation.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.CodeInterpreterToolCallContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs#L22C11-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs#L22C11-L24C6" }, { "DocsId": "P:Microsoft.Extensions.AI.CodeInterpreterToolCallContent.Inputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs#L35C39-L35C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs#L35C39-L35C43" } ], "DocsId": "T:Microsoft.Extensions.AI.CodeInterpreterToolCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.CodeInterpreterToolResultContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs#L18C11-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs#L18C11-L20C6" }, { "DocsId": "P:Microsoft.Extensions.AI.CodeInterpreterToolResultContent.Outputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs#L30C40-L30C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs#L30C40-L30C44" } ], "DocsId": "T:Microsoft.Extensions.AI.CodeInterpreterToolResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/CodeInterpreterToolResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DataContent.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L69C11-L71C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L69C11-L71C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L83C5-L114C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L83C5-L114C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.#ctor(System.ReadOnlyMemory{System.Byte},System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L124C5-L129C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L124C5-L129C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.LoadFromAsync(System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.LoadFromAsync(System.IO.Stream,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.SaveToAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.DataContent.HasTopLevelMediaType(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L264C62-L264C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L264C62-L264C121" }, { "DocsId": "P:Microsoft.Extensions.AI.DataContent.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L279C13-L303C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L279C13-L303C25" }, { "DocsId": "P:Microsoft.Extensions.AI.DataContent.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L314C31-L314C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L314C31-L314C35" }, { "DocsId": "P:Microsoft.Extensions.AI.DataContent.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L327C27-L327C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L327C27-L327C31" }, { "DocsId": "P:Microsoft.Extensions.AI.DataContent.Data", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L342C13-L349C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L342C13-L349C46" }, { "DocsId": "P:Microsoft.Extensions.AI.DataContent.Base64Data", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L360C13-L363C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs#L360C13-L363C42" } ], "DocsId": "T:Microsoft.Extensions.AI.DataContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/DataContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ErrorContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L19C5-L22C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ErrorContent.Message", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L28C16-L28C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L28C16-L28C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ErrorContent.ErrorCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L33C32-L33C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L33C32-L33C36" }, { "DocsId": "P:Microsoft.Extensions.AI.ErrorContent.Details", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L36C30-L36C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs#L36C30-L36C34" } ], "DocsId": "T:Microsoft.Extensions.AI.ErrorContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ErrorContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.FunctionCallContent.#ctor(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L27C11-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L27C11-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.FunctionCallContent.CreateFromParsedArguments``1(``0,System.String,System.String,System.Func{``0,System.Collections.Generic.IDictionary{System.String,System.Object}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L83C9-L103C11" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L83C9-L103C11" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionCallContent.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L36C26-L36C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L36C26-L36C30" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionCallContent.Arguments", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L41C54-L41C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L41C54-L41C58" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionCallContent.Exception", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L52C35-L52C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L52C35-L52C39" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionCallContent.InformationalOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L62C37-L62C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs#L62C37-L62C41" } ], "DocsId": "T:Microsoft.Extensions.AI.FunctionCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.FunctionResultContent.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L28C11-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L28C11-L31C6" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionResultContent.Result", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L41C29-L41C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L41C29-L41C33" }, { "DocsId": "P:Microsoft.Extensions.AI.FunctionResultContent.Exception", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L52C35-L52C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs#L52C35-L52C39" } ], "DocsId": "T:Microsoft.Extensions.AI.FunctionResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/FunctionResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L29C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L29C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileContent.HasTopLevelMediaType(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L113C62-L113C146" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L113C62-L113C146" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.FileId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L41C16-L41C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L41C16-L41C21" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L49C9-L49C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L49C9-L49C13" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L54C27-L54C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L54C27-L54C31" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.SizeInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L57C32-L57C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L57C32-L57C36" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.CreatedAt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L60C40-L60C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L60C40-L60C44" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.Purpose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L71C16-L71C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L71C16-L71C27" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileContent.Scope", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L89C16-L89C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs#L89C16-L89C25" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedFileContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedVectorStoreContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs#L29C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs#L29C5-L32C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedVectorStoreContent.VectorStoreId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs#L41C16-L41C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs#L41C16-L41C30" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedVectorStoreContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/HostedVectorStoreContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationToolCallContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolCallContent.cs#L16C11-L18C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolCallContent.cs#L16C11-L18C6" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationToolCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationToolResultContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs#L22C11-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs#L22C11-L24C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationToolResultContent.Outputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs#L33C40-L33C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs#L33C40-L33C44" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationToolResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ImageGenerationToolResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.InputRequestContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs#L22C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.AI.InputRequestContent.RequestId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs#L30C31-L30C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs#L30C31-L30C35" } ], "DocsId": "T:Microsoft.Extensions.AI.InputRequestContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputRequestContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.InputResponseContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs#L22C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.AI.InputResponseContent.RequestId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs#L30C31-L30C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs#L30C31-L30C35" } ], "DocsId": "T:Microsoft.Extensions.AI.InputResponseContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/InputResponseContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.McpServerToolCallContent.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L35C11-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L35C11-L39C6" }, { "DocsId": "P:Microsoft.Extensions.AI.McpServerToolCallContent.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L44C26-L44C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L44C26-L44C30" }, { "DocsId": "P:Microsoft.Extensions.AI.McpServerToolCallContent.ServerName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L49C33-L49C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L49C33-L49C37" }, { "DocsId": "P:Microsoft.Extensions.AI.McpServerToolCallContent.Arguments", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L54C54-L54C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs#L54C54-L54C58" } ], "DocsId": "T:Microsoft.Extensions.AI.McpServerToolCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.McpServerToolResultContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs#L26C11-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs#L26C11-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.McpServerToolResultContent.Outputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs#L33C40-L33C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs#L33C40-L33C44" } ], "DocsId": "T:Microsoft.Extensions.AI.McpServerToolResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/McpServerToolResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L19C5-L22C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextContent.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L35C42-L35C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L35C42-L35C46" }, { "DocsId": "P:Microsoft.Extensions.AI.TextContent.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L30C16-L30C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs#L30C16-L30C37" } ], "DocsId": "T:Microsoft.Extensions.AI.TextContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextReasoningContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L24C5-L27C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextReasoningContent.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L56C42-L56C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L56C42-L56C46" }, { "DocsId": "P:Microsoft.Extensions.AI.TextReasoningContent.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L35C16-L35C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L35C16-L35C37" }, { "DocsId": "P:Microsoft.Extensions.AI.TextReasoningContent.ProtectedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L53C36-L53C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs#L53C36-L53C40" } ], "DocsId": "T:Microsoft.Extensions.AI.TextReasoningContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextReasoningContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextSpanAnnotatedRegion.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L17C5-L19C6" }, { "DocsId": "P:Microsoft.Extensions.AI.TextSpanAnnotatedRegion.StartIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L25C30-L25C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TextSpanAnnotatedRegion.EndIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L31C28-L31C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs#L31C28-L31C32" } ], "DocsId": "T:Microsoft.Extensions.AI.TextSpanAnnotatedRegion", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/TextSpanAnnotatedRegion.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ToolApprovalRequestContent.#ctor(System.String,Microsoft.Extensions.AI.ToolCallContent)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L25C11-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L65C60-L30C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ToolApprovalRequestContent.CreateResponse(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L42C9-L42C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L74C9-L74C91" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolApprovalRequestContent.ToolCall", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L33C39-L33C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L35C39-L35C43" + }, + { + "DocsId": "P:Microsoft.Extensions.AI.ToolApprovalRequestContent.RequiresConfirmation", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs#L53C16-L53C40" } ], "DocsId": "T:Microsoft.Extensions.AI.ToolApprovalRequestContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalRequestContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ToolApprovalResponseContent.#ctor(System.String,System.Boolean,Microsoft.Extensions.AI.ToolCallContent)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L26C11-L30C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L26C11-L30C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolApprovalResponseContent.Approved", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L35C28-L35C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L35C28-L35C32" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolApprovalResponseContent.ToolCall", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L40C39-L40C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L40C39-L40C43" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolApprovalResponseContent.Reason", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L45C29-L45C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs#L45C29-L45C33" } ], "DocsId": "T:Microsoft.Extensions.AI.ToolApprovalResponseContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolApprovalResponseContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ToolCallContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolCallContent.CallId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs#L33C28-L33C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs#L33C28-L33C32" } ], "DocsId": "T:Microsoft.Extensions.AI.ToolCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ToolResultContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ToolResultContent.CallId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs#L37C28-L37C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs#L37C28-L37C32" } ], "DocsId": "T:Microsoft.Extensions.AI.ToolResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/ToolResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.UriContent.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L42C11-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L42C11-L44C6" }, { "DocsId": "M:Microsoft.Extensions.AI.UriContent.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L56C5-L62C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L56C5-L62C6" }, { "DocsId": "M:Microsoft.Extensions.AI.UriContent.HasTopLevelMediaType(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L90C62-L90C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L90C62-L90C121" }, { "DocsId": "P:Microsoft.Extensions.AI.UriContent.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L67C16-L67C20" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L67C16-L67C20" }, { "DocsId": "P:Microsoft.Extensions.AI.UriContent.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L75C16-L75C26" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs#L75C16-L75C26" } ], "DocsId": "T:Microsoft.Extensions.AI.UriContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UriContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.UsageContent.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L20C5-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L20C5-L23C6" }, { "DocsId": "M:Microsoft.Extensions.AI.UsageContent.#ctor(Microsoft.Extensions.AI.UsageDetails)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L28C5-L31C6" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageContent.Details", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L36C16-L36C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs#L36C16-L36C24" } ], "DocsId": "T:Microsoft.Extensions.AI.UsageContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/UsageContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.WebSearchToolCallContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs#L22C11-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs#L22C11-L24C6" }, { "DocsId": "P:Microsoft.Extensions.AI.WebSearchToolCallContent.Queries", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs#L29C37-L29C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs#L29C37-L29C41" } ], "DocsId": "T:Microsoft.Extensions.AI.WebSearchToolCallContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolCallContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.WebSearchToolResultContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs#L23C11-L25C6" }, { "DocsId": "P:Microsoft.Extensions.AI.WebSearchToolResultContent.Outputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs#L35C40-L35C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs#L35C40-L35C44" } ], "DocsId": "T:Microsoft.Extensions.AI.WebSearchToolResultContent", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Contents/WebSearchToolResultContent.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.BinaryEmbedding.#ctor(System.Collections.BitArray)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L23C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L23C5-L26C6" }, { "DocsId": "P:Microsoft.Extensions.AI.BinaryEmbedding.Vector", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L32C16-L32C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L32C16-L32C23" }, { "DocsId": "P:Microsoft.Extensions.AI.BinaryEmbedding.Dimensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L38C39-L38C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L38C39-L38C53" }, { "DocsId": "T:Microsoft.Extensions.AI.BinaryEmbedding.VectorConverter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.BinaryEmbedding", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.#ctor(Microsoft.Extensions.AI.IEmbeddingGenerator{`0,`1})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L39C9-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L39C9-L41C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.GenerateAsync(System.Collections.Generic.IEnumerable{`0},Microsoft.Extensions.AI.EmbeddingGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L45C9-L45C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L45C9-L45C73" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L50C9-L55C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L50C9-L55C64" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L62C9-L66C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L62C9-L66C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2.InnerGenerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L34C72-L34C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs#L34C72-L34C76" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingEmbeddingGenerator`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/DelegatingEmbeddingGenerator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Embedding.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L25C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L25C5-L27C6" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding.CreatedAt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L30C40-L30C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L30C40-L30C44" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding.Dimensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L37C37-L37C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L37C37-L37C41" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L40C30-L40C34" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L43C67-L43C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs#L43C67-L43C71" } ], "DocsId": "T:Microsoft.Extensions.AI.Embedding", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGenerationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L14C5-L16C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L14C5-L16C6" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGenerationOptions.#ctor(Microsoft.Extensions.AI.EmbeddingGenerationOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L19C5-L30C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L19C5-L30C6" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGenerationOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L78C58-L78C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L78C58-L78C67" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGenerationOptions.Dimensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L35C9-L35C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L35C9-L35C13" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGenerationOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L48C30-L48C34" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGenerationOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L51C67-L51C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L51C67-L51C71" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGenerationOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L70C75-L70C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs#L70C75-L70C79" } ], "DocsId": "T:Microsoft.Extensions.AI.EmbeddingGenerationOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGenerationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GetService``1(Microsoft.Extensions.AI.IEmbeddingGenerator,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L29C9-L31C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L29C9-L31C107" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GetRequiredService(Microsoft.Extensions.AI.IEmbeddingGenerator,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L52C9-L57C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L52C9-L57C80" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GetRequiredService``1(Microsoft.Extensions.AI.IEmbeddingGenerator,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L77C9-L84C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs#L77C9-L84C24" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GenerateVectorAsync``2(Microsoft.Extensions.AI.IEmbeddingGenerator{``0,Microsoft.Extensions.AI.Embedding{``1}},``0,Microsoft.Extensions.AI.EmbeddingGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GenerateAsync``2(Microsoft.Extensions.AI.IEmbeddingGenerator{``0,``1},``0,Microsoft.Extensions.AI.EmbeddingGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions.GenerateAndZipAsync``2(Microsoft.Extensions.AI.IEmbeddingGenerator{``0,``1},System.Collections.Generic.IEnumerable{``0},Microsoft.Extensions.AI.EmbeddingGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.EmbeddingGeneratorExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata.#ctor(System.String,System.Uri,System.String,System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L19C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L19C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L32C35-L32C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L32C35-L32C39" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L35C31-L35C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L35C31-L35C35" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata.DefaultModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L42C37-L42C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L42C37-L42C41" }, { "DocsId": "P:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata.DefaultModelDimensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L49C42-L49C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs#L49C42-L49C46" } ], "DocsId": "T:Microsoft.Extensions.AI.EmbeddingGeneratorMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/EmbeddingGeneratorMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Embedding`1.#ctor(System.ReadOnlyMemory{`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L16C5-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L16C5-L19C6" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding`1.Vector", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L22C39-L22C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L22C39-L22C43" }, { "DocsId": "P:Microsoft.Extensions.AI.Embedding`1.Dimensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L26C39-L26C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs#L26C39-L26C52" } ], "DocsId": "T:Microsoft.Extensions.AI.Embedding`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/Embedding%7BT%7D.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L21C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L21C5-L24C6" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.#ctor(System.Collections.Generic.IEnumerable{`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L37C5-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L37C5-L40C6" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.System#Collections#Generic#ICollection#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L59C48-L59C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L59C48-L59C53" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Add(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L62C41-L62C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L62C41-L62C62" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.AddRange(System.Collections.Generic.IEnumerable{`0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L66C60-L66C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L66C60-L66C87" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L69C28-L69C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L69C28-L69C47" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Contains(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L72C46-L72C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L72C46-L72C72" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.CopyTo(`0[],System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L75C63-L75C100" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L75C63-L75C100" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L78C55-L78C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L78C55-L78C82" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L81C48-L81C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L81C48-L81C63" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.IndexOf(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L84C44-L84C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L84C44-L84C69" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Insert(System.Int32,`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L87C55-L87C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L87C55-L87C86" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Remove(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L90C44-L90C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L90C44-L90C68" }, { "DocsId": "M:Microsoft.Extensions.AI.GeneratedEmbeddings`1.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L93C40-L93C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L93C40-L93C67" }, { "DocsId": "P:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L43C34-L43C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L43C34-L43C38" }, { "DocsId": "P:Microsoft.Extensions.AI.GeneratedEmbeddings`1.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L46C67-L46C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L46C67-L46C71" }, { "DocsId": "P:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L51C16-L51C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L51C16-L51C34" }, { "DocsId": "P:Microsoft.Extensions.AI.GeneratedEmbeddings`1.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L56C25-L56C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L56C25-L56C42" }, { "DocsId": "P:Microsoft.Extensions.AI.GeneratedEmbeddings`1.System#Collections#Generic#ICollection#IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L59C48-L59C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs#L59C48-L59C53" } ], "DocsId": "T:Microsoft.Extensions.AI.GeneratedEmbeddings`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/GeneratedEmbeddings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IEmbeddingGenerator.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IEmbeddingGenerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IEmbeddingGenerator`2.GenerateAsync(System.Collections.Generic.IEnumerable{`0},Microsoft.Extensions.AI.EmbeddingGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator%7BTInput%2CTEmbedding%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator%7BTInput%2CTEmbedding%7D.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IEmbeddingGenerator`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator%7BTInput%2CTEmbedding%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/IEmbeddingGenerator%7BTInput%2CTEmbedding%7D.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.#ctor(Microsoft.Extensions.AI.IHostedFileClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L30C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L30C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.UploadAsync(System.IO.Stream,System.String,System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L45C9-L45C90" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L45C9-L45C90" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.DownloadAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L52C9-L52C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L52C9-L52C70" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.GetFileInfoAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L59C9-L59C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L59C9-L59C73" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.ListFilesAsync(Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L65C9-L65C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L65C9-L65C63" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.DeleteAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L72C9-L72C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L72C9-L72C68" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L77C9-L82C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L77C9-L82C61" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L88C9-L90C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L88C9-L90C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingHostedFileClient.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L100C9-L104C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L100C9-L104C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingHostedFileClient.InnerClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L36C47-L36C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs#L36C47-L36C51" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingHostedFileClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/DelegatingHostedFileClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.UploadAsync(Microsoft.Extensions.AI.IHostedFileClient,Microsoft.Extensions.AI.DataContent,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L38C9-L45C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L38C9-L45C104" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.UploadAsync(Microsoft.Extensions.AI.IHostedFileClient,System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.DownloadToAsync(Microsoft.Extensions.AI.IHostedFileClient,System.String,System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.DownloadAsync(Microsoft.Extensions.AI.IHostedFileClient,Microsoft.Extensions.AI.HostedFileContent,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L155C9-L164C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L155C9-L164C84" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.DownloadAsDataContentAsync(Microsoft.Extensions.AI.IHostedFileClient,System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.GetMetadata(Microsoft.Extensions.AI.IHostedFileClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L205C9-L207C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L205C9-L207C96" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.GetService``1(Microsoft.Extensions.AI.IHostedFileClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L220C9-L222C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L220C9-L222C104" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.GetRequiredService(Microsoft.Extensions.AI.IHostedFileClient,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L242C9-L247C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L242C9-L247C80" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientExtensions.GetRequiredService``1(Microsoft.Extensions.AI.IHostedFileClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L266C9-L273C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs#L266C9-L273C24" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileClientExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientMetadata.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L21C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L21C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L32C35-L32C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L32C35-L32C39" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L35C31-L35C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs#L35C31-L35C35" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileClientMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L18C5-L20C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientOptions.#ctor(Microsoft.Extensions.AI.HostedFileClientOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L27C5-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L27C5-L39C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileClientOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L97C55-L97C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L97C55-L97C64" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientOptions.Scope", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L49C28-L49C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L49C28-L49C32" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientOptions.Purpose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L64C30-L64C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L64C30-L64C34" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientOptions.Limit", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L70C25-L70C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L70C25-L70C29" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L90C73-L90C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L90C73-L90C77" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileClientOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L93C67-L93C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs#L93C67-L93C71" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileClientOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileClientOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L34C5-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L34C5-L36C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.SetLength(System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L58C51-L58C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L58C51-L58C84" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L62C9-L62C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L62C9-L62C42" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.EndWrite(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L65C64-L65C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L65C64-L65C97" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.WriteByte(System.Byte)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L68C51-L68C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L68C51-L68C84" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.Write(System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L71C73-L71C106" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L71C73-L71C106" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.Write(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L75C62-L75C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L75C62-L75C95" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L80C9-L80C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L80C9-L80C42" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L85C9-L85C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L85C9-L85C42" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileDownloadStream.ToDataContentAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileDownloadStream.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L44C41-L44C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L44C41-L44C45" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileDownloadStream.FileName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L52C40-L52C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L52C40-L52C44" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileDownloadStream.CanWrite", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L55C38-L55C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs#L55C38-L55C43" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileDownloadStream", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/HostedFileDownloadStream.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.UploadAsync(System.IO.Stream,System.String,System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.DownloadAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.GetFileInfoAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.ListFilesAsync(Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.DeleteAsync(System.String,Microsoft.Extensions.AI.HostedFileClientOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IHostedFileClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IHostedFileClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Files/IHostedFileClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunction.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L15C5-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L15C5-L17C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunction.InvokeAsync(Microsoft.Extensions.AI.AIFunctionArguments,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L37C9-L37C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L37C9-L37C60" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunction.InvokeCoreAsync(Microsoft.Extensions.AI.AIFunctionArguments,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunction.AsDeclarationOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L53C57-L53C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L53C57-L53C89" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunction.UnderlyingMethod", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L25C52-L25C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L25C52-L25C56" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunction.JsonSerializerOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L28C67-L28C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs#L28C67-L28C97" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunction", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunction.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L35C11-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L35C11-L37C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L54C11-L56C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L54C11-L56C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.#ctor(System.Collections.Generic.IEqualityComparer{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L61C11-L63C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L61C11-L63C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object},System.Collections.Generic.IEqualityComparer{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L78C5-L84C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L78C5-L84C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#ICollection>#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L114C67-L114C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L114C67-L114C72" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#IReadOnlyDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L117C70-L117C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L117C70-L117C74" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#IReadOnlyDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L120C73-L120C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L120C73-L120C79" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L123C51-L123C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L123C51-L123C77" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#ICollection>#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L127C9-L127C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L127C9-L127C75" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L130C28-L130C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L130C28-L130C46" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#ICollection>#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L134C9-L134C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L134C9-L134C80" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L137C44-L137C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L137C44-L137C71" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L141C9-L141C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L141C9-L141C91" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L144C74-L144C100" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L144C74-L144C100" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L147C39-L147C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L147C39-L147C61" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#ICollection>#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L151C9-L151C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L151C9-L151C78" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.TryGetValue(System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L154C63-L154C101" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L154C63-L154C101" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L157C48-L157C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L157C48-L157C63" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L87C41-L87C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L87C41-L87C45" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Context", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L95C52-L95C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L95C52-L95C56" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Item(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L100C16-L100C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L100C16-L100C31" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L105C40-L105C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L105C40-L105C55" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L108C43-L108C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L108C43-L108C60" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L111C25-L111C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L111C25-L111C41" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#ICollection>#IsReadOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L114C67-L114C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L114C67-L114C72" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#IReadOnlyDictionary#Keys", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L117C70-L117C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L117C70-L117C74" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionArguments.System#Collections#Generic#IReadOnlyDictionary#Values", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L120C73-L120C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs#L120C73-L120C79" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunctionArguments", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L19C5-L21C6" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionDeclaration.JsonSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L50C46-L50C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L50C46-L50C79" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionDeclaration.ReturnJsonSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L67C53-L67C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs#L67C53-L67C57" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunctionDeclaration", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionDeclaration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.Create(System.Delegate,Microsoft.Extensions.AI.AIFunctionFactoryOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L129C9-L131C101" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L129C9-L131C101" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.Create(System.Delegate,System.String,System.String,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L203C9-L214C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L204C9-L215C88" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.Create(System.Reflection.MethodInfo,System.Object,Microsoft.Extensions.AI.AIFunctionFactoryOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L300C9-L302C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L301C9-L303C87" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.Create(System.Reflection.MethodInfo,System.Object,System.String,System.String,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L384C9-L395C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L386C9-L397C74" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.Create(System.Reflection.MethodInfo,System.Func{Microsoft.Extensions.AI.AIFunctionArguments,System.Object},Microsoft.Extensions.AI.AIFunctionFactoryOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L494C9-L494C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L496C9-L496C91" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactory.CreateDeclaration(System.String,System.String,System.Text.Json.JsonElement,System.Nullable{System.Text.Json.JsonElement})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L513C9-L517C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs#L515C9-L519C30" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunctionFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L22C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L22C5-L24C6" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.SerializerOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L38C55-L38C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L38C55-L38C59" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.JsonSchemaCreateOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L49C65-L49C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L49C65-L49C69" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L55C27-L55C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L55C27-L55C31" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.Description", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L62C34-L62C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L62C34-L62C38" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L70C73-L70C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L70C73-L70C77" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ConfigureParameterBinding", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L85C86-L85C90" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L85C86-L85C90" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.MarshalResult", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L118C89-L118C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L118C89-L118C93" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ExcludeResultSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L133C39-L133C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L133C39-L133C43" }, { "DocsId": "T:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunctionFactoryOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.AI.AIFunctionNameAttribute.#ctor(System.String)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionNameAttribute.cs#L24C5-L27C6" + }, + { + "DocsId": "P:Microsoft.Extensions.AI.AIFunctionNameAttribute.Name", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionNameAttribute.cs#L30C26-L30C30" + } + ], + "DocsId": "T:Microsoft.Extensions.AI.AIFunctionNameAttribute", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionNameAttribute.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.AI.AIParameterNameAttribute.#ctor(System.String)", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIParameterNameAttribute.cs#L24C5-L27C6" + }, + { + "DocsId": "P:Microsoft.Extensions.AI.AIParameterNameAttribute.Name", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIParameterNameAttribute.cs#L30C26-L30C30" + } + ], + "DocsId": "T:Microsoft.Extensions.AI.AIParameterNameAttribute", + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIParameterNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ApprovalRequiredAIFunction.#ctor(Microsoft.Extensions.AI.AIFunction)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/ApprovalRequiredAIFunction.cs#L24C11-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/ApprovalRequiredAIFunction.cs#L24C11-L26C6" } ], "DocsId": "T:Microsoft.Extensions.AI.ApprovalRequiredAIFunction", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/ApprovalRequiredAIFunction.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/ApprovalRequiredAIFunction.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingAIFunction.#ctor(Microsoft.Extensions.AI.AIFunction)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L24C5-L27C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingAIFunction.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L54C42-L54C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L54C42-L54C66" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingAIFunction.InvokeCoreAsync(Microsoft.Extensions.AI.AIFunctionArguments,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L58C9-L58C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L58C9-L58C64" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingAIFunction.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L63C9-L67C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L63C9-L67C63" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.InnerFunction", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L30C42-L30C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L30C42-L30C46" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L33C36-L33C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L33C36-L33C54" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.Description", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L36C43-L36C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L36C43-L36C68" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.JsonSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L39C47-L39C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L39C47-L39C71" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.ReturnJsonSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L42C54-L42C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L42C54-L42C84" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.JsonSerializerOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L45C68-L45C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L45C68-L45C103" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.UnderlyingMethod", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L48C53-L48C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L48C53-L48C83" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingAIFunction.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L51C82-L51C116" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs#L51C82-L51C116" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingAIFunction", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/DelegatingAIFunction.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolAlwaysRequireApprovalMode.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolAlwaysRequireApprovalMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L24C49-L24C100" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L24C49-L24C100" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolAlwaysRequireApprovalMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L27C42-L27C108" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs#L27C42-L27C108" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedMcpServerToolAlwaysRequireApprovalMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolAlwaysRequireApprovalMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolApprovalMode.RequireSpecific(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L44C12-L44C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L44C12-L44C78" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerToolApprovalMode.AlwaysRequire", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L26C80-L26C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L26C80-L26C84" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerToolApprovalMode.NeverRequire", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L31C78-L31C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs#L31C78-L31C82" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedMcpServerToolApprovalMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolApprovalMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolNeverRequireApprovalMode.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolNeverRequireApprovalMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L24C49-L24C99" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L24C49-L24C99" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolNeverRequireApprovalMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L27C42-L27C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs#L27C42-L27C107" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedMcpServerToolNeverRequireApprovalMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolNeverRequireApprovalMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode.#ctor(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L20C5-L24C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L37C49-L39C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L37C49-L39C87" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L43C9-L43C113" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L43C9-L43C113" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode.AlwaysRequireApprovalToolNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L29C60-L29C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L29C60-L29C64" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode.NeverRequireApprovalToolNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L34C59-L34C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs#L34C59-L34C63" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/HostedMcpServerToolRequireSpecificApprovalMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingImageGenerator.#ctor(Microsoft.Extensions.AI.IImageGenerator)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingImageGenerator.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L36C9-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L36C9-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingImageGenerator.GenerateAsync(Microsoft.Extensions.AI.ImageGenerationRequest,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L47C9-L47C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L47C9-L47C82" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingImageGenerator.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L53C9-L58C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L53C9-L58C64" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingImageGenerator.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L65C9-L69C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L65C9-L69C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingImageGenerator.InnerGenerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L41C48-L41C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs#L41C48-L41C52" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingImageGenerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/DelegatingImageGenerator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IImageGenerator.GenerateAsync(Microsoft.Extensions.AI.ImageGenerationRequest,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IImageGenerator.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IImageGenerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/IImageGenerator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L16C5-L18C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationOptions.#ctor(Microsoft.Extensions.AI.ImageGenerationOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L21C5-L35C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L21C5-L35C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L94C54-L94C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L94C54-L94C63" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L40C25-L40C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L40C25-L40C29" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.ImageSize", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L48C30-L48C34" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L53C32-L53C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L53C32-L53C36" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L58C30-L58C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L58C30-L58C34" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L77C71-L77C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L77C71-L77C75" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.ResponseFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L82C60-L82C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L82C60-L82C64" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.StreamingCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L87C34-L87C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L87C34-L87C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L90C67-L90C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs#L90C67-L90C71" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.AI.ImageGenerationResponseFormat.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ImageGenerationResponseFormat.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ImageGenerationResponseFormat.Data", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.ImageGenerationResponseFormat.Hosted", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationResponseFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationRequest.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L15C5-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L15C5-L17C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L21C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L21C5-L24C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationRequest.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L29C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L29C5-L33C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationRequest.Prompt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L36C29-L36C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L36C29-L36C33" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationRequest.OriginalImages", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L45C53-L45C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs#L45C53-L45C57" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationRequest", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationRequest.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationResponse.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L17C5-L19C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGenerationResponse.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L23C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L23C5-L26C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationResponse.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L35C40-L35C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L35C40-L35C44" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationResponse.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L47C16-L47C28" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L47C16-L47C28" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGenerationResponse.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L52C34-L52C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs#L52C34-L52C38" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGenerationResponse", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGenerationResponse.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.GetService``1(Microsoft.Extensions.AI.IImageGenerator,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L31C9-L33C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L31C9-L33C107" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.GetRequiredService(Microsoft.Extensions.AI.IImageGenerator,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L53C9-L58C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L53C9-L58C80" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.GetRequiredService``1(Microsoft.Extensions.AI.IImageGenerator,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L77C9-L84C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L77C9-L84C24" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.GenerateImagesAsync(Microsoft.Extensions.AI.IImageGenerator,System.String,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L102C9-L105C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L102C9-L105C104" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.EditImagesAsync(Microsoft.Extensions.AI.IImageGenerator,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.AIContent},System.String,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L125C9-L129C120" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L125C9-L129C120" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.EditImageAsync(Microsoft.Extensions.AI.IImageGenerator,Microsoft.Extensions.AI.DataContent,System.String,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L149C9-L153C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L149C9-L153C121" }, { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorExtensions.EditImageAsync(Microsoft.Extensions.AI.IImageGenerator,System.ReadOnlyMemory{System.Byte},System.String,System.String,Microsoft.Extensions.AI.ImageGenerationOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L177C9-L185C119" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs#L177C9-L185C119" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGeneratorExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ImageGeneratorMetadata.#ctor(System.String,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L21C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L21C5-L26C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGeneratorMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L33C35-L33C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L33C35-L33C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGeneratorMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L36C31-L36C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L36C31-L36C35" }, { "DocsId": "P:Microsoft.Extensions.AI.ImageGeneratorMetadata.DefaultModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L43C37-L43C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs#L43C37-L43C41" } ], "DocsId": "T:Microsoft.Extensions.AI.ImageGeneratorMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Image/ImageGeneratorMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.CreateConversationItemRealtimeClientMessage.#ctor(Microsoft.Extensions.AI.RealtimeConversationItem)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs#L24C5-L27C6" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateConversationItemRealtimeClientMessage.Item", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs#L35C16-L35C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs#L35C16-L35C21" } ], "DocsId": "T:Microsoft.Extensions.AI.CreateConversationItemRealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateConversationItemRealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L33C5-L35C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L33C5-L35C6" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.Items", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L40C53-L40C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L40C53-L40C57" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.OutputAudioOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L49C54-L49C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L49C54-L49C58" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.OutputVoice", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L58C34-L58C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L58C34-L58C38" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.ExcludeFromConversation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L69C44-L69C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L69C44-L69C48" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.Instructions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L78C35-L78C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L78C35-L78C39" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.MaxOutputTokens", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L87C35-L87C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L87C35-L87C39" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L97C67-L97C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L97C67-L97C71" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.OutputModalities", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L106C46-L106C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L106C46-L106C50" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.ToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L115C37-L115C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L115C37-L115C41" }, { "DocsId": "P:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage.Tools", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L124C35-L124C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs#L124C35-L124C39" } ], "DocsId": "T:Microsoft.Extensions.AI.CreateResponseRealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/CreateResponseRealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingRealtimeClient.#ctor(Microsoft.Extensions.AI.IRealtimeClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingRealtimeClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L36C9-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L36C9-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingRealtimeClient.CreateSessionAsync(Microsoft.Extensions.AI.RealtimeSessionOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L46C9-L46C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L46C9-L46C67" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingRealtimeClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L51C9-L56C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L51C9-L56C61" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingRealtimeClient.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L63C9-L67C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L63C9-L67C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingRealtimeClient.InnerClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L41C45-L41C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs#L41C45-L41C49" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingRealtimeClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/DelegatingRealtimeClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ErrorRealtimeServerMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L21C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L21C5-L24C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ErrorRealtimeServerMessage.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L29C34-L29C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L29C34-L29C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ErrorRealtimeServerMessage.OriginatingMessageId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L38C43-L38C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs#L38C43-L38C47" } ], "DocsId": "T:Microsoft.Extensions.AI.ErrorRealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ErrorRealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.InputAudioBufferAppendRealtimeClientMessage.#ctor(Microsoft.Extensions.AI.DataContent)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs#L24C5-L27C6" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioBufferAppendRealtimeClientMessage.Content", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs#L38C16-L38C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs#L38C16-L38C24" } ], "DocsId": "T:Microsoft.Extensions.AI.InputAudioBufferAppendRealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferAppendRealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.InputAudioBufferCommitRealtimeClientMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferCommitRealtimeClientMessage.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferCommitRealtimeClientMessage.cs#L18C5-L20C6" } ], "DocsId": "T:Microsoft.Extensions.AI.InputAudioBufferCommitRealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferCommitRealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioBufferCommitRealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.#ctor(Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.ContentIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L33C32-L33C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L33C32-L33C36" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.ItemId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L38C29-L38C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L38C29-L38C33" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.Transcription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L43C36-L43C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L43C36-L43C40" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L52C34-L52C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L52C34-L52C38" }, { "DocsId": "P:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L57C34-L57C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs#L57C34-L57C38" } ], "DocsId": "T:Microsoft.Extensions.AI.InputAudioTranscriptionRealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/InputAudioTranscriptionRealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IRealtimeClient.CreateSessionAsync(Microsoft.Extensions.AI.RealtimeSessionOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IRealtimeClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IRealtimeClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.IRealtimeClientSession.SendAsync(Microsoft.Extensions.AI.RealtimeClientMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IRealtimeClientSession.GetStreamingResponseAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.IRealtimeClientSession.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.IRealtimeClientSession.Options", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.IRealtimeClientSession", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/IRealtimeClientSession.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.#ctor(Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L24C5-L27C6" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.ContentIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L32C32-L32C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L32C32-L32C36" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L43C27-L43C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L43C27-L43C31" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.Audio", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L54C28-L54C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L54C28-L54C32" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.ItemId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L59C29-L59C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L59C29-L59C33" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.OutputIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L64C31-L64C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L64C31-L64C35" }, { "DocsId": "P:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs#L72C33-L72C37" } ], "DocsId": "T:Microsoft.Extensions.AI.OutputTextAudioRealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/OutputTextAudioRealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeAudioFormat.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L18C5-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L18C5-L22C6" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeAudioFormat.MediaType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L27C31-L27C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L27C31-L27C35" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeAudioFormat.SampleRate", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L32C29-L32C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs#L32C29-L32C33" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeAudioFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeAudioFormat.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeClientMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeClientMessage.MessageId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs#L19C32-L19C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs#L21C32-L21C36" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeClientMessage.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs#L29C40-L29C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs#L31C40-L31C44" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeConversationItem.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent},System.String,System.Nullable{Microsoft.Extensions.AI.ChatRole})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L26C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L26C5-L31C6" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeConversationItem.Id", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L40C25-L40C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L40C25-L40C29" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeConversationItem.Role", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L49C29-L49C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L49C29-L49C33" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeConversationItem.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L54C40-L54C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L54C40-L54C44" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeConversationItem.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L60C40-L60C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs#L62C40-L62C44" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeConversationItem", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeConversationItem.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.AI.RealtimeResponseStatus.Completed", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L24C38-L24C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L24C38-L24C42" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeResponseStatus.Cancelled", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L30C38-L30C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L30C38-L30C42" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeResponseStatus.Incomplete", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L36C39-L36C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L36C39-L36C43" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeResponseStatus.Failed", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L41C35-L41C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs#L41C35-L41C39" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeResponseStatus", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeResponseStatus.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessage.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessage.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L18C45-L18C49" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessage.MessageId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L26C32-L26C36" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessage.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L34C40-L34C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs#L36C40-L36C44" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L109C9-L110C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L109C9-L110C6" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.op_Equality(Microsoft.Extensions.AI.RealtimeServerMessageType,Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L121C9-L121C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L121C9-L121C35" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.op_Inequality(Microsoft.Extensions.AI.RealtimeServerMessageType,Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L133C9-L133C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L133C9-L133C33" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L138C12-L138C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L138C12-L138C67" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.Equals(Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L142C12-L142C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L142C12-L142C81" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L146C12-L146C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L146C12-L146C83" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L149C42-L149C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L149C42-L149C63" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.RawContentOnly", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L46C62-L46C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L46C62-L46C66" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.InputAudioTranscriptionCompleted", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L49C80-L49C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L49C80-L49C84" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.InputAudioTranscriptionDelta", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L52C76-L52C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L52C76-L52C80" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.InputAudioTranscriptionFailed", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L55C77-L55C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L55C77-L55C81" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputTextDelta", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L58C63-L58C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L58C63-L58C67" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputTextDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L61C62-L61C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L61C62-L61C66" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputAudioTranscriptionDelta", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L64C77-L64C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L64C77-L64C81" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputAudioTranscriptionDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L67C76-L67C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L67C76-L67C80" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputAudioDelta", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L70C64-L70C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L70C64-L70C68" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.OutputAudioDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L73C63-L73C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L73C63-L73C67" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ResponseDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L76C60-L76C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L76C60-L76C64" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ResponseCreated", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L79C63-L79C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L79C63-L79C67" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ResponseOutputItemDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L82C70-L82C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L82C70-L82C74" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ResponseOutputItemAdded", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L85C71-L85C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L85C71-L85C75" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ConversationItemAdded", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L88C69-L88C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L88C69-L88C73" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.ConversationItemDone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L91C68-L91C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L91C68-L91C72" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L94C53-L94C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L94C53-L94C57" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeServerMessageType.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L99C27-L99C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L99C27-L99C31" }, { "DocsId": "T:Microsoft.Extensions.AI.RealtimeServerMessageType.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeServerMessageType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L46C9-L47C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L46C9-L47C6" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.op_Equality(Microsoft.Extensions.AI.RealtimeSessionKind,Microsoft.Extensions.AI.RealtimeSessionKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L58C9-L58C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L58C9-L58C35" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.op_Inequality(Microsoft.Extensions.AI.RealtimeSessionKind,Microsoft.Extensions.AI.RealtimeSessionKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L70C9-L70C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L70C9-L70C33" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L75C12-L75C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L75C12-L75C61" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.Equals(Microsoft.Extensions.AI.RealtimeSessionKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L79C12-L79C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L79C12-L79C81" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L83C12-L83C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L83C12-L83C83" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L86C42-L86C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L86C42-L86C63" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionKind.Conversation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L30C54-L30C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L30C54-L30C58" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionKind.Transcription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L35C55-L35C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L35C55-L35C59" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionKind.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L38C27-L38C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L38C27-L38C31" }, { "DocsId": "T:Microsoft.Extensions.AI.RealtimeSessionKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeSessionKind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L22C61-L22C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L22C61-L22C93" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.SessionKind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L22C46-L22C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L22C46-L22C50" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.Model", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L27C28-L27C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L27C28-L27C32" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.InputAudioFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L32C52-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L32C52-L32C56" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.TranscriptionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L37C57-L37C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L37C57-L37C61" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.OutputAudioFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L42C53-L42C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L42C53-L42C57" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.Voice", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L47C28-L47C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L47C28-L47C32" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.Instructions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L52C35-L52C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L52C35-L52C39" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.MaxOutputTokens", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L57C35-L57C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L57C35-L57C39" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.OutputModalities", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L63C54-L63C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L65C54-L65C58" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.ToolMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L68C37-L68C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L70C37-L70C41" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.Tools", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L73C43-L73C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L75C43-L75C47" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.VoiceActivityDetection", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L82C68-L82C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L84C68-L84C72" }, { "DocsId": "P:Microsoft.Extensions.AI.RealtimeSessionOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L107C54-L107C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs#L109C54-L109C58" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeSessionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.#ctor(Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L38C5-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L38C5-L41C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.OutputAudioOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L46C54-L46C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L49C54-L49C58" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.OutputVoice", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L51C34-L51C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L54C34-L54C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L61C33-L61C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L64C33-L64C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.MaxOutputTokens", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L70C35-L70C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L73C35-L73C39" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L80C67-L80C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L83C67-L83C71" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.Items", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L85C53-L85C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L88C53-L88C57" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.OutputModalities", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L91C46-L91C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L97C46-L97C50" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.Status", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L103C29-L103C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L109C29-L109C33" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L108C34-L108C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L114C34-L114C38" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L118C34-L118C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs#L124C34-L124C38" } ], "DocsId": "T:Microsoft.Extensions.AI.ResponseCreatedRealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseCreatedRealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ResponseOutputItemRealtimeServerMessage.#ctor(Microsoft.Extensions.AI.RealtimeServerMessageType)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L32C5-L35C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L32C5-L35C6" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseOutputItemRealtimeServerMessage.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L43C33-L43C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L43C33-L43C37" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseOutputItemRealtimeServerMessage.OutputIndex", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L48C31-L48C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L48C31-L48C35" }, { "DocsId": "P:Microsoft.Extensions.AI.ResponseOutputItemRealtimeServerMessage.Item", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L53C45-L53C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs#L53C45-L53C49" } ], "DocsId": "T:Microsoft.Extensions.AI.ResponseOutputItemRealtimeServerMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/ResponseOutputItemRealtimeServerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SessionUpdateRealtimeClientMessage.#ctor(Microsoft.Extensions.AI.RealtimeSessionOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs#L33C5-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs#L33C5-L36C6" }, { "DocsId": "P:Microsoft.Extensions.AI.SessionUpdateRealtimeClientMessage.Options", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs#L41C45-L41C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs#L41C45-L41C49" } ], "DocsId": "T:Microsoft.Extensions.AI.SessionUpdateRealtimeClientMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/SessionUpdateRealtimeClientMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.VoiceActivityDetectionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L42C41-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L42C41-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.VoiceActivityDetectionOptions.Enabled", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L42C27-L42C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L42C27-L42C31" }, { "DocsId": "P:Microsoft.Extensions.AI.VoiceActivityDetectionOptions.AllowInterruption", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L56C37-L56C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs#L56C37-L56C41" } ], "DocsId": "T:Microsoft.Extensions.AI.VoiceActivityDetectionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/VoiceActivityDetectionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L24C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L24C5-L26C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.#ctor(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L30C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L30C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.FromBytes(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L40C86-L40C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L40C86-L40C96" }, { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.ToBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L44C54-L44C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L44C54-L44C60" }, { "DocsId": "T:Microsoft.Extensions.AI.ResponseContinuationToken.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ResponseContinuationToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.#ctor(Microsoft.Extensions.AI.ISpeechToTextClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L29C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L29C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L37C9-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L37C9-L39C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.GetTextAsync(System.IO.Stream,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L48C9-L48C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L48C9-L48C88" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.GetStreamingTextAsync(System.IO.Stream,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L55C9-L55C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L55C9-L55C97" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L61C9-L66C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L61C9-L66C61" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L73C9-L77C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L73C9-L77C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingSpeechToTextClient.InnerClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L42C49-L42C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs#L42C49-L42C53" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingSpeechToTextClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/DelegatingSpeechToTextClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ISpeechToTextClient.GetTextAsync(System.IO.Stream,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.ISpeechToTextClient.GetStreamingTextAsync(System.IO.Stream,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.ISpeechToTextClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ISpeechToTextClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/ISpeechToTextClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextClientExtensions.GetService``1(Microsoft.Extensions.AI.ISpeechToTextClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L30C9-L32C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L30C9-L32C75" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextClientExtensions.GetTextAsync(Microsoft.Extensions.AI.ISpeechToTextClient,Microsoft.Extensions.AI.DataContent,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L47C9-L54C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L47C9-L54C83" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextClientExtensions.GetStreamingTextAsync(Microsoft.Extensions.AI.ISpeechToTextClient,Microsoft.Extensions.AI.DataContent,Microsoft.Extensions.AI.SpeechToTextOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L69C9-L76C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs#L69C9-L76C92" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextClientExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextClientMetadata.#ctor(System.String,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L21C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L21C5-L26C6" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextClientMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L33C35-L33C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L33C35-L33C39" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextClientMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L36C31-L36C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L36C31-L36C35" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextClientMetadata.DefaultModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L43C37-L43C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs#L43C37-L43C41" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextClientMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextClientMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L16C5-L18C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextOptions.#ctor(Microsoft.Extensions.AI.SpeechToTextOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L21C5-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L21C5-L34C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L72C51-L72C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L72C51-L72C60" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L37C67-L37C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L37C67-L37C71" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L40C30-L40C34" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.SpeechLanguage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L43C37-L43C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L43C37-L43C41" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.SpeechSampleRate", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L46C36-L46C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L46C36-L46C40" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.TextLanguage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L49C35-L49C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L49C35-L49C39" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L68C75-L68C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs#L68C75-L68C79" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponse.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L22C5-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L22C5-L24C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponse.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponse.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L36C11-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L36C11-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponse.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L72C42-L72C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L72C42-L72C46" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponse.ToSpeechToTextResponseUpdates", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L78C9-L96C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L78C9-L96C25" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.StartTime", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L41C34-L41C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L41C34-L41C38" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.EndTime", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L44C32-L44C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L44C32-L44C36" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L47C33-L47C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L47C33-L47C37" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L50C30-L50C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L50C30-L50C34" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L59C40-L59C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L59C40-L59C44" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L62C67-L62C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L62C67-L62C71" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L69C27-L69C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L69C27-L69C66" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L103C16-L103C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L103C16-L103C32" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponse.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L108C34-L108C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs#L108C34-L108C38" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponse", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponse.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C64-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C64-L41C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C64-L48C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C64-L48C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L53C11-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L53C11-L55C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L100C42-L100C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L100C42-L100C46" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.Kind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C50-L58C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L58C50-L58C54" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L61C33-L61C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L61C33-L61C37" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.StartTime", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L64C34-L64C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L64C34-L64C38" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.EndTime", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L67C32-L67C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L67C32-L67C36" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L70C30-L70C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L70C30-L70C34" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L79C40-L79C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L79C40-L79C44" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L82C67-L82C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L82C67-L82C71" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.Text", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L89C27-L89C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L89C27-L89C66" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdate.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs#L95C16-L95C32" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponseUpdate", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdate.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateExtensions.ToSpeechToTextResponse(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.SpeechToTextResponseUpdate})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs#L25C9-L36C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs#L25C9-L36C25" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateExtensions.ToSpeechToTextResponseAsync(System.Collections.Generic.IAsyncEnumerable{Microsoft.Extensions.AI.SpeechToTextResponseUpdate},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs#L46C9-L48C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs#L46C9-L48C60" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponseUpdateExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L51C9-L52C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L51C9-L52C6" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.op_Equality(Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind,Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L63C9-L63C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L63C9-L63C35" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.op_Inequality(Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind,Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L75C9-L75C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L75C9-L75C33" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L80C12-L80C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L80C12-L80C80" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Equals(Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L84C12-L84C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L84C12-L84C81" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L88C12-L88C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L88C12-L88C63" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L91C42-L91C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L91C42-L91C47" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.SessionOpen", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L22C64-L22C68" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L25C58-L25C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L25C58-L25C62" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.TextUpdating", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L28C65-L28C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L28C65-L28C69" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.TextUpdated", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L31C64-L31C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L31C64-L31C68" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.SessionClose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L34C65-L34C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L34C65-L34C69" }, { "DocsId": "P:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L42C27-L42C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L42C27-L42C31" }, { "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TranscriptionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L18C5-L20C6" }, { "DocsId": "P:Microsoft.Extensions.AI.TranscriptionOptions.SpeechLanguage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L29C37-L29C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L29C37-L29C41" }, { "DocsId": "P:Microsoft.Extensions.AI.TranscriptionOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L34C30-L34C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L34C30-L34C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TranscriptionOptions.Prompt", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L39C29-L39C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs#L39C29-L39C33" } ], "DocsId": "T:Microsoft.Extensions.AI.TranscriptionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/TranscriptionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.#ctor(Microsoft.Extensions.AI.ITextToSpeechClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L28C5-L31C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L36C9-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L36C9-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.GetAudioAsync(System.String,Microsoft.Extensions.AI.TextToSpeechOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L47C9-L47C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L47C9-L47C76" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.GetStreamingAudioAsync(System.String,Microsoft.Extensions.AI.TextToSpeechOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L54C9-L54C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L54C9-L54C85" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L60C9-L65C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L60C9-L65C61" }, { "DocsId": "M:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L72C9-L76C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L72C9-L76C6" }, { "DocsId": "P:Microsoft.Extensions.AI.DelegatingTextToSpeechClient.InnerClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L41C49-L41C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs#L41C49-L41C53" } ], "DocsId": "T:Microsoft.Extensions.AI.DelegatingTextToSpeechClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/DelegatingTextToSpeechClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ITextToSpeechClient.GetAudioAsync(System.String,Microsoft.Extensions.AI.TextToSpeechOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.ITextToSpeechClient.GetStreamingAudioAsync(System.String,Microsoft.Extensions.AI.TextToSpeechOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.ITextToSpeechClient.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ITextToSpeechClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/ITextToSpeechClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechClientExtensions.GetService``1(Microsoft.Extensions.AI.ITextToSpeechClient,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientExtensions.cs#L25C9-L27C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientExtensions.cs#L25C9-L27C75" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechClientExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechClientMetadata.#ctor(System.String,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L21C5-L26C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L21C5-L26C6" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechClientMetadata.ProviderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L33C35-L33C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L33C35-L33C39" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechClientMetadata.ProviderUri", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L36C31-L36C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L36C31-L36C35" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechClientMetadata.DefaultModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L43C37-L43C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs#L43C37-L43C41" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechClientMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechClientMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L16C5-L18C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechOptions.#ctor(Microsoft.Extensions.AI.TextToSpeechOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L21C5-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L21C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechOptions.Clone", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L102C51-L102C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L102C51-L102C60" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L40C30-L40C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.VoiceId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L43C30-L43C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L43C30-L43C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.Language", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L49C31-L49C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L49C31-L49C35" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.AudioFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L56C34-L56C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L56C34-L56C38" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.Speed", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L63C27-L63C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L63C27-L63C31" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.Pitch", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L70C27-L70C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L70C27-L70C31" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.Volume", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L76C28-L76C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L76C28-L76C32" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L79C67-L79C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L79C67-L79C71" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechOptions.RawRepresentationFactory", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L98C75-L98C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs#L98C75-L98C79" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponse.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L18C5-L20C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponse.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L24C5-L27C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponse.ToTextToSpeechResponseUpdates", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L51C9-L67C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L51C9-L67C25" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L30C33-L30C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L30C33-L30C37" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L33C30-L33C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L33C30-L33C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L42C40-L42C44" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L45C67-L45C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L45C67-L45C71" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L74C16-L74C28" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L74C16-L74C28" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponse.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L79C34-L79C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs#L79C34-L79C38" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponse", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponse.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C64-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C64-L38C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.AIContent})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C64-L45C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C64-L45C6" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.Kind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C50-L48C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L48C50-L48C54" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.ResponseId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L51C33-L51C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L51C33-L51C37" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.ModelId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L54C30-L54C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L54C30-L54C34" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.RawRepresentation", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L63C40-L63C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L63C40-L63C44" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L66C67-L66C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L66C67-L66C71" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdate.Contents", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L72C16-L72C28" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs#L72C16-L72C28" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponseUpdate", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdate.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateExtensions.ToTextToSpeechResponse(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.TextToSpeechResponseUpdate})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs#L25C9-L34C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs#L25C9-L34C25" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateExtensions.ToTextToSpeechResponseAsync(System.Collections.Generic.IAsyncEnumerable{Microsoft.Extensions.AI.TextToSpeechResponseUpdate},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs#L44C9-L46C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs#L44C9-L46C60" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponseUpdateExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L51C9-L52C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L51C9-L52C6" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.op_Equality(Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind,Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L63C9-L63C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L63C9-L63C35" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.op_Inequality(Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind,Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L75C9-L75C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L75C9-L75C33" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L80C12-L80C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L80C12-L80C80" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Equals(Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L84C12-L84C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L84C12-L84C81" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L88C12-L88C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L88C12-L88C83" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L91C42-L91C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L91C42-L91C47" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.SessionOpen", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L22C64-L22C68" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Error", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L25C58-L25C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L25C58-L25C62" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.AudioUpdating", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L28C66-L28C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L28C66-L28C70" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.AudioUpdated", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L31C65-L31C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L31C65-L31C69" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.SessionClose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L34C65-L34C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L34C65-L34C69" }, { "DocsId": "P:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L42C27-L42C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L42C27-L42C31" }, { "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AITool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L18C5-L20C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AITool.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L32C42-L32C46" }, { "DocsId": "M:Microsoft.Extensions.AI.AITool.GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L45C9-L49C18" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L45C9-L49C18" }, { "DocsId": "M:Microsoft.Extensions.AI.AITool.GetService``1(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L61C9-L61C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L61C9-L61C89" }, { "DocsId": "P:Microsoft.Extensions.AI.AITool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L23C35-L23C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L23C35-L23C49" }, { "DocsId": "P:Microsoft.Extensions.AI.AITool.Description", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L26C42-L26C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L26C42-L26C54" }, { "DocsId": "P:Microsoft.Extensions.AI.AITool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L29C81-L29C130" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs#L29C81-L29C130" } ], "DocsId": "T:Microsoft.Extensions.AI.AITool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/AITool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedCodeInterpreterTool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedCodeInterpreterTool.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedCodeInterpreterTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L31C36-L31C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L31C36-L31C54" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedCodeInterpreterTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L34C82-L34C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L34C82-L34C132" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedCodeInterpreterTool.Inputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L42C39-L42C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs#L42C39-L42C43" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedCodeInterpreterTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedCodeInterpreterTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedFileSearchTool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedFileSearchTool.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileSearchTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L31C36-L31C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L31C36-L31C49" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileSearchTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L34C82-L34C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L34C82-L34C132" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileSearchTool.Inputs", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L43C39-L43C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L43C39-L43C43" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedFileSearchTool.MaximumResultCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L46C38-L46C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs#L46C38-L46C42" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedFileSearchTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedFileSearchTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedImageGenerationTool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L21C5-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L21C5-L23C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedImageGenerationTool.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L27C5-L30C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L27C5-L30C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedImageGenerationTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L33C36-L33C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L33C36-L33C54" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedImageGenerationTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L36C82-L36C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L36C82-L36C132" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedImageGenerationTool.Options", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L41C46-L41C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs#L41C46-L41C50" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedImageGenerationTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedImageGenerationTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerTool.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L25C5-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L25C5-L29C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerTool.#ctor(System.String,System.String,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L40C11-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L40C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerTool.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L54C11-L56C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L54C11-L56C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedMcpServerTool.#ctor(System.String,System.Uri,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L68C11-L71C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L68C11-L71C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L86C36-L86C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L86C36-L86C41" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L89C82-L89C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L89C82-L89C132" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.ServerName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L94C32-L94C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L94C32-L94C36" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.ServerAddress", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L99C35-L99C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L102C35-L102C39" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.ServerDescription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L104C40-L104C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L107C40-L107C44" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.AllowedTools", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L112C42-L112C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L115C42-L115C46" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.ApprovalMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L129C60-L129C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L132C60-L132C64" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedMcpServerTool.Headers", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L145C51-L145C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs#L148C51-L148C55" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedMcpServerTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedMcpServerTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedToolSearchTool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L33C5-L35C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L33C5-L35C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedToolSearchTool.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L39C5-L42C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedToolSearchTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L45C36-L45C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L45C36-L45C49" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedToolSearchTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L48C82-L48C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L48C82-L48C132" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedToolSearchTool.DeferredTools", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L61C43-L61C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L61C43-L61C47" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedToolSearchTool.Namespace", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L79C32-L79C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L79C32-L79C36" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedToolSearchTool.NamespaceDescription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L93C43-L93C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs#L93C43-L93C47" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedToolSearchTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedToolSearchTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.HostedWebSearchTool.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L19C5-L21C6" }, { "DocsId": "M:Microsoft.Extensions.AI.HostedWebSearchTool.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedWebSearchTool.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L31C36-L31C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L31C36-L31C48" }, { "DocsId": "P:Microsoft.Extensions.AI.HostedWebSearchTool.AdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L34C82-L34C132" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs#L34C82-L34C132" } ], "DocsId": "T:Microsoft.Extensions.AI.HostedWebSearchTool", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Tools/HostedWebSearchTool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.UsageDetails.Add(Microsoft.Extensions.AI.UsageDetails)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L120C9-L148C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L120C9-L148C6" }, { "DocsId": "M:Microsoft.Extensions.AI.UsageDetails.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.InputTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L19C36-L19C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L19C36-L19C40" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.OutputTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.TotalTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L25C36-L25C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L25C36-L25C40" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.CachedInputTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L33C42-L33C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L33C42-L33C46" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.ReasoningTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L42C40-L42C44" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.InputAudioTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L52C16-L52C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L52C16-L52C40" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.InputTextTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L68C16-L68C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L68C16-L68C39" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.OutputAudioTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L84C16-L84C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L84C16-L84C41" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.OutputTextTokenCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L100C16-L100C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L100C16-L100C40" }, { "DocsId": "P:Microsoft.Extensions.AI.UsageDetails.AdditionalCounts", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L113C69-L113C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs#L113C69-L113C73" } ], "DocsId": "T:Microsoft.Extensions.AI.UsageDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/UsageDetails.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.GetCustomAttribute``1(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L86C9-L88C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L86C9-L88C42" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.Path", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L33C41-L33C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L33C41-L33C62" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.TypeInfo", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L38C37-L38C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L38C37-L38C62" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.BaseTypeInfo", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L43C42-L43C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L43C42-L43C71" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.PropertyInfo", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L48C46-L48C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L48C46-L48C75" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.DeclaringType", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L54C9-L54C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L54C9-L54C53" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.PropertyAttributeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L60C9-L60C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L60C9-L60C57" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateContext.ParameterAttributeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L67C9-L67C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs#L67C9-L67C78" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonSchemaCreateContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.op_Inequality(Microsoft.Extensions.AI.AIJsonSchemaCreateOptions,Microsoft.Extensions.AI.AIJsonSchemaCreateOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.op_Equality(Microsoft.Extensions.AI.AIJsonSchemaCreateOptions,Microsoft.Extensions.AI.AIJsonSchemaCreateOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.Equals(Microsoft.Extensions.AI.AIJsonSchemaCreateOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.$", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.Default", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L20C55-L20C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L20C55-L20C59" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.TransformSchemaNode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L25C87-L25C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L25C87-L25C91" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.IncludeParameter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L37C58-L37C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L37C58-L37C62" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.ParameterDescriptionProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L49C73-L49C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L49C73-L49C77" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.TransformOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L54C61-L54C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L54C61-L54C65" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions.IncludeSchemaKeyword", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L59C40-L59C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs#L59C40-L59C44" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonSchemaCreateOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaCreateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformCache.#ctor(Microsoft.Extensions.AI.AIJsonSchemaTransformOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L26C5-L48C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L26C5-L48C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformCache.GetOrCreateTransformedSchema(Microsoft.Extensions.AI.AIFunction)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L62C9-L62C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L62C9-L62C70" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformCache.GetOrCreateTransformedSchema(Microsoft.Extensions.AI.AIFunctionDeclaration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L71C9-L72C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L71C9-L72C105" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformCache.GetOrCreateTransformedSchema(Microsoft.Extensions.AI.ChatResponseFormatJson)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L82C9-L85C20" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L82C9-L85C20" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformCache.TransformOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L53C60-L53C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs#L53C60-L53C64" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonSchemaTransformCache", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformCache.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformContext.Path", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L29C41-L29C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L29C41-L29C46" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformContext.PropertyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L34C36-L34C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L34C36-L34C89" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformContext.IsCollectionElementSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L39C46-L39C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L39C46-L39C67" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformContext.IsDictionaryValueSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L44C44-L44C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs#L44C44-L44C80" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonSchemaTransformContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.op_Inequality(Microsoft.Extensions.AI.AIJsonSchemaTransformOptions,Microsoft.Extensions.AI.AIJsonSchemaTransformOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.op_Equality(Microsoft.Extensions.AI.AIJsonSchemaTransformOptions,Microsoft.Extensions.AI.AIJsonSchemaTransformOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.Equals(Microsoft.Extensions.AI.AIJsonSchemaTransformOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.$", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.TransformSchemaNode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L17C90-L17C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L17C90-L17C94" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.ConvertBooleanSchemas", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L22C41-L22C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L22C41-L22C45" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.DisallowAdditionalProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L27C48-L27C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L27C48-L27C52" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.RequireAllProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L32C40-L32C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L32C40-L32C44" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.UseNullableKeyword", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L37C38-L37C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L37C38-L37C42" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions.MoveDefaultKeywordToDescription", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L42C51-L42C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs#L42C51-L42C55" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonSchemaTransformOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonSchemaTransformOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.AddAIContentType``1(System.Text.Json.JsonSerializerOptions,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L36C9-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L36C9-L40C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.AddAIContentType(System.Text.Json.JsonSerializerOptions,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L53C9-L63C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L53C9-L63C6" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.HashDataToString(System.ReadOnlySpan{System.Object},System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L79C9-L129C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs#L79C9-L129C46" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.CreateFunctionJsonSchema(System.Reflection.MethodBase,System.String,System.String,System.Text.Json.JsonSerializerOptions,Microsoft.Extensions.AI.AIJsonSchemaCreateOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Create.cs#L81C9-L172C101" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Create.cs#L82C9-L179C101" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.CreateJsonSchema(System.Type,System.String,System.Boolean,System.Object,System.Text.Json.JsonSerializerOptions,Microsoft.Extensions.AI.AIJsonSchemaCreateOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Create.cs#L191C9-L201C101" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Create.cs#L198C9-L208C101" }, { "DocsId": "M:Microsoft.Extensions.AI.AIJsonUtilities.TransformSchema(System.Text.Json.JsonElement,Microsoft.Extensions.AI.AIJsonSchemaTransformOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Transform.cs#L25C9-L34C112" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Schema.Transform.cs#L25C9-L34C112" }, { "DocsId": "P:Microsoft.Extensions.AI.AIJsonUtilities.DefaultOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Defaults.cs#L38C58-L38C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.Defaults.cs#L38C58-L38C62" } ], "DocsId": "T:Microsoft.Extensions.AI.AIJsonUtilities", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Utilities/AIJsonUtilities.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L230C39-L230C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L230C39-L230C46" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L233C34-L233C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L233C34-L233C65" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L236C35-L236C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L236C35-L236C67" }, { "DocsId": "M:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.Reset", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L239C32-L239C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L239C32-L239C64" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.Current", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L227C56-L227C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L227C56-L227C85" }, { "DocsId": "P:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L230C39-L230C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs#L230C39-L230C46" } ], "DocsId": "T:Microsoft.Extensions.AI.AdditionalPropertiesDictionary`1.Enumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/AdditionalPropertiesDictionary%7BTValue%7D.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L83C13-L83C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L83C13-L83C37" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.ChatFinishReason,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L87C13-L87C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs#L87C13-L87C63" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatFinishReason.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatFinishReason.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatFinishReason.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L96C13-L96C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L96C13-L96C37" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.ChatRole,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L100C13-L100C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs#L100C13-L100C63" }, { "DocsId": "M:Microsoft.Extensions.AI.ChatRole.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ChatRole.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatRole.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.BinaryEmbedding.VectorConverter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L47C13-L86C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L47C13-L86C27" }, { "DocsId": "M:Microsoft.Extensions.AI.BinaryEmbedding.VectorConverter.Write(System.Text.Json.Utf8JsonWriter,System.Collections.BitArray,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L92C13-L109C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs#L92C13-L109C10" }, { "DocsId": "M:Microsoft.Extensions.AI.BinaryEmbedding.VectorConverter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.BinaryEmbedding.VectorConverter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Embeddings/BinaryEmbedding.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.op_Inequality(Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions,Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.op_Equality(Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions,Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.Equals(Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.BindParameter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L150C83-L150C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L150C83-L150C87" }, { "DocsId": "P:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions.ExcludeFromSchema", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L166C41-L166C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs#L166C41-L166C45" } ], "DocsId": "T:Microsoft.Extensions.AI.AIFunctionFactoryOptions.ParameterBindingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionFactoryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L157C13-L157C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L157C13-L157C37" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.RealtimeServerMessageType,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L161C13-L161C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs#L161C13-L161C63" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeServerMessageType.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeServerMessageType.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeServerMessageType.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L94C13-L94C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L94C13-L94C37" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.RealtimeSessionKind,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L98C13-L98C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs#L98C13-L98C63" }, { "DocsId": "M:Microsoft.Extensions.AI.RealtimeSessionKind.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.RealtimeSessionKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/Realtime/RealtimeSessionKind.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L53C13-L53C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L53C13-L53C85" }, { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.ResponseContinuationToken,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L59C13-L63C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs#L59C13-L63C10" }, { "DocsId": "M:Microsoft.Extensions.AI.ResponseContinuationToken.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.ResponseContinuationToken.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ResponseContinuationToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L99C13-L99C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L99C13-L99C37" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L103C16-L103C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs#L103C16-L103C66" }, { "DocsId": "M:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.SpeechToTextResponseUpdateKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/SpeechToText/SpeechToTextResponseUpdateKind.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Converter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L99C13-L99C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L99C13-L99C37" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Converter.Write(System.Text.Json.Utf8JsonWriter,Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L103C16-L103C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs#L103C16-L103C66" }, { "DocsId": "M:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.TextToSpeechResponseUpdateKind.Converter", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Abstractions/TextToSpeech/TextToSpeechResponseUpdateKind.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Evaluation.Reporting.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Evaluation.Reporting.json index 0e6ec2dac44..e27265dd2ae 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Evaluation.Reporting.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.Evaluation.Reporting.json @@ -1,421 +1,421 @@ { "Assembly": "Microsoft.Extensions.AI.Evaluation.Reporting", - "GUID": "387E28D594814656A44CD93A0E36A4E3FFFFFFFF", + "GUID": "3FB8F347C8274B89806D52962046883AFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L29C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L29C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L41C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails.#ctor(Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L52C11-L54C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L52C11-L54C6" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails.TurnDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L20C49-L20C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs#L20C49-L20C53" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetails.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetailsExtensions.AddTurnDetails(Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs#L26C9-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs#L26C9-L33C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetailsExtensions.AddTurnDetails(Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails,Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs#L46C12-L46C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs#L46C12-L46C83" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetailsExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.#ctor(System.TimeSpan,System.String,Microsoft.Extensions.AI.UsageDetails,System.String,System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L92C15-L94C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L92C15-L94C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.#ctor(System.TimeSpan,System.String,System.String,Microsoft.Extensions.AI.UsageDetails,System.String,System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L126C5-L140C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L126C5-L140C6" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.Latency", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L19C31-L19C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L19C31-L19C35" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.Model", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L27C28-L27C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L27C28-L27C32" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.ModelProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L36C36-L36C40" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.Usage", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L44C34-L44C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L44C34-L44C38" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.CacheKey", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L52C31-L52C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L52C31-L52C35" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails.CacheHit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L60C29-L60C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs#L60C29-L60C33" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatTurnDetails.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.AI.Evaluation.Reporting.Defaults.DefaultExecutionName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" }, { "DocsId": "F:Microsoft.Extensions.AI.Evaluation.Reporting.Defaults.DefaultIterationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.Defaults.DefaultTimeToLiveForCacheEntries", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs#L32C63-L32C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs#L32C63-L32C67" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Defaults", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Defaults.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationReportWriter.WriteReportAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationReportWriter.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationReportWriter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationReportWriter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResponseCacheProvider.GetCacheAsync(System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResponseCacheProvider.ResetAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResponseCacheProvider.DeleteExpiredCacheEntriesAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResponseCacheProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResponseCacheProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.ReadResultsAsync(System.String,System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.WriteResultsAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.DeleteResultsAsync(System.String,System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.GetLatestExecutionNamesAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.GetScenarioNamesAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore.GetIterationNamesAsync(System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/IEvaluationResultStore.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.IEvaluator},Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResultStore,Microsoft.Extensions.AI.Evaluation.ChatConfiguration,Microsoft.Extensions.AI.Evaluation.Reporting.IEvaluationResponseCacheProvider,System.Collections.Generic.IEnumerable{System.String},System.String,System.Func{Microsoft.Extensions.AI.Evaluation.EvaluationMetric,Microsoft.Extensions.AI.Evaluation.EvaluationMetricInterpretation},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L135C5-L161C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L135C5-L161C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.CreateScenarioRunAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.Evaluators", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L27C51-L27C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L27C51-L27C55" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.ResultStore", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L33C49-L33C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L33C49-L33C53" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.ChatConfiguration", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L39C51-L39C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L39C51-L39C55" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.ResponseCacheProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L44C70-L44C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L44C70-L44C74" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.CachingKeys", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L71C48-L71C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L71C48-L71C52" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.ExecutionName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L79C35-L79C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L79C35-L79C39" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.EvaluationMetricInterpreter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L90C99-L90C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L90C99-L90C103" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L96C42-L96C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs#L96C42-L96C46" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ReportingConfiguration", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ReportingConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.EvaluateAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatResponse,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.DisposeAsync", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.ScenarioName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L41C34-L41C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L41C34-L41C38" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.IterationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L57C35-L57C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L57C35-L57C39" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.ExecutionName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L86C35-L86C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L86C35-L86C39" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun.ChatConfiguration", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L93C51-L93C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs#L93C51-L93C55" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRun.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L35C13-L38C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L35C13-L38C54" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L64C13-L68C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L64C13-L68C54" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,Microsoft.Extensions.AI.ChatMessage,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L89C13-L92C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L89C13-L92C35" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,Microsoft.Extensions.AI.ChatResponse,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L114C9-L120C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L114C9-L120C36" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,Microsoft.Extensions.AI.ChatMessage,Microsoft.Extensions.AI.ChatMessage,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L147C13-L151C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L147C13-L151C35" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions.EvaluateAsync(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRun,Microsoft.Extensions.AI.ChatMessage,Microsoft.Extensions.AI.ChatResponse,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.EvaluationContext},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L178C9-L184C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs#L178C9-L184C36" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.#ctor(System.String,System.String,System.String,System.DateTime,System.Collections.Generic.IList{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatResponse,Microsoft.Extensions.AI.Evaluation.EvaluationResult,Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails,System.Collections.Generic.IList{System.String},System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L107C48-L56C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L107C48-L56C31" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.#ctor(System.String,System.String,System.String,System.DateTime,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatResponse,Microsoft.Extensions.AI.Evaluation.EvaluationResult,Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L91C15-L102C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L91C15-L102C6" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.ScenarioName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L107C34-L107C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L107C34-L107C38" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.IterationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L112C35-L112C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L112C35-L112C39" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.ExecutionName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L117C35-L117C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L117C35-L117C39" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.CreationTime", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L122C36-L122C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L122C36-L122C40" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.Messages", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L128C42-L128C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L128C42-L128C46" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.ModelResponse", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L133C41-L133C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L133C41-L133C45" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.EvaluationResult", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L144C48-L144C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L144C48-L144C52" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.ChatDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L155C39-L155C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L155C39-L155C43" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L160C34-L160C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L160C34-L160C38" }, { "DocsId": "P:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult.FormatVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L165C33-L165C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs#L165C33-L165C37" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResultExtensions.ContainsDiagnostics(Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult,System.Func{Microsoft.Extensions.AI.Evaluation.EvaluationDiagnostic,System.Boolean})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResultExtensions.cs#L33C9-L35C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResultExtensions.cs#L33C9-L35C71" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResultExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResultExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ScenarioRunResultExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedReportingConfiguration.Create(System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.IEvaluator},Microsoft.Extensions.AI.Evaluation.ChatConfiguration,System.Boolean,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{System.String},System.String,System.Func{Microsoft.Extensions.AI.Evaluation.EvaluationMetric,Microsoft.Extensions.AI.Evaluation.EvaluationMetricInterpretation},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedReportingConfiguration.cs#L80C9-L97C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedReportingConfiguration.cs#L80C9-L97C19" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedReportingConfiguration", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedReportingConfiguration.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedReportingConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCacheProvider.#ctor(System.String,System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L27C5-L25C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L27C5-L25C48" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCacheProvider.GetCacheAsync(System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L47C9-L55C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L47C9-L55C56" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCacheProvider.ResetAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L61C9-L63C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L61C9-L63C24" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCacheProvider.DeleteExpiredCacheEntriesAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L68C12-L68C114" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs#L68C12-L68C114" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCacheProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResponseCacheProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs#L46C5-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs#L46C5-L50C6" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.ReadResultsAsync(System.String,System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.WriteResultsAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.DeleteResultsAsync(System.String,System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs#L125C9-L198C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs#L125C9-L198C24" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.GetLatestExecutionNamesAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.GetScenarioNamesAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore.GetIterationNamesAsync(System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResultStore", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Storage/DiskBasedResultStore.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Json.JsonReportWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs#L23C21-L23C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs#L23C21-L23C60" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Json.JsonReportWriter.WriteReportAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Json.JsonReportWriter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Json/JsonReportWriter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Html.HtmlReportWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs#L25C21-L25C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs#L25C21-L25C60" }, { "DocsId": "M:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Html.HtmlReportWriter.WriteReportAsync(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs" } ], "DocsId": "T:Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Html.HtmlReportWriter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/Formats/Html/HtmlReportWriter.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.OpenAI.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.OpenAI.json index 86c7704ff81..702886bdf6d 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.OpenAI.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.AI.OpenAI.json @@ -1,235 +1,235 @@ { "Assembly": "Microsoft.Extensions.AI.OpenAI", - "GUID": "432C80AA15564AEA9D79DB289780997EFFFFFFFF", + "GUID": "42EC1393760345FFB55AD035031E5D65FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsOpenAIResponseTool(Microsoft.Extensions.AI.AIFunctionDeclaration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L25C9-L25C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L25C9-L25C73" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsOpenAIResponseTool(Microsoft.Extensions.AI.AITool)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L36C9-L36C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L36C9-L36C69" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsOpenAIResponseTextFormat(Microsoft.Extensions.AI.ChatResponseFormat,Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L45C9-L45C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L45C9-L45C78" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsOpenAIResponseItems(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L53C9-L53C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L53C9-L53C89" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsChatMessages(System.Collections.Generic.IEnumerable{OpenAI.Responses.ResponseItem})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L60C9-L60C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L60C9-L60C70" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsChatResponse(OpenAI.Responses.ResponseResult,OpenAI.Responses.CreateResponseOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L68C9-L68C108" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L68C9-L68C108" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsChatResponseUpdatesAsync(System.Collections.Generic.IAsyncEnumerable{OpenAI.Responses.StreamingResponseUpdate},OpenAI.Responses.CreateResponseOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L81C9-L81C174" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L81C9-L81C174" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsOpenAIResponseResult(Microsoft.Extensions.AI.ChatResponse,Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L89C9-L120C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L89C9-L120C23" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.Add(System.Collections.Generic.IList{Microsoft.Extensions.AI.AITool},OpenAI.Responses.ResponseTool)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L134C9-L137C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L134C9-L137C6" }, { "DocsId": "M:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions.AsAITool(OpenAI.Responses.ResponseTool)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L160C9-L162C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs#L160C9-L162C71" } ], "DocsId": "T:OpenAI.Responses.MicrosoftExtensionsAIResponsesExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIResponsesExtensions.cs" }, { "Members": [ { "DocsId": "M:OpenAI.Realtime.MicrosoftExtensionsAIRealtimeExtensions.AsOpenAIRealtimeFunctionTool(Microsoft.Extensions.AI.AIFunctionDeclaration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIRealtimeExtensions.cs#L21C9-L21C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIRealtimeExtensions.cs#L21C9-L21C94" } ], "DocsId": "T:OpenAI.Realtime.MicrosoftExtensionsAIRealtimeExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIRealtimeExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIRealtimeExtensions.cs" }, { "Members": [ { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsOpenAIChatTool(Microsoft.Extensions.AI.AIFunctionDeclaration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L29C9-L29C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L29C9-L29C66" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsOpenAIChatResponseFormat(Microsoft.Extensions.AI.ChatResponseFormat,Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L39C9-L39C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L39C9-L39C69" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsOpenAIChatMessages(System.Collections.Generic.IEnumerable{Microsoft.Extensions.AI.ChatMessage},Microsoft.Extensions.AI.ChatOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L46C9-L46C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L46C9-L46C79" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsOpenAIChatCompletion(Microsoft.Extensions.AI.ChatResponse)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L55C9-L87C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L55C9-L87C76" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsOpenAIStreamingChatCompletionUpdatesAsync(System.Collections.Generic.IAsyncEnumerable{Microsoft.Extensions.AI.ChatResponseUpdate},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsChatMessages(System.Collections.Generic.IEnumerable{OpenAI.Chat.ChatMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsChatResponse(OpenAI.Chat.ChatCompletion,OpenAI.Chat.ChatCompletionOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L263C9-L263C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L263C9-L263C89" }, { "DocsId": "M:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions.AsChatResponseUpdatesAsync(System.Collections.Generic.IAsyncEnumerable{OpenAI.Chat.StreamingChatCompletionUpdate},OpenAI.Chat.ChatCompletionOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L277C9-L277C129" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs#L277C9-L277C129" } ], "DocsId": "T:OpenAI.Chat.MicrosoftExtensionsAIChatExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIChatExtensions.cs" }, { "Members": [ { "DocsId": "M:OpenAI.Assistants.MicrosoftExtensionsAIAssistantsExtensions.AsOpenAIAssistantsFunctionToolDefinition(Microsoft.Extensions.AI.AIFunctionDeclaration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIAssistantsExtensions.cs#L21C9-L21C100" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIAssistantsExtensions.cs#L21C9-L21C100" } ], "DocsId": "T:OpenAI.Assistants.MicrosoftExtensionsAIAssistantsExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIAssistantsExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/MicrosoftExtensionsAIAssistantsExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIChatClient(OpenAI.Chat.ChatClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L121C9-L121C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L121C9-L121C41" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIChatClient(OpenAI.Responses.ResponsesClient,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L130C9-L130C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L130C9-L130C70" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIChatClient(OpenAI.Assistants.AssistantClient,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L146C9-L146C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L146C9-L146C79" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIChatClient(OpenAI.Assistants.AssistantClient,OpenAI.Assistants.Assistant,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L161C9-L161C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L161C9-L161C77" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsISpeechToTextClient(OpenAI.Audio.AudioClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L169C9-L169C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L169C9-L169C50" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsITextToSpeechClient(OpenAI.Audio.AudioClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L177C9-L177C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L177C9-L177C50" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIImageGenerator(OpenAI.Images.ImageClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L185C9-L185C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L185C9-L185C46" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIEmbeddingGenerator(OpenAI.Embeddings.EmbeddingClient,System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L193C9-L193C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L193C9-L193C78" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIHostedFileClient(OpenAI.OpenAIClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L206C9-L206C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L206C9-L206C49" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIHostedFileClient(OpenAI.Files.OpenAIFileClient)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L219C9-L219C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L219C9-L219C47" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIClientExtensions.AsIHostedFileClient(OpenAI.Containers.ContainerClient,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L231C9-L231C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs#L231C9-L231C66" } ], "DocsId": "T:Microsoft.Extensions.AI.OpenAIClientExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIClientExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClient.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L35C5-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L35C5-L40C6" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClient.#ctor(OpenAI.Realtime.RealtimeClient,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L47C5-L52C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L47C5-L52C6" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClient.CreateSessionAsync(Microsoft.Extensions.AI.RealtimeSessionOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClient.Microsoft#Extensions#AI#IRealtimeClient#GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L81C9-L88C18" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L81C9-L88C18" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClient.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L96C5-L96C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs#L96C5-L96C6" } ], "DocsId": "T:Microsoft.Extensions.AI.OpenAIRealtimeClient", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClient.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L50C5-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L50C5-L55C6" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.ConnectAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.SendAsync(Microsoft.Extensions.AI.RealtimeClientMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.GetStreamingResponseAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.Microsoft#Extensions#AI#IRealtimeClientSession#GetService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L179C9-L186C18" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L179C9-L186C18" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.DisposeAsync", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L192C9-L198C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L192C9-L198C24" }, { "DocsId": "P:Microsoft.Extensions.AI.OpenAIRealtimeClientSession.Options", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L45C46-L45C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs#L45C46-L45C50" } ], "DocsId": "T:Microsoft.Extensions.AI.OpenAIRealtimeClientSession", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRealtimeClientSession.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRequestPolicies.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs#L41C5-L46C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs#L41C5-L46C6" }, { "DocsId": "M:Microsoft.Extensions.AI.OpenAIRequestPolicies.AddPolicy(System.ClientModel.Primitives.PipelinePolicy,System.ClientModel.Primitives.PipelinePosition)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs#L61C9-L75C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs#L61C9-L75C24" } ], "DocsId": "T:Microsoft.Extensions.AI.OpenAIRequestPolicies", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.AI.OpenAI/OpenAIRequestPolicies.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes.json index 5c80ea6993d..158b7e8e62f 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes.json @@ -1,17 +1,17 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes", - "GUID": "EEBF62583A7F4544A81C5D1CC48FDE33FFFFFFFF", + "GUID": "333FEE60A2A1435F81FBD8D51E5E045DFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesResourceQuotaServiceCollectionExtensions.AddKubernetesResourceMonitoring(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes/KubernetesResourceQuotaServiceCollectionExtensions.cs#L36C9-L43C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes/KubernetesResourceQuotaServiceCollectionExtensions.cs#L36C9-L43C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.KubernetesResourceQuotaServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes/KubernetesResourceQuotaServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes/KubernetesResourceQuotaServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Http.Resilience.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Http.Resilience.json index 19c861b0c20..cdb995ca26c 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Http.Resilience.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Http.Resilience.json @@ -1,561 +1,561 @@ { "Assembly": "Microsoft.Extensions.Http.Resilience", - "GUID": "1FA0D252524848EBB26DAD348CE030F3FFFFFFFF", + "GUID": "9FAC84FC4ED74F5385CBC9F6526F7151FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.GetResilienceContext(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" }, { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.SetResilienceContext(System.Net.Http.HttpRequestMessage,Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" } ], "DocsId": "T:System.Net.Http.HttpResilienceHttpRequestMessageExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" }, { "Members": [ { "DocsId": "M:Polly.HttpResilienceContextExtensions.GetRequestMessage(Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs#L30C9-L31C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs#L30C9-L31C84" }, { "DocsId": "M:Polly.HttpResilienceContextExtensions.SetRequestMessage(Polly.ResilienceContext,System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs#L42C9-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs#L42C9-L44C6" } ], "DocsId": "T:Polly.HttpResilienceContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L43C9-L50C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L43C9-L50C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L72C9-L145C98" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L72C9-L145C98" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L39C9-L43C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L39C9-L43C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage},Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L62C9-L76C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L62C9-L76C32" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.RemoveAllResilienceHandlers(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L87C9-L98C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L87C9-L98C24" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L33C9-L36C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L33C9-L36C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L51C9-L54C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L51C9-L54C76" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L68C9-L93C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L68C9-L93C89" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.Timeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L26C12-L30C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L26C12-L30C23" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L41C12-L42C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L41C12-L42C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L25C5-L28C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Hedging", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Endpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.RoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L51C9-L54C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L51C9-L54C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L25C77-L29C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L25C77-L29C19" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L40C12-L41C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L40C12-L41C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.ShouldRetryAfterHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C9-L48C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C9-L48C13" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptionsExtensions.DisableForUnsafeHttpMethods(Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs#L31C9-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs#L31C9-L38C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptionsExtensions.DisableFor(Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions,System.Net.Http.HttpMethod[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs#L47C9-L62C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs#L47C9-L62C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptionsExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptionsExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.Retry", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.AttemptTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L53C9-L56C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L53C9-L56C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(System.Func{System.Net.Http.HttpRequestMessage,Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L27C5-L30C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L27C5-L30C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L37C5-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L37C5-L41C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.Send(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L109C9-L138C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L109C9-L138C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandler", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.EnableReloads``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.GetOptions``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.OnPipelineDisposed(System.Action)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.ServiceProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.BuilderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.InstanceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L29C59-L29C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L29C59-L29C87" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L29C45-L29C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L29C45-L29C49" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L49C9-L52C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L49C9-L52C83" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L95C9-L98C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L95C9-L98C84" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L21C23-L21C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L21C23-L21C27" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L29C65-L29C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L29C65-L29C96" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.Endpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L29C51-L29C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L29C51-L29C55" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.EveryAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.InitialAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L35C67-L35C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L35C67-L35C103" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.SelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L35C53-L35C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L35C53-L35C57" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.ServiceDiscovery.Dns.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.ServiceDiscovery.Dns.json index f122b13b711..bd16d9fb693 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.ServiceDiscovery.Dns.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.ServiceDiscovery.Dns.json @@ -1,123 +1,123 @@ { "Assembly": "Microsoft.Extensions.ServiceDiscovery.Dns", - "GUID": "1C450D24203B45F6BB953A50663B64E0FFFFFFFF", + "GUID": "DA68BA47F9BF4210A90CA64C6599699DFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions.AddDnsSrvServiceEndpointProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L29C9-L31C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L29C9-L31C68" }, { "DocsId": "M:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions.AddDnsSrvServiceEndpointProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L46C9-L65C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L46C9-L65C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions.AddDnsServiceEndpointProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L79C9-L81C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L79C9-L81C65" }, { "DocsId": "M:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions.AddDnsServiceEndpointProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L95C9-L114C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L95C9-L114C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions.ConfigureDnsResolver(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L125C9-L131C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs#L125C9-L131C25" } ], "DocsId": "T:Microsoft.Extensions.Hosting.ServiceDiscoveryDnsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/ServiceDiscoveryDnsServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L16C54-L29C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L16C54-L29C68" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions.Servers", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L16C40-L16C44" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions.MaxAttempts", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L21C30-L21C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L21C30-L21C34" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions.Timeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L29C31-L29C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs#L29C31-L29C35" } ], "DocsId": "T:Microsoft.Extensions.ServiceDiscovery.Dns.DnsResolverOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsResolverOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L14C58-L37C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L14C58-L37C94" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.DefaultRefreshPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L14C44-L14C48" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.MinRetryPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.MaxRetryPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L24C38-L24C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L24C38-L24C42" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.RetryBackOffFactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L29C40-L29C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L29C40-L29C44" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions.ShouldApplyHostNameMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L37C70-L37C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs#L37C70-L37C74" } ], "DocsId": "T:Microsoft.Extensions.ServiceDiscovery.Dns.DnsServiceEndpointProviderOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsServiceEndpointProviderOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L14C58-L50C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L14C58-L50C94" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.DefaultRefreshPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L14C44-L14C48" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.MinRetryPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.MaxRetryPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L24C38-L24C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L24C38-L24C42" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.RetryBackOffFactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L29C40-L29C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L29C40-L29C44" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.QuerySuffix", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L37C34-L37C38" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.ServiceDomainNameCallback", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L42C76-L42C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L42C76-L42C80" }, { "DocsId": "P:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions.ShouldApplyHostNameMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L50C70-L50C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs#L50C70-L50C74" } ], "DocsId": "T:Microsoft.Extensions.ServiceDiscovery.Dns.DnsSrvServiceEndpointProviderOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.ServiceDiscovery.Dns/DnsSrvServiceEndpointProviderOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.Abstractions.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.Abstractions.json index ba1133fe909..31c11d8c485 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.Abstractions.json @@ -1,931 +1,931 @@ { "Assembly": "Microsoft.Extensions.Telemetry.Abstractions", - "GUID": "C7B978A6A06541BFAEE482BBA38A4388FFFFFFFF", + "GUID": "EB25655D20A245BB827EB548536E5E5EFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ITagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify(System.Collections.IEnumerable)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L36C9-L71C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L36C9-L71C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L85C9-L133C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L85C9-L133C23" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L25C58-L25C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L25C58-L25C73" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageHelper", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L46C9-L55C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L46C9-L55C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveClassifiedTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L65C9-L75C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L65C9-L75C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddTag(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L85C9-L87C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L85C9-L87C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddClassifiedTag(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L97C9-L99C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L97C9-L99C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L106C9-L112C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L106C9-L112C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L130C9-L161C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L130C9-L161C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Diagnostics#Enrichment#IEnrichmentTagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#get_Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L18C5-L31C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L18C5-L31C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L26C56-L26C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L26C56-L26C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.RedactedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L31C64-L31C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L31C64-L31C77" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L36C50-L36C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L36C50-L36C65" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L117C28-L117C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L117C28-L117C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L122C38-L122C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L122C38-L122C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagNamePrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" }, { "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertiesAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.SkipNullProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L23C38-L23C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L31C37-L31C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L31C37-L31C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.Transitive", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L46C30-L46C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L46C30-L46C34" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertiesAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L34C5-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L34C5-L37C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L42C26-L42C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L42C26-L42C30" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagProviderAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L61C5-L65C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L61C5-L65C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L70C32-L70C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L70C32-L70C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderMethod", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L75C36-L75C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L75C36-L75C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L83C37-L83C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L83C37-L83C41" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagProviderAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingSampler.ShouldSample``1(Microsoft.Extensions.Logging.Abstractions.LogEntry{``0}@|System.Runtime.InteropServices.InAttribute)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingSampler.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingSampler", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Sampling/LoggingSampler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Strict", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Loose", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.UniqueHostNameSuffixes", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.SetRequestMetadata(Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestRoute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.MethodType", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.RequestMetadataKey", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Unknown", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Redacted", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ClientApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ServerApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions.AddNullLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterCheckpointNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L24C9-L30C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L24C9-L30C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterMeasureNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L42C9-L48C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L42C9-L48C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterTagNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L60C9-L66C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L60C9-L66C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L41C5-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L41C5-L44C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L50C5-L53C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L50C5-L53C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L70C27-L70C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L70C27-L70C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L75C33-L75C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L75C33-L75C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L80C25-L80C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L80C25-L80C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L86C27-L86C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L86C27-L86C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L48C5-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L57C5-L60C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L57C5-L60C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L76C27-L76C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L76C27-L76C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L81C33-L81C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L81C33-L81C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L86C25-L86C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L86C25-L86C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L92C27-L92C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L92C27-L92C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L41C5-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L41C5-L44C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L50C5-L53C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L50C5-L53C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L69C27-L69C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L69C27-L69C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L74C33-L74C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L74C33-L74C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L79C25-L79C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L79C25-L79C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L85C27-L85C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L85C27-L85C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L49C5-L52C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L49C5-L52C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L58C5-L61C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L58C5-L61C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L77C27-L77C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L77C27-L77C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L82C33-L82C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L82C33-L82C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L87C25-L87C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L87C25-L87C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L92C27-L92C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs#L92C27-L92C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L41C5-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L41C5-L44C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L50C5-L53C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L50C5-L53C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L69C27-L69C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L69C27-L69C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L74C33-L74C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L74C33-L74C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L79C25-L79C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L79C25-L79C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L85C27-L85C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L85C27-L85C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L48C5-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L57C5-L60C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L57C5-L60C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L76C27-L76C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L76C27-L76C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L81C33-L81C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L81C33-L81C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L86C25-L86C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L86C25-L86C29" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Unit", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L92C27-L92C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L92C27-L92C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.#ctor(System.String,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Elapsed", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Frequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Checkpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.SetTag(Microsoft.Extensions.Diagnostics.Latency.TagToken,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddCheckpoint(Microsoft.Extensions.Diagnostics.Latency.CheckpointToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.RecordMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.Freeze", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider.CreateContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter.ExportAsync(Microsoft.Extensions.Diagnostics.Latency.LatencyData,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyData.#ctor(System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Tag},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Checkpoint},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Measure},System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Checkpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Measures", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestampFrequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.#ctor(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Measure", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetTagToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetCheckpointToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetMeasureToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.CheckpointNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.MeasureNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.MeasureToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.TagToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.TagToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Tag.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Tag", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBuffer.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/GlobalLogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/GlobalLogBuffer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBuffer", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/GlobalLogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/GlobalLogBuffer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.LogBuffer.Flush", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.LogBuffer.TryEnqueue``1(Microsoft.Extensions.Logging.Abstractions.IBufferedLogger,Microsoft.Extensions.Logging.Abstractions.LogEntry{``0}@|System.Runtime.InteropServices.InAttribute)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.LogBuffer.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Buffering.LogBuffer", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/LogBuffer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.PerRequestLogBuffer.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/PerRequestLogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/PerRequestLogBuffer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Buffering.PerRequestLogBuffer", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/PerRequestLogBuffer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Buffering/PerRequestLogBuffer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.#ctor(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L39C13-L42C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L39C13-L42C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L22C39-L22C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L22C39-L22C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L27C41-L27C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L27C41-L27C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Classifications", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L32C65-L32C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L32C65-L32C69" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/8f88b008401bd66a06240d1b7696cd89d921013b/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.json b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.json index 77d1b0eb88e..dc70118a47f 100644 --- a/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.json +++ b/xml/SourceLinkInformation/net-9.0-pp/Microsoft.Extensions.Telemetry.json @@ -1,439 +1,439 @@ { "Assembly": "Microsoft.Extensions.Telemetry", - "GUID": "DA3BA485F6FD46BA94DEA9A0A7AF78DBFFFFFFFF", + "GUID": "0BB928A40C30470199F25C2874EB834DFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L28C9-L28C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L28C9-L28C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L42C9-L42C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L42C9-L42C54" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L56C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L56C52" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddApplicationLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L66C9-L69C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L66C9-L69C50" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddApplicationLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L81C9-L86C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L81C9-L86C35" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddApplicationLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L98C9-L103C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L98C9-L103C64" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C35" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C60" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.GlobalBufferLoggingBuilderExtensions.AddGlobalBuffer(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L32C9-L43C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L32C9-L43C49" }, { "DocsId": "M:Microsoft.Extensions.Logging.GlobalBufferLoggingBuilderExtensions.AddGlobalBuffer(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L58C9-L66C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L58C9-L66C49" }, { "DocsId": "M:Microsoft.Extensions.Logging.GlobalBufferLoggingBuilderExtensions.AddGlobalBuffer(Microsoft.Extensions.Logging.ILoggingBuilder,System.Nullable{Microsoft.Extensions.Logging.LogLevel})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L81C9-L88C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs#L81C9-L88C49" } ], "DocsId": "T:Microsoft.Extensions.Logging.GlobalBufferLoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalBufferLoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L68C52-L68C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L68C52-L68C75" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.CaptureStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.UseFileInfoForStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L42C45-L42C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L42C45-L42C49" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.IncludeExceptionMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L54C43-L54C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L54C43-L54C47" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.MaxStackTraceLength", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L68C38-L68C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L68C38-L68C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerEnrichmentOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerRedactionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerRedactionOptions.ApplyDiscriminator", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerRedactionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerEnrichmentOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L42C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L42C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L53C9-L60C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L53C9-L60C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L23C12-L23C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L23C12-L23C46" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerRedactionOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L33C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L33C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L58C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L58C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingRedactionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddTraceBasedSampler(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L30C9-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L30C9-L32C56" }, { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddRandomProbabilisticSampler(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L48C9-L63C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L48C9-L63C65" }, { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddRandomProbabilisticSampler(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L79C9-L88C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L79C9-L88C65" }, { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddRandomProbabilisticSampler(Microsoft.Extensions.Logging.ILoggingBuilder,System.Double,System.Nullable{Microsoft.Extensions.Logging.LogLevel})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L106C9-L115C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L106C9-L115C65" }, { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddSampler``1(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L128C9-L133C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L128C9-L133C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions.AddSampler(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LoggingSampler)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L145C9-L151C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs#L145C9-L151C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.SamplingLoggerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/SamplingLoggerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.#ctor(System.Double,System.String,System.Nullable{Microsoft.Extensions.Logging.LogLevel},System.Nullable{System.Int32},System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L22C5-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L22C5-L34C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.Probability", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L40C33-L40C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L40C33-L40C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.CategoryName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L43C35-L43C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L43C35-L43C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.LogLevel", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L46C33-L46C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L46C33-L46C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.EventId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L49C27-L49C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L49C27-L49C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule.EventName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L52C32-L52C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs#L52C32-L52C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerFilterRule", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerFilterRule.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs#L20C78-L20C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs#L20C78-L20C80" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerOptions.Rules", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs#L20C64-L20C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs#L20C64-L20C68" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Sampling.RandomProbabilisticSamplerOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Sampling/RandomProbabilisticSamplerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputCheckpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputMeasures", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.ThrowOnUnregisteredNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L39C55-L70C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L39C55-L70C66" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions.AutoFlushDuration", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L39C41-L39C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L39C41-L39C45" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions.MaxLogRecordSizeInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L48C42-L48C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L48C42-L48C46" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions.MaxBufferSizeInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L58C39-L58C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L58C39-L58C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions.Rules", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L70C50-L70C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs#L70C50-L70C54" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Buffering.GlobalLogBufferingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/GlobalLogBufferingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.#ctor(System.String,System.Nullable{Microsoft.Extensions.Logging.LogLevel},System.Nullable{System.Int32},System.String,System.Collections.Generic.IReadOnlyList{System.Collections.Generic.KeyValuePair{System.String,System.Object}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L28C5-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L28C5-L40C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.CategoryName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L45C35-L45C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.LogLevel", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L50C33-L50C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L50C33-L50C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.EventId", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L55C27-L55C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L55C27-L55C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.EventName", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L60C32-L60C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L60C32-L60C36" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule.Attributes", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L65C71-L65C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs#L65C71-L65C75" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Buffering.LogBufferingFilterRule", - "SourceLink": "https://github.com/dotnet/extensions/blob/fa0072f10f11eae347aaecaa3c3e81e701b0f79d/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/b10f9c0a081b5dbb7755b8f5592e1d3c3f550a3a/src/Libraries/Microsoft.Extensions.Telemetry/Buffering/LogBufferingFilterRule.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.VisualBasic.Forms.json b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.VisualBasic.Forms.json index 00d88b32361..8a4c842cb37 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.VisualBasic.Forms.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.VisualBasic.Forms.json @@ -1,1629 +1,1645 @@ { "Assembly": "Microsoft.VisualBasic.Forms", - "GUID": "DAE8CABBBEFA4E2D963B151178B58067FFFFFFFF", + "GUID": "90BE91F7C03A47A2A03BB88C7B1A1C16FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L22C9-L23C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L22C9-L23C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.ChangeCulture(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L86C13-L87C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L86C13-L87C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.ChangeUICulture(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L98C13-L99C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L98C13-L99C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.GetEnvironmentVariable(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L111C17-L122C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L111C17-L122C21" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L30C17-L31C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L30C17-L31C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L40C17-L45C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L40C17-L45C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.Log", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L57C17-L61C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L57C17-L61C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplicationBase.UICulture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L74C17-L75C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb#L74C17-L75C20" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ApplicationBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplicationBase.vb" }, { "Members": [ { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.ColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + }, + { + "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.FormRevealMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + }, + { + "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.VisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.HighDpiMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs.MinimumSplashScreenDisplayTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L44C9-L49C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L44C9-L49C16" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.AssemblyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L58C17-L59C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L58C17-L59C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.CompanyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L74C17-L83C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L74C17-L83C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.DirectoryPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L91C17-L92C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L91C17-L92C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.LoadedAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L106C21-L111C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L106C21-L111C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.ProductName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L126C17-L134C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L126C17-L134C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.Copyright", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L149C17-L158C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L149C17-L158C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L173C17-L182C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L173C17-L182C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.StackTrace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L197C17-L198C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L197C17-L198C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.Title", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L212C17-L221C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L212C17-L221C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.Trademark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L236C17-L244C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L236C17-L244C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L258C17-L259C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L258C17-L259C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo.WorkingSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L271C17-L272C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb#L271C17-L272C20" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.AssemblyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/AssemblyInfo.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L22C13-L23C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L22C13-L23C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L29C13-L30C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L29C13-L30C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L37C13-L38C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L37C13-L38C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L45C13-L46C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb#L45C13-L46C16" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/CantStartSingleInstanceException.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L27C13-L28C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L27C13-L28C16" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase.InternalCommandLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L38C17-L39C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L38C17-L39C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase.CommandLineArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L52C17-L64C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb#L52C17-L64C20" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ConsoleApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.NoStartupFormException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L21C13-L22C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L21C13-L22C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.NoStartupFormException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L28C13-L29C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L28C13-L29C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.NoStartupFormException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L32C13-L33C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L32C13-L33C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.NoStartupFormException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L36C13-L37C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb#L36C13-L37C16" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.NoStartupFormException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/NoStartupFormException.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupEventArgs.#ctor(System.Collections.ObjectModel.ReadOnlyCollection{System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb#L20C9-L26C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb#L20C9-L26C16" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.StartupEventArgs.CommandLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.StartupEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupEventArgs.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs.#ctor(System.Collections.ObjectModel.ReadOnlyCollection{System.String},System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb#L19C9-L26C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb#L19C9-L26C16" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs.BringToForeground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs.CommandLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/StartupNextInstanceEventArgs.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs.#ctor(System.Boolean,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb#L18C13-L20C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb#L18C13-L20C16" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs.ExitApplication", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/UnhandledExceptionEventArgs.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.User.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L18C9-L19C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L18C9-L19C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.User.IsInRole(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L76C13-L77C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L76C13-L77C21" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.User.InternalPrincipal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L31C17-L32C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L31C17-L32C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.User.CurrentPrincipal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L45C17-L46C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L45C17-L46C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.User.IsAuthenticated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L57C17-L58C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L57C17-L58C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.User.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L66C17-L67C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb#L66C17-L67C20" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.User", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/User.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.ApplicationDefined", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.AuthenticationMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.AuthenticationMode.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.ShutdownMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterAllFormsClose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ShutdownMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.ShutdownMode.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventHandler.BeginInvoke(System.Object,Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventHandler.Invoke(System.Object,Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ApplyApplicationDefaultsEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler.BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler.Invoke(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupEventHandler.BeginInvoke(System.Object,Microsoft.VisualBasic.ApplicationServices.StartupEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupEventHandler.Invoke(System.Object,Microsoft.VisualBasic.ApplicationServices.StartupEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.StartupEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler.BeginInvoke(System.Object,Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler.Invoke(System.Object,Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler.BeginInvoke(System.Object,Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler.Invoke(System.Object,Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L133C13-L134C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L137C13-L138C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.#ctor(Microsoft.VisualBasic.ApplicationServices.AuthenticationMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L141C13-L171C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L145C13-L175C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.HideSplashScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L678C22-L692C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L715C22-L729C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnCreateMainForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L699C9-L699C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L736C9-L736C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnCreateSplashScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L710C9-L710C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L747C9-L747C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnInitialize(System.Collections.ObjectModel.ReadOnlyCollection{System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L746C17-L797C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L783C17-L841C21" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L807C13-L843C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L851C13-L887C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnShutdown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L850C13-L851C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L894C13-L895C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L860C13-L883C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L904C13-L927C21" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnStartupNextInstance(Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L893C13-L903C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L937C13-L947C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnUnhandledException(Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L918C13-L931C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L962C13-L975C21" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.ShowSplashScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L939C13-L970C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L983C13-L1014C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L1024C13-L1025C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L1068C13-L1069C16" }, { "DocsId": "M:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L1036C13-L1080C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L1080C13-L1124C16" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.ApplyApplicationDefaults", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Shutdown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Startup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.StartupNextInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.UnhandledException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L375C17-L386C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L412C17-L423C27" }, { "DocsId": "E:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.NetworkAvailabilityChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L425C26-L447C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L462C26-L484C27" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L183C17-L184C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L187C17-L188C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.ColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L196C17-L197C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L200C17-L201C20" + }, + { + "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.FormRevealMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L217C17-L218C20" + }, + { + "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.VisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L233C17-L234C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.EnableVisualStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L208C17-L209C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L245C17-L246C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.HighDpiMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L221C17-L222C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L258C17-L259C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.IsSingleInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L231C17-L232C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L268C17-L269C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.ShutdownStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L243C17-L244C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L280C17-L281C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.ApplicationContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L257C17-L258C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L294C17-L295C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.SaveMySettingsOnExit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L266C17-L267C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L303C17-L304C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.SplashScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L278C17-L279C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L315C17-L316C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.MainForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L297C17-L298C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L334C17-L335C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.MinimumSplashScreenDisplayTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L326C17-L327C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L363C17-L364C20" }, { "DocsId": "P:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OpenForms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L340C17-L341C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb#L377C17-L378C20" } ], "DocsId": "T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/WindowsFormsApplicationBase.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.CompilerServices.HostServices.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb" }, { "DocsId": "P:Microsoft.VisualBasic.CompilerServices.HostServices.VBHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb#L26C17-L27C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb#L26C17-L27C20" } ], "DocsId": "T:Microsoft.VisualBasic.CompilerServices.HostServices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/HostServices.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.CompilerServices.IVbHost.GetParentWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" }, { "DocsId": "M:Microsoft.VisualBasic.CompilerServices.IVbHost.GetWindowTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" } ], "DocsId": "T:Microsoft.VisualBasic.CompilerServices.IVbHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Helpers/IVbHost.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.AudioPlayMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.AudioPlayMode.WaitToComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.AudioPlayMode.Background", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" }, { "DocsId": "F:Microsoft.VisualBasic.AudioPlayMode.BackgroundLoop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" } ], "DocsId": "T:Microsoft.VisualBasic.AudioPlayMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.AudioPlayMode.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L21C9-L22C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L21C9-L22C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L82C17-L84C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L82C17-L84C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.Play(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L91C13-L92C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L91C13-L92C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.Play(System.String,Microsoft.VisualBasic.AudioPlayMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L103C13-L107C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L103C13-L107C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.Play(System.Byte[],Microsoft.VisualBasic.AudioPlayMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L116C13-L124C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L116C13-L124C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.Play(System.IO.Stream,Microsoft.VisualBasic.AudioPlayMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L133C13-L139C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L133C13-L139C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Audio.PlaySystemSound(System.Media.SystemSound)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L148C13-L153C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb#L148C13-L153C16" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Audio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Audio.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Clock.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Clock.LocalTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L20C17-L21C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L20C17-L21C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Clock.GmtTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L31C17-L32C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L31C17-L32C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Clock.TickCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L44C17-L45C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb#L44C17-L45C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Clock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Clock.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Computer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Computer.Audio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L47C17-L50C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L47C17-L50C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Computer.Clipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L59C17-L64C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L59C17-L64C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Computer.Keyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L74C17-L77C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L74C17-L77C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Computer.Mouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L87C17-L90C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L87C17-L90C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Computer.Screen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L102C17-L103C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb#L102C17-L103C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Computer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Computer.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.ComputerInfo.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L23C9-L24C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L23C9-L24C16" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.AvailablePhysicalMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L53C17-L54C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L53C17-L54C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.AvailableVirtualMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L70C17-L71C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L70C17-L71C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.InstalledUICulture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L80C17-L81C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L80C17-L81C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.OSFullName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L90C17-L91C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L90C17-L91C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.OSPlatform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L106C17-L107C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L106C17-L107C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.OSVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L120C17-L121C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L120C17-L121C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.TotalPhysicalMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L137C17-L138C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L137C17-L138C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ComputerInfo.TotalVirtualMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L154C17-L155C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb#L154C17-L155C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.ComputerInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ComputerInfo.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Keyboard.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Keyboard.SendKeys(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L95C13-L96C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L95C13-L96C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Keyboard.SendKeys(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L105C13-L110C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L105C13-L110C16" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.AltKeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L21C21-L23C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L21C21-L23C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.CapsLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L36C17-L37C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L36C17-L37C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.CtrlKeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L46C21-L48C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L46C21-L48C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.NumLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L61C17-L62C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L61C17-L62C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.ScrollLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L75C17-L76C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L75C17-L76C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Keyboard.ShiftKeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L85C21-L87C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb#L85C21-L87C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Keyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Keyboard.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Mouse.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Mouse.ButtonsSwapped", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L29C17-L34C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L29C17-L34C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Mouse.WheelExists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L44C17-L49C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L44C17-L49C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Mouse.WheelScrollLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L59C17-L64C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb#L59C17-L64C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Mouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Mouse.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler.BeginInvoke(System.Object,Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler.Invoke(System.Object,Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L18C9-L19C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L18C9-L19C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L27C13-L35C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L27C13-L35C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L43C13-L51C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L43C13-L51C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L66C13-L74C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L66C13-L74C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L89C13-L97C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L89C13-L97C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.String,System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L120C13-L129C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L120C13-L129C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.String,System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L160C13-L177C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L160C13-L177C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L202C13-L211C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L202C13-L211C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L244C17-L254C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L244C17-L254C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String,System.Net.ICredentials,System.Boolean,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L281C13-L289C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L281C13-L289C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.DownloadFile(System.Uri,System.String,System.Net.ICredentials,System.Boolean,System.Int32,System.Boolean,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L316C13-L377C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.DownloadFile.vb#L316C13-L377C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.Ping(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L46C13-L47C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L46C13-L47C21" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.Ping(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L57C13-L61C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L57C13-L61C21" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.Ping(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L72C13-L85C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L72C13-L85C21" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.Ping(System.Uri,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L96C13-L100C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Ping.vb#L96C13-L100C21" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L19C13-L26C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L19C13-L26C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L34C13-L41C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L34C13-L41C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L56C13-L63C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L56C13-L63C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L78C13-L85C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L78C13-L85C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.String,System.String,System.String,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L104C13-L112C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L104C13-L112C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.String,System.String,System.String,System.Boolean,System.Int32,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L138C13-L159C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L138C13-L159C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri,System.String,System.String,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L178C13-L186C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L178C13-L186C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri,System.String,System.String,System.Boolean,System.Int32,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L210C17-L220C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L210C17-L220C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri,System.Net.ICredentials,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L237C13-L244C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L237C13-L244C16" }, { "DocsId": "M:Microsoft.VisualBasic.Devices.Network.UploadFile(System.String,System.Uri,System.Net.ICredentials,System.Boolean,System.Int32,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L265C13-L316C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.UploadFile.vb#L265C13-L316C16" }, { "DocsId": "E:Microsoft.VisualBasic.Devices.Network.NetworkAvailabilityChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb#L58C21-L94C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb#L58C21-L94C27" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.Network.IsAvailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb#L40C17-L41C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb#L40C17-L41C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.Network", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/Network.Availability.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb#L12C9-L14C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb#L12C9-L14C16" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs.IsNetworkAvailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/NetworkAvailableEventArgs.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Devices.ServerComputer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.Clock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L41C17-L44C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L41C17-L44C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L56C17-L60C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L56C17-L60C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L72C17-L76C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L72C17-L76C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L86C17-L87C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L86C17-L87C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.Network", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L97C17-L100C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L97C17-L100C20" }, { "DocsId": "P:Microsoft.VisualBasic.Devices.ServerComputer.Registry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L110C17-L113C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb#L110C17-L113C20" } ], "DocsId": "T:Microsoft.VisualBasic.Devices.ServerComputer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Devices/ServerComputer.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L82C13-L83C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L82C13-L83C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L89C13-L90C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L89C13-L90C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L789C13-L792C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L789C13-L792C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.GetSupportedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L800C13-L801C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L800C13-L801C21" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L807C13-L808C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L807C13-L808C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L814C13-L815C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L814C13-L815C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L827C17-L833C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L827C17-L833C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L845C17-L857C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L845C17-L857C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L869C13-L928C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L869C13-L928C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L943C13-L950C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L943C13-L950C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.Write(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L960C17-L976C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L960C17-L976C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.FileLogTraceListener.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L986C17-L1001C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L986C17-L1001C16" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.FullLogFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L182C17-L188C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L182C17-L188C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L197C17-L204C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L197C17-L204C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.AutoFlush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L224C17-L231C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L224C17-L231C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.BaseFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L245C17-L251C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L245C17-L251C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.CustomLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L276C17-L284C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L276C17-L284C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.Delimiter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L315C17-L321C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L315C17-L321C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.DiskSpaceExhaustedBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L335C17-L342C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L335C17-L342C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.Encoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L361C17-L367C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L361C17-L367C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.IncludeHostName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L384C17-L390C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L384C17-L390C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L404C17-L411C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L404C17-L411C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.LogFileCreationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L430C17-L437C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L430C17-L437C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.MaxFileSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L456C17-L462C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L456C17-L462C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.FileLogTraceListener.ReserveDiskSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L479C17-L485C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb#L479C17-L485C20" } ], "DocsId": "T:Microsoft.VisualBasic.Logging.FileLogTraceListener", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/FileLogTraceListener.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L32C9-L40C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L32C9-L40C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L46C9-L51C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L46C9-L51C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.InitializeWithDefaultsSinceNoConfigExists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L124C13-L126C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L124C13-L126C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteEntry(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L133C13-L134C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L133C13-L134C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteEntry(System.String,System.Diagnostics.TraceEventType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L142C13-L143C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L142C13-L143C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteEntry(System.String,System.Diagnostics.TraceEventType,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L152C13-L156C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L152C13-L156C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteException(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L164C13-L165C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L164C13-L165C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteException(System.Exception,System.Diagnostics.TraceEventType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L176C13-L177C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L176C13-L177C16" }, { "DocsId": "M:Microsoft.VisualBasic.Logging.Log.WriteException(System.Exception,System.Diagnostics.TraceEventType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L189C13-L203C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L189C13-L203C16" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.Log.DefaultFileLogWriter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L59C17-L60C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L59C17-L60C20" }, { "DocsId": "P:Microsoft.VisualBasic.Logging.Log.TraceSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L71C17-L72C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb#L71C17-L72C20" } ], "DocsId": "T:Microsoft.VisualBasic.Logging.Log", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Log.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.Logging.DiskSpaceExhaustedOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.DiskSpaceExhaustedOption.ThrowException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.DiskSpaceExhaustedOption.DiscardMessages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" } ], "DocsId": "T:Microsoft.VisualBasic.Logging.DiskSpaceExhaustedOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.DiskSpaceExhaustedOption.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption.Daily", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption.Weekly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" } ], "DocsId": "T:Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileCreationScheduleOption.vb" }, { "Members": [ { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.TempDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.LocalUserApplicationDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.CommonApplicationDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.ExecutableDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "DocsId": "F:Microsoft.VisualBasic.Logging.LogFileLocation.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" } ], "DocsId": "T:Microsoft.VisualBasic.Logging.LogFileLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/Logging/Logging.LogFileLocation.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L31C13-L32C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L31C13-L32C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L39C13-L40C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L39C13-L40C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L49C13-L50C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L49C13-L50C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L57C13-L58C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L57C13-L58C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L65C13-L66C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L65C13-L66C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L73C13-L74C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L73C13-L74C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.ContainsText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L83C13-L84C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L83C13-L84C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetAudioStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L91C13-L92C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L91C13-L92C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L106C13-L108C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L106C13-L108C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetDataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L117C13-L118C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L117C13-L118C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L125C13-L126C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L125C13-L126C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L133C13-L134C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L133C13-L134C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L141C13-L142C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L141C13-L142C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L150C13-L151C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L150C13-L151C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetAudio(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L158C13-L159C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L158C13-L159C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetAudio(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L166C13-L167C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L166C13-L167C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetData(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L175C13-L176C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L175C13-L176C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetDataObject(System.Windows.Forms.DataObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L185C13-L186C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L185C13-L186C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetFileDropList(System.Collections.Specialized.StringCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L193C13-L194C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L193C13-L194C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.TryGetData``1(System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L198C13-L199C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L198C13-L199C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.TryGetData``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L203C13-L204C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L203C13-L204C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L211C13-L212C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L211C13-L212C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetDataAsJson``1(System.String,``0)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L216C13-L217C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L216C13-L217C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L224C13-L225C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L224C13-L225C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetText(System.String,System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L233C13-L234C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb#L233C13-L234C16" } ], "DocsId": "T:Microsoft.VisualBasic.MyServices.ClipboardProxy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/ClipboardProxy.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CombinePath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L77C13-L78C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L77C13-L78C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyDirectory(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L106C13-L107C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L106C13-L107C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyDirectory(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L139C13-L140C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L139C13-L140C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L175C13-L176C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L175C13-L176C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L221C13-L222C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L221C13-L222C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyFile(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L247C13-L248C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L247C13-L248C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyFile(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L277C13-L278C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L277C13-L278C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L309C13-L310C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L309C13-L310C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L352C13-L353C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L352C13-L353C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.CreateDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L372C13-L373C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L372C13-L373C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.DeleteDirectoryOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L402C13-L403C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L402C13-L403C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L438C13-L439C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L438C13-L439C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L484C13-L485C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L484C13-L485C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L507C13-L508C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L507C13-L508C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L550C13-L551C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L550C13-L551C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L581C13-L582C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L581C13-L582C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L593C13-L594C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L593C13-L594C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L605C13-L606C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L605C13-L606C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FindInFiles(System.String,System.String,System.Boolean,Microsoft.VisualBasic.FileIO.SearchOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L638C13-L639C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L638C13-L639C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FindInFiles(System.String,System.String,System.Boolean,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L680C13-L681C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L680C13-L681C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetDirectories(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L704C13-L705C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L704C13-L705C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetDirectories(System.String,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L733C13-L734C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L733C13-L734C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetDirectoryInfo(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L752C13-L753C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L752C13-L753C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetDriveInfo(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L771C13-L772C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L771C13-L772C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L792C13-L793C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L792C13-L793C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetFiles(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L817C13-L818C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L817C13-L818C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetFiles(System.String,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L852C13-L853C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L852C13-L853C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L863C13-L864C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L863C13-L864C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetParentPath(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L890C13-L891C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L890C13-L891C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.GetTempFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L898C13-L899C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L898C13-L899C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveDirectory(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L929C13-L930C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L929C13-L930C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveDirectory(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L963C13-L964C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L963C13-L964C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1000C13-L1001C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1000C13-L1001C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1048C13-L1049C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1048C13-L1049C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveFile(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1074C13-L1075C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1074C13-L1075C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveFile(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1105C13-L1106C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1105C13-L1106C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1137C13-L1138C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1137C13-L1138C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.MoveFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1180C13-L1181C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1180C13-L1181C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFieldParser(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1204C13-L1205C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1204C13-L1205C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFieldParser(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1229C13-L1230C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1229C13-L1230C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFieldParser(System.String,System.Int32[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1254C13-L1255C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1254C13-L1255C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFileReader(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1268C13-L1269C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1268C13-L1269C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFileReader(System.String,System.Text.Encoding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1285C13-L1286C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1285C13-L1286C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFileWriter(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1304C13-L1305C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1304C13-L1305C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.OpenTextFileWriter(System.String,System.Boolean,System.Text.Encoding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1328C13-L1329C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1328C13-L1329C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.ReadAllBytes(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1351C13-L1352C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1351C13-L1352C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.ReadAllText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1374C13-L1375C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1374C13-L1375C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.ReadAllText(System.String,System.Text.Encoding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1398C13-L1399C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1398C13-L1399C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.RenameDirectory(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1424C13-L1425C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1424C13-L1425C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.RenameFile(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1450C13-L1451C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1450C13-L1451C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.WriteAllBytes(System.String,System.Byte[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1473C13-L1474C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1473C13-L1474C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.WriteAllText(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1495C13-L1496C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1495C13-L1496C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.WriteAllText(System.String,System.String,System.Boolean,System.Text.Encoding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1523C13-L1524C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L1523C13-L1524C16" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.FileSystemProxy.CurrentDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L35C17-L36C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L35C17-L36C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.FileSystemProxy.Drives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L48C17-L49C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L48C17-L49C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.FileSystemProxy.SpecialDirectories", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L60C17-L64C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb#L60C17-L64C20" } ], "DocsId": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/FileSystemProxy.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.MyServices.Internal.ContextValue`1.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb#L27C9-L29C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb#L27C9-L29C16" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.Internal.ContextValue`1.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb#L40C21-L44C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb#L40C21-L44C20" } ], "DocsId": "T:Microsoft.VisualBasic.MyServices.Internal.ContextValue`1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/Internal/ContextValue.vb" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.MyServices.RegistryProxy.GetValue(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L60C13-L61C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L60C13-L61C21" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.RegistryProxy.SetValue(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L64C13-L65C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L64C13-L65C16" }, { "DocsId": "M:Microsoft.VisualBasic.MyServices.RegistryProxy.SetValue(System.String,System.String,System.Object,Microsoft.Win32.RegistryValueKind)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L73C13-L74C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L73C13-L74C16" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.ClassesRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L23C17-L24C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L23C17-L24C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.CurrentConfig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L29C17-L30C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L29C17-L30C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.CurrentUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L35C17-L36C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L35C17-L36C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.LocalMachine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L41C17-L42C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L41C17-L42C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.PerformanceData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L47C17-L48C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L47C17-L48C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.RegistryProxy.Users", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L53C17-L54C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb#L53C17-L54C20" } ], "DocsId": "T:Microsoft.VisualBasic.MyServices.RegistryProxy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/RegistryProxy.vb" }, { "Members": [ { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.AllUsersApplicationData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L39C17-L40C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L39C17-L40C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.CurrentUserApplicationData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L57C17-L58C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L57C17-L58C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.Desktop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L75C17-L76C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L75C17-L76C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.MyDocuments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L93C17-L94C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L93C17-L94C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.MyMusic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L111C17-L112C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L111C17-L112C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.MyPictures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L129C17-L130C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L129C17-L130C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.ProgramFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L147C17-L148C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L147C17-L148C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.Programs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L165C17-L166C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L165C17-L166C20" }, { "DocsId": "P:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy.Temp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L176C17-L177C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb#L176C17-L177C20" } ], "DocsId": "T:Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/MyServices/SpecialDirectoriesProxy.vb" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.Registry.AccessControl.json b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.Registry.AccessControl.json index 56531027efe..6b62d8ddd4a 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.Registry.AccessControl.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.Registry.AccessControl.json @@ -1,25 +1,25 @@ { "Assembly": "Microsoft.Win32.Registry.AccessControl", - "GUID": "834544017A8F48A485B8E22BB02C612BFFFFFFFF", + "GUID": "81E31B6681C94534A6AB740A345C304CFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L15C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L15C43" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L20C13-L22C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L20C13-L22C58" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.SetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.RegistrySecurity)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L27C13-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L27C13-L30C10" } ], "DocsId": "T:Microsoft.Win32.RegistryAclExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.SystemEvents.json b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.SystemEvents.json index fff855295c9..8bf87319454 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.SystemEvents.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/Microsoft.Win32.SystemEvents.json @@ -1,489 +1,489 @@ { "Assembly": "Microsoft.Win32.SystemEvents", - "GUID": "F9D6461070B8467097B7F16E161E9DF3FFFFFFFF", + "GUID": "9FE056CF480244798BCA4F6CE78EF494FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventArgs.#ctor(Microsoft.Win32.PowerModes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.PowerModeChangedEventArgs.Mode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.Invoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.PowerModes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Resume", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.StatusChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Suspend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndedEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionEndReasons.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.Logoff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.SystemShutdown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndReasons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventArgs.#ctor(Microsoft.Win32.SessionSwitchReason)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionSwitchEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.Invoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleConnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleDisconnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteConnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteDisconnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogoff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionUnlock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionRemoteControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SystemEvents.CreateTimer(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L385C13-L399C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L385C13-L399C28" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.InvokeOnEventsThread(System.Delegate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L752C13-L783C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L752C13-L783C10" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.KillTimer(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L790C13-L800C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L790C13-L800C10" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.EventsThreadShutdown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L137C20-L137C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L137C20-L137C73" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.InstalledFontsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L148C17-L149C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L148C17-L149C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.LowMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L165C17-L167C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L165C17-L167C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PaletteChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L182C17-L183C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L182C17-L183C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PowerModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L198C17-L200C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L198C17-L200C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L214C17-L216C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L214C17-L216C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L230C17-L232C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L230C17-L232C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionSwitch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L246C17-L249C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L246C17-L249C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L263C17-L265C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L263C17-L265C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimerElapsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L279C17-L281C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L279C17-L281C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L296C17-L297C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L296C17-L297C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L311C17-L312C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L311C17-L312C14" } ], "DocsId": "T:Microsoft.Win32.SystemEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventArgs.#ctor(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.TimerElapsedEventArgs.TimerId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.Invoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Accessibility", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Desktop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.General", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Keyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Mouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Policy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Power", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Screensaver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Locale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.VisualStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangedEventArgs.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangingEventArgs.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.CodeDom.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.CodeDom.json index 28f50751071..31c9b67f78e 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.CodeDom.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.CodeDom.json @@ -1,4229 +1,4229 @@ { "Assembly": "System.CodeDom", - "GUID": "E9DE959BDD9F436FB496003CE1258B85FFFFFFFF", + "GUID": "3A65F03A8BE04CED92BFBF1859B998A3FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeArgumentReferenceExpression.ParameterName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" } ], "DocsId": "T:System.CodeDom.CodeArgumentReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Initializers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.SizeExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" } ], "DocsId": "T:System.CodeDom.CodeArrayCreateExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L8C9-L8C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L8C9-L8C48" }, { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L16C46-L16C50" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C52-L18C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C52-L18C92" } ], "DocsId": "T:System.CodeDom.CodeArrayIndexerExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" }, { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" } ], "DocsId": "T:System.CodeDom.CodeAssignStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Event", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeAttachEventStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Add(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Contains(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L51C62-L51C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L51C62-L51C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.CopyTo(System.CodeDom.CodeAttributeArgument[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L53C73-L53C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L53C73-L53C98" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.IndexOf(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L55C60-L55C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L55C60-L55C79" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Insert(System.Int32,System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C71-L57C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C71-L57C96" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Remove(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C60-L59C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C60-L59C78" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgumentCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgumentCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Arguments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.AttributeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclaration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Add(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L40C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L44C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L44C13-L51C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Contains(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L53C65-L53C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L53C65-L53C85" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.CopyTo(System.CodeDom.CodeAttributeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L55C76-L55C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L55C76-L55C101" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.IndexOf(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L57C63-L57C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L57C63-L57C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C74-L59C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C74-L59C99" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Remove(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C63-L61C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C63-L61C81" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBaseReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeBaseReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" }, { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Operator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Add", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Subtract", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Multiply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Divide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Modulus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Assign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityInequality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityEquality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.ValueEquality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseOr", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseAnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanOr", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanAnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThanOrEqual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThanOrEqual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L8C9-L8C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L8C9-L8C40" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L14C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L16C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L22C9-L26C10" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.TargetType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L30C20-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L30C20-L30C55" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L34C44-L34C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L34C44-L34C48" } ], "DocsId": "T:System.CodeDom.CodeCastExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L11C9-L11C37" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L13C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L18C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L24C9-L29C10" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.LocalName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L33C20-L33C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L33C20-L33C46" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.CatchExceptionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L39C20-L39C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L39C20-L39C84" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.Statements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L43C54-L43C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L43C54-L43C93" } ], "DocsId": "T:System.CodeDom.CodeCatchClause", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Add(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Contains(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L51C56-L51C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L51C56-L51C76" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.CopyTo(System.CodeDom.CodeCatchClause[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L53C67-L53C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L53C67-L53C92" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.IndexOf(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L55C54-L55C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L55C54-L55C73" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Insert(System.Int32,System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C65-L57C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C65-L57C90" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Remove(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C54-L59C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C54-L59C72" }, { "DocsId": "P:System.CodeDom.CodeCatchClauseCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeCatchClauseCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor(System.String,System.Guid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.FileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" } ], "DocsId": "T:System.CodeDom.CodeChecksumPragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeComment.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeComment.DocComment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" }, { "DocsId": "P:System.CodeDom.CodeComment.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" } ], "DocsId": "T:System.CodeDom.CodeComment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" }, { "DocsId": "P:System.CodeDom.CodeCommentStatement.Comment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" } ], "DocsId": "T:System.CodeDom.CodeCommentStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Add(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Contains(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L51C61-L51C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L51C61-L51C81" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.CopyTo(System.CodeDom.CodeCommentStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L53C72-L53C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L53C72-L53C97" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.IndexOf(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L55C59-L55C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L55C59-L55C78" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Insert(System.Int32,System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C70-L57C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C70-L57C95" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Remove(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C59-L59C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C59-L59C77" }, { "DocsId": "P:System.CodeDom.CodeCommentStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" } ], "DocsId": "T:System.CodeDom.CodeCommentStatementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L12C62-L10C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L12C62-L10C37" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.Namespaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L12C53-L12C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L12C53-L12C57" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L14C57-L14C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L14C57-L14C89" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.AssemblyCustomAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L16C79-L16C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L16C79-L16C129" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.StartDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C59-L18C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C59-L18C98" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.EndDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C96" } ], "DocsId": "T:System.CodeDom.CodeCompileUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.Condition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.TrueStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.FalseStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" } ], "DocsId": "T:System.CodeDom.CodeConditionStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" }, { "DocsId": "P:System.CodeDom.CodeConstructor.BaseConstructorArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" }, { "DocsId": "P:System.CodeDom.CodeConstructor.ChainedConstructorArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" } ], "DocsId": "T:System.CodeDom.CodeConstructor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" }, { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeDefaultValueExpression.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" } ], "DocsId": "T:System.CodeDom.CodeDefaultValueExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.DelegateType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.MethodName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" } ], "DocsId": "T:System.CodeDom.CodeDelegateCreateExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" } ], "DocsId": "T:System.CodeDom.CodeDelegateInvokeExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Direction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" } ], "DocsId": "T:System.CodeDom.CodeDirectionExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirective.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" } ], "DocsId": "T:System.CodeDom.CodeDirective", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Add(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Contains(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L51C54-L51C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L51C54-L51C74" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.CopyTo(System.CodeDom.CodeDirective[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L53C65-L53C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L53C65-L53C90" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.IndexOf(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L55C52-L55C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L55C52-L55C71" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Insert(System.Int32,System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C63-L57C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C63-L57C88" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Remove(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C52-L59C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C52-L59C70" }, { "DocsId": "P:System.CodeDom.CodeDirectiveCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeDirectiveCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEntryPointMethod.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" } ], "DocsId": "T:System.CodeDom.CodeEntryPointMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.EventName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeEventReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Contains(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L51C55-L51C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L51C55-L51C75" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.CopyTo(System.CodeDom.CodeExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L53C66-L53C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L53C66-L53C91" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.IndexOf(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L55C53-L55C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L55C53-L55C72" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Insert(System.Int32,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C64-L57C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C64-L57C89" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Remove(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C53-L59C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C53-L59C71" }, { "DocsId": "P:System.CodeDom.CodeExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeExpressionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeExpressionStatement.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeExpressionStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.FieldName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeFieldReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" }, { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeGotoStatement.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" } ], "DocsId": "T:System.CodeDom.CodeGotoStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L8C9-L8C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L8C9-L8C43" }, { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L16C46-L16C50" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C52-L18C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C52-L18C92" } ], "DocsId": "T:System.CodeDom.CodeIndexerExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" }, { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.InitStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.TestExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.IncrementStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.Statements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" } ], "DocsId": "T:System.CodeDom.CodeIterationStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Statement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeLabeledStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" }, { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.FileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" } ], "DocsId": "T:System.CodeDom.CodeLinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberEvent.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L8C9-L8C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L8C9-L8C37" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L12C20-L12C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L12C20-L12C55" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L16C62-L16C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L16C62-L16C66" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L18C67-L18C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L18C67-L18C110" } ], "DocsId": "T:System.CodeDom.CodeMemberEvent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L8C9-L8C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L8C9-L8C37" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L14C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L16C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L22C9-L26C10" }, { "DocsId": "P:System.CodeDom.CodeMemberField.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L30C20-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L30C20-L30C55" }, { "DocsId": "P:System.CodeDom.CodeMemberField.InitExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L34C48-L34C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L34C48-L34C52" } ], "DocsId": "T:System.CodeDom.CodeMemberField", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberMethod.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateImplementationTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L23C20-L23C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L23C20-L23C74" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Statements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L31C17-L37C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L31C17-L37C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L45C17-L51C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L45C17-L51C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L55C62-L55C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L55C62-L55C66" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L61C17-L69C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L61C17-L69C45" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnTypeCustomAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L73C81-L73C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L73C81-L73C131" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.TypeParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L75C62-L75C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L75C62-L75C105" } ], "DocsId": "T:System.CodeDom.CodeMemberMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberProperty.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L47C65-L51C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L47C65-L51C133" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L11C62-L11C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L11C62-L11C66" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C67-L13C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C67-L13C110" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L17C20-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L17C20-L17C55" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasGet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L23C20-L23C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L23C20-L23C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L36C20-L36C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L36C20-L36C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.GetStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L47C56-L47C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L47C56-L47C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.SetStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C74-L51C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C74-L51C78" } ], "DocsId": "T:System.CodeDom.CodeMemberProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Method", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" } ], "DocsId": "T:System.CodeDom.CodeMethodInvokeExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L8C9-L8C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L8C9-L8C51" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L10C9-L14C10" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L16C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L16C9-L24C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L26C46-L26C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L26C46-L26C50" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.MethodName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L30C20-L30C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L30C20-L30C41" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TypeArguments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L34C61-L34C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L34C61-L34C104" } ], "DocsId": "T:System.CodeDom.CodeMethodReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" }, { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReturnStatement.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeMethodReturnStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" }, { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateComments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateImports", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Types", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Imports", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Comments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" } ], "DocsId": "T:System.CodeDom.CodeNamespace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Add(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Contains(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L51C54-L51C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L51C54-L51C74" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.CopyTo(System.CodeDom.CodeNamespace[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L53C65-L53C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L53C65-L53C90" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.IndexOf(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L55C52-L55C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L55C52-L55C71" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Insert(System.Int32,System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C63-L57C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C63-L57C88" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Remove(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C52-L59C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C52-L59C70" }, { "DocsId": "P:System.CodeDom.CodeNamespaceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.LinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.Namespace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Add(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.AddRange(System.CodeDom.CodeNamespaceImport[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L47C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L51C13-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L51C13-L53C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L64C47-L64C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L64C47-L64C68" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L68C20-L68C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L68C20-L68C31" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C17-L73C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C17-L73C14" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L76C34-L76C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L76C34-L76C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L78C44-L78C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L78C44-L78C49" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L80C40-L80C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L80C40-L80C44" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L82C60-L82C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L82C60-L82C86" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L84C52-L84C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L84C52-L84C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L86C40-L86C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L86C40-L86C77" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L88C31-L88C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L88C31-L88C38" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L90C46-L90C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L90C46-L90C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L92C44-L92C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L92C44-L92C85" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L96C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L96C13-L98C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L102C13-L104C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L102C13-L104C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L108C13-L110C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L108C13-L110C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L68C20-L68C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L68C20-L68C31" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L76C34-L76C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L76C34-L76C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L78C44-L78C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L78C44-L78C49" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L80C40-L80C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L80C40-L80C44" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImportCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L19C9-L19C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L19C9-L19C32" }, { "DocsId": "P:System.CodeDom.CodeObject.UserData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C40-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C40-L21C70" } ], "DocsId": "T:System.CodeDom.CodeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeObject.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L8C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L8C48" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L14C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L20C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C63-L26C10" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L30C20-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L30C20-L30C55" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C54-L34C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L34C54-L34C58" } ], "DocsId": "T:System.CodeDom.CodeObjectCreateExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L8C9-L8C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L8C9-L8C56" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L10C9-L14C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L16C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L22C9-L26C10" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.CustomAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L30C20-L30C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L30C20-L30C70" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Direction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C43-L34C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C43-L34C47" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C20-L38C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C20-L38C55" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L44C20-L44C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L44C20-L44C41" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Add(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Contains(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L51C75-L51C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L51C75-L51C95" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.CopyTo(System.CodeDom.CodeParameterDeclarationExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L53C86-L53C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L53C86-L53C111" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.IndexOf(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L55C73-L55C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L55C73-L55C92" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Insert(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C84-L57C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C84-L57C109" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Remove(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C73-L59C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C73-L59C91" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpressionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodePrimitiveExpression.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" } ], "DocsId": "T:System.CodeDom.CodePrimitiveExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.PropertyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" } ], "DocsId": "T:System.CodeDom.CodePropertyReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertySetValueReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodePropertySetValueReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor(System.CodeDom.CodeRegionMode,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" } ], "DocsId": "T:System.CodeDom.CodeRegionDirective", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeRegionMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.End", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" } ], "DocsId": "T:System.CodeDom.CodeRegionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Event", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" } ], "DocsId": "T:System.CodeDom.CodeRemoveEventStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" }, { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.LinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" } ], "DocsId": "T:System.CodeDom.CodeSnippetCompileUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetExpression.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetStatement.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetTypeMember.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" } ], "DocsId": "T:System.CodeDom.CodeSnippetTypeMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "DocsId": "P:System.CodeDom.CodeStatement.LinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L8C44-L8C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L8C44-L8C48" }, { "DocsId": "P:System.CodeDom.CodeStatement.StartDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L10C59-L10C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L10C59-L10C98" }, { "DocsId": "P:System.CodeDom.CodeStatement.EndDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L12C57-L12C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L12C57-L12C96" } ], "DocsId": "T:System.CodeDom.CodeStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L40C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L44C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L44C13-L51C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Contains(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L53C54-L53C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L53C54-L53C74" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.CopyTo(System.CodeDom.CodeStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L55C65-L55C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L55C65-L55C90" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.IndexOf(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L57C52-L57C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L57C52-L57C71" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Insert(System.Int32,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C63-L59C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C63-L59C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Remove(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C52-L61C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C52-L61C70" }, { "DocsId": "P:System.CodeDom.CodeStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeStatementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThisReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeThisReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" }, { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeThrowExceptionStatement.ToThrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" } ], "DocsId": "T:System.CodeDom.CodeThrowExceptionStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.TryStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.CatchClauses", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.FinallyStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" } ], "DocsId": "T:System.CodeDom.CodeTryCatchFinallyStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" } ], "DocsId": "T:System.CodeDom.CodeTypeConstructor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L21C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L21C41" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L26C10" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateBaseTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L28C48-L28C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L28C48-L28C52" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.BaseTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L34C17-L40C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L34C17-L40C35" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L46C20-L46C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L46C20-L46C122" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsStruct", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L61C20-L61C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L61C20-L61C29" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsEnum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L76C20-L76C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L76C20-L76C27" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsInterface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L91C20-L91C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L91C20-L91C100" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsPartial", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L108C33-L108C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L108C33-L108C37" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.Members", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L114C17-L120C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L114C17-L120C33" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L124C62-L124C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L124C62-L124C105" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclaration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Add(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Contains(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L51C60-L51C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L51C60-L51C80" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.CopyTo(System.CodeDom.CodeTypeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L53C71-L53C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L53C71-L53C96" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.IndexOf(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L55C58-L55C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L55C58-L55C77" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C69-L57C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C69-L57C94" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Remove(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C58-L59C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C58-L59C76" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L29C83-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L29C83-L16C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L18C48-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L18C48-L21C10" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.ReturnType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L25C20-L25C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L25C20-L25C55" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L29C74-L29C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L29C74-L29C78" } ], "DocsId": "T:System.CodeDom.CodeTypeDelegate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L14C60-L24C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L14C60-L24C103" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L10C20-L10C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L10C20-L10C41" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L14C46-L14C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L14C46-L14C50" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.CustomAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L18C20-L18C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L18C20-L18C70" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.LinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L22C44-L22C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L22C44-L22C48" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Comments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L24C58-L24C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L24C58-L24C62" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.StartDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L26C59-L26C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L26C59-L26C98" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.EndDirectives", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L28C57-L28C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L28C57-L28C96" } ], "DocsId": "T:System.CodeDom.CodeTypeMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Add(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Contains(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L51C55-L51C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L51C55-L51C75" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.CopyTo(System.CodeDom.CodeTypeMember[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L53C66-L53C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L53C66-L53C91" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.IndexOf(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L55C53-L55C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L55C53-L55C72" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Insert(System.Int32,System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C64-L57C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C64-L57C89" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Remove(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C53-L59C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C53-L59C71" }, { "DocsId": "P:System.CodeDom.CodeTypeMemberCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeTypeMemberCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L8C9-L8C42" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L15C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L20C9-L23C10" }, { "DocsId": "P:System.CodeDom.CodeTypeOfExpression.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L27C20-L27C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L27C20-L27C55" } ], "DocsId": "T:System.CodeDom.CodeTypeOfExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L10C9-L10C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L10C9-L10C39" }, { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L19C20-L19C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L19C20-L19C41" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Constraints", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L23C59-L23C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L23C59-L23C102" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.CustomAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C71-L25C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C71-L25C121" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.HasConstructorConstraint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C48-L27C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C48-L27C52" } ], "DocsId": "T:System.CodeDom.CodeTypeParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L40C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L44C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L44C13-L51C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Contains(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L53C58-L53C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L53C58-L53C78" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.CopyTo(System.CodeDom.CodeTypeParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L55C69-L55C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L55C69-L55C94" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.IndexOf(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L57C56-L57C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L57C56-L57C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Insert(System.Int32,System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C67-L59C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C67-L59C92" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Remove(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C56-L61C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C56-L61C74" }, { "DocsId": "P:System.CodeDom.CodeTypeParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" } ], "DocsId": "T:System.CodeDom.CodeTypeParameterCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GlobalReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GenericTypeParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L61C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L63C97-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L63C97-L66C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L68C9-L71C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L68C9-L71C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L73C9-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L73C9-L76C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L273C95-L279C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L273C95-L279C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L283C13-L286C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L283C13-L286C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L289C9-L294C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L289C9-L294C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L296C9-L301C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L296C9-L301C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayElementType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L303C54-L303C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L303C54-L303C58" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayRank", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L305C32-L305C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L305C32-L305C36" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.BaseType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L313C17-L326C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L313C17-L326C32" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L335C51-L335C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L335C51-L335C55" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.TypeArguments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L341C17-L346C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L341C17-L346C77" } ], "DocsId": "T:System.CodeDom.CodeTypeReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L44C13-L50C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L44C13-L50C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L54C13-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L54C13-L61C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Contains(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L63C58-L63C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L63C58-L63C78" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.CopyTo(System.CodeDom.CodeTypeReference[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L65C69-L65C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L65C69-L65C94" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.IndexOf(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L67C56-L67C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L67C56-L67C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Insert(System.Int32,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L69C67-L69C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L69C67-L69C92" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Remove(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L71C56-L71C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L71C56-L71C74" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L8C9-L8C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L8C9-L8C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L15C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L20C9-L23C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceExpression.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L27C20-L27C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L27C20-L27C55" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L8C9-L8C54" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L10C9-L14C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L16C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L22C9-L26C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L28C9-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L28C9-L33C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L35C9-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L35C9-L40C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L42C9-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L42C9-L47C10" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.InitExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L49C48-L49C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L49C48-L49C52" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L53C20-L53C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L53C20-L53C41" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L59C20-L59C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L59C20-L59C55" } ], "DocsId": "T:System.CodeDom.CodeVariableDeclarationStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeVariableReferenceExpression.VariableName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" } ], "DocsId": "T:System.CodeDom.CodeVariableReferenceExpression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.FieldDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.In", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Out", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Ref", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" } ], "DocsId": "T:System.CodeDom.FieldDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.MemberAttributes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Abstract", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Final", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Static", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Override", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Const", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.New", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Overloaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Assembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyAndAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Family", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyOrAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Private", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Public", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.AccessMask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.ScopeMask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.VTableMask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" } ], "DocsId": "T:System.CodeDom.MemberAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L23C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L27C13-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L27C13-L37C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L41C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L41C13-L51C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L55C13-L65C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L55C13-L65C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L69C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L69C13-L86C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L90C13-L100C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L90C13-L100C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L110C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L110C72" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L115C13-L121C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L115C13-L121C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L126C13-L128C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L126C13-L128C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L133C13-L155C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L133C13-L155C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L174C13-L177C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L174C13-L177C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L186C13-L195C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L186C13-L195C52" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L200C13-L216C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L200C13-L216C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.JoinStringArray(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L221C13-L243C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L221C13-L243C34" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.FileExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.CompilerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeCompiler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String,System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetLanguageFromExtension(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedLanguage(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedExtension(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetCompilerInfo(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetAllCompilerInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L107C62-L107C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L107C62-L107C89" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C77-L117C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C77-L117C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L119C75-L119C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L119C75-L119C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateParser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L126C54-L126C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L126C54-L126C58" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L128C65-L128C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L128C65-L128C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L131C13-L131C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L131C13-L131C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C13-L134C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C13-L134C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C61" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C67" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C56" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C63" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L171C13-L171C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L171C13-L171C75" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L175C13-L175C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L175C13-L175C51" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L109C48-L109C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L109C48-L109C60" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L111C59-L111C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L111C59-L111C79" } ], "DocsId": "T:System.CodeDom.Compiler.CodeDomProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectives(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaces(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypes(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L247C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L247C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L249C67-L249C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L249C67-L249C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L253C13-L277C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L253C13-L277C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L281C13-L305C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L281C13-L305C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L309C13-L340C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L309C13-L340C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L344C13-L368C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L344C13-L368C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L372C13-L396C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L372C13-L396C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L400C13-L421C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L400C13-L421C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L423C64-L423C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L423C64-L423C88" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L425C65-L425C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L425C65-L425C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L427C72-L427C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L427C72-L427C102" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C70-L429C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C70-L429C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C72-L431C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C72-L431C91" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpression(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L505C13-L608C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L505C13-L608C112" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L704C13-L722C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L704C13-L722C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnit(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L784C13-L787C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L784C13-L787C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespace(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L791C13-L801C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L791C13-L801C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImports(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L805C13-L820C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L805C13-L820C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatement(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L859C13-L949C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L859C13-L949C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatements(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L953C13-L959C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L953C13-L959C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L963C13-L1004C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L963C13-L1004C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeArgument(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1008C13-L1016C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1008C13-L1016C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputDirection(System.CodeDom.FieldDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1025C21-L1031C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1025C21-L1031C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputFieldScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1035C13-L1055C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1035C13-L1055C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberAccessModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1059C13-L1080C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1059C13-L1080C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1084C13-L1118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1084C13-L1118C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputType(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeAttributes(System.Reflection.TypeAttributes,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1124C13-L1163C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1124C13-L1163C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeNamePair(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1167C13-L1170C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1167C13-L1170C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1172C66-L1172C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1172C66-L1172C85" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1176C13-L1177C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1176C13-L1177C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1181C13-L1199C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1181C13-L1199C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputOperator(System.CodeDom.CodeBinaryOperatorType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1206C21-L1257C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1206C21-L1257C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1261C13-L1289C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1261C13-L1289C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1296C13-L1329C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1296C13-L1329C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ContinueOnNewLine(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1331C64-L1331C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1331C64-L1331C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCastExpression(System.CodeDom.CodeCastExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1349C13-L1359C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1349C13-L1359C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1363C13-L1367C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1363C13-L1367C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1371C13-L1426C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1371C13-L1426C111" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSingleFloatValue(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1430C69-L1430C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1430C69-L1430C128" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDoubleValue(System.Double)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1432C65-L1432C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1432C65-L1432C124" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDecimalValue(System.Decimal)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1434C67-L1434C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1434C67-L1434C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1438C9-L1438C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1438C9-L1438C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1448C13-L1451C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1448C13-L1451C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1455C13-L1460C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1455C13-L1460C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIterationStatement(System.CodeDom.CodeIterationStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatement(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1467C13-L1474C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1467C13-L1474C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C13-L1484C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C13-L1484C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateComment(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConditionStatement(System.CodeDom.CodeConditionStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAssignStatement(System.CodeDom.CodeAssignStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateGotoStatement(System.CodeDom.CodeGotoStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1498C13-L1501C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1498C13-L1501C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaStart(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEvent(System.CodeDom.CodeMemberEvent,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateField(System.CodeDom.CodeMemberField)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethod(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateProperty(System.CodeDom.CodeMemberProperty,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConstructor(System.CodeDom.CodeConstructor,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeStart(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1519C13-L1525C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1519C13-L1525C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1529C13-L1535C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1529C13-L1535C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceStart(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceEnd(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1547C13-L1551C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1547C13-L1551C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.QuoteSnippetString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C82-L1558C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C82-L1558C137" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifiers(System.CodeDom.CodeObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1564C13-L1566C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1564C13-L1566C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentTypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMemberName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentInterface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentStruct", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentEnum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentDelegate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Indent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.NullToken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Output", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGeneratorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.IndentString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BracingStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.ElseOnClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BlankLinesBetweenMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.VerbatimOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGeneratorOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeParser.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeParser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor(System.String,System.Int32,System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Line", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.IsWarning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.FileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Add(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L38C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L42C13-L49C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Contains(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L51C54-L51C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L51C54-L51C74" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.CopyTo(System.CodeDom.Compiler.CompilerError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L53C65-L53C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L53C65-L53C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.IndexOf(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L91C52-L91C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L91C52-L91C71" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Insert(System.Int32,System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L93C63-L93C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L93C63-L93C88" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Remove(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L95C52-L95C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L95C52-L95C70" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C17-L70C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C17-L70C14" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasWarnings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L77C17-L88C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L77C17-L88C14" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerErrorCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetLanguages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L74C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L74C123" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateDefaultCompilerParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L78C72-L78C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L78C72-L78C97" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L86C46-L86C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L86C46-L86C84" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L90C13-L95C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L90C13-L95C88" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.CodeDomProviderType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.IsCodeDomProviderTypeValid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L10C39-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L10C39-L12C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L15C13-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L15C13-L17C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L20C13-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L20C13-L22C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L48C60-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L48C60-L32C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L48C46-L48C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L48C46-L48C50" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateExecutable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C42-L50C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C42-L50C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateInMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C40-L52C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C40-L52C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C56-L54C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C56-L54C60" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.MainClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L55C35-L55C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L55C35-L55C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.OutputAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C40-L57C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C40-L57C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TempFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L61C20-L61C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L61C20-L61C54" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.IncludeDebugInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L65C47-L65C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L65C47-L65C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TreatWarningsAsErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C45-L67C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C45-L67C49" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.WarningLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C35-L69C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C35-L69C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CompilerOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C41-L71C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C41-L71C45" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.Win32Resource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C39-L73C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C39-L73C43" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C53-L75C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C53-L75C57" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.LinkedResources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C51-L77C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C51-L77C55" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.UserToken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C35-L79C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C35-L79C39" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerResults.#ctor(System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.TempFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.CompiledAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Errors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Output", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.PathToAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.NativeCompilerReturnValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerResults", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWait(System.String,System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" } ], "DocsId": "T:System.CodeDom.Compiler.Executor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ArraysOfArrays", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.EntryPointMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GotoStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultidimensionalArrays", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.StaticConstructors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.TryCatchStatements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReturnTypeAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareValueTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEnums", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareDelegates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareInterfaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.AssemblyAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ParameterAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReferenceParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ChainedConstructorArguments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.NestedTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultipleInterfaceMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PublicStaticMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ComplexExpressions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Win32Resources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Resources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PartialTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeDeclaration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareIndexerProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" } ], "DocsId": "T:System.CodeDom.Compiler.GeneratorSupport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeCompiler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeParser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.CaseInsensitive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" } ], "DocsId": "T:System.CodeDom.Compiler.LanguageOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.TempDir", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.BasePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.KeepFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" } ], "DocsId": "T:System.CodeDom.Compiler.TempFileCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/IO/TempFileCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L28C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C61-L35C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C61-L35C71" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C59-L38C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C59-L38C69" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C13-L43C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C13-L43C36" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L46C13-L46C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L46C13-L46C71" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L30C49-L30C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L30C49-L30C53" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L32C60-L32C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L32C60-L32C91" } ], "DocsId": "T:Microsoft.VisualBasic.VBCodeProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L28C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C61-L33C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C61-L33C71" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C59-L36C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C59-L36C69" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C13-L41C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C13-L41C36" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L44C13-L44C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L44C13-L44C71" }, { "DocsId": "P:Microsoft.CSharp.CSharpCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L30C49-L30C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L30C49-L30C53" } ], "DocsId": "T:Microsoft.CSharp.CSharpCodeProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Configuration.ConfigurationManager.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Configuration.ConfigurationManager.json index 867820d50a3..bb15f0a5827 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Configuration.ConfigurationManager.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Configuration.ConfigurationManager.json @@ -1,5203 +1,5203 @@ { "Assembly": "System.Configuration.ConfigurationManager", - "GUID": "56A6AD8B2DCB49BDB9E6F12C59061153FFFFFFFF", + "GUID": "B5193A1CC1C74B4FBA5BA644D8937E6AFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "F:System.UriIdnScope.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.AllExceptIntranet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" } ], "DocsId": "T:System.UriIdnScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.TraceConfiguration.Register", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L19C13-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L19C13-L30C10" } ], "DocsId": "T:System.Diagnostics.TraceConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Configuration.SystemDrawingSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.BitmapSuffix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" } ], "DocsId": "T:System.Drawing.Configuration.SystemDrawingSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DictionarySectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" }, { "DocsId": "M:System.Configuration.DictionarySectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" } ], "DocsId": "T:System.Configuration.DictionarySectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" }, { "DocsId": "P:System.Configuration.DpapiProtectedConfigurationProvider.UseMachineProtection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" } ], "DocsId": "T:System.Configuration.DpapiProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSystem.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "DocsId": "M:System.Configuration.IConfigurationSystem.Init", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IdnElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" }, { "DocsId": "P:System.Configuration.IdnElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" }, { "DocsId": "P:System.Configuration.IdnElement.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" } ], "DocsId": "T:System.Configuration.IdnElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IPersistComponentSettings.LoadComponentSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.SaveComponentSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.ResetComponentSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SaveSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SettingsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" } ], "DocsId": "T:System.Configuration.IPersistComponentSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L82C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L82C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.GetPreviousVersion(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L280C13-L301C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L280C13-L301C25" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L309C13-L310C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L309C13-L310C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingChanging(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L317C13-L318C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L317C13-L318C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsLoaded(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L325C13-L326C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L325C13-L326C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsSaving(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L333C13-L334C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L333C13-L334C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L341C13-L348C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L341C13-L348C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L356C13-L365C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L356C13-L365C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L372C13-L379C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L372C13-L379C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Upgrade", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L423C13-L432C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L423C13-L432C10" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.PropertyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L220C17-L221C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L220C17-L221C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L236C17-L237C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L236C17-L237C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsLoaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L251C17-L252C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L251C17-L252C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsSaving", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L266C17-L267C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L266C17-L267C14" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L92C17-L113C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L92C17-L113C33" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L127C17-L148C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L127C17-L148C34" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L160C17-L160C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L160C17-L160C44" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L172C17-L192C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L172C17-L192C35" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.SettingsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L204C17-L204C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L204C17-L204C37" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L388C17-L400C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L388C17-L400C14" } ], "DocsId": "T:System.Configuration.ApplicationSettingsBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.ApplicationScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.ApplicationSettingsGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsReader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" }, { "DocsId": "M:System.Configuration.AppSettingsReader.GetValue(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L75C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L75C10" } ], "DocsId": "T:System.Configuration.AppSettingsReader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" }, { "DocsId": "M:System.Configuration.AppSettingsSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" }, { "DocsId": "P:System.Configuration.AppSettingsSection.File", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" } ], "DocsId": "T:System.Configuration.AppSettingsSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidator.#ctor(System.Type,System.Configuration.ValidatorCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" }, { "DocsId": "M:System.Configuration.CallbackValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L28C13-L28C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L28C13-L28C55" }, { "DocsId": "M:System.Configuration.CallbackValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L33C13-L34C10" } ], "DocsId": "T:System.Configuration.CallbackValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.CallbackMethodName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" } ], "DocsId": "T:System.Configuration.CallbackValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ClientSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" } ], "DocsId": "T:System.Configuration.ClientSettingsSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollectionConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Configuration.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" }, { "DocsId": "M:System.Configuration.Configuration.GetSectionGroup(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" }, { "DocsId": "M:System.Configuration.Configuration.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" }, { "DocsId": "P:System.Configuration.Configuration.AppSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" }, { "DocsId": "P:System.Configuration.Configuration.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" }, { "DocsId": "P:System.Configuration.Configuration.FilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" }, { "DocsId": "P:System.Configuration.Configuration.HasFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" }, { "DocsId": "P:System.Configuration.Configuration.Locations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" }, { "DocsId": "P:System.Configuration.Configuration.EvaluationContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" }, { "DocsId": "P:System.Configuration.Configuration.RootSectionGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" }, { "DocsId": "P:System.Configuration.Configuration.Sections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" }, { "DocsId": "P:System.Configuration.Configuration.SectionGroups", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" }, { "DocsId": "P:System.Configuration.Configuration.NamespaceDeclared", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" }, { "DocsId": "P:System.Configuration.Configuration.TypeStringTransformer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" }, { "DocsId": "P:System.Configuration.Configuration.AssemblyStringTransformer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" }, { "DocsId": "P:System.Configuration.Configuration.TargetFramework", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" } ], "DocsId": "T:System.Configuration.Configuration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToWebRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.Everywhere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowDefinition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToRoamingUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToLocalUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowExeDefinition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationCollectionAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.AddItemName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.RemoveItemName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ClearItemsName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" } ], "DocsId": "T:System.Configuration.ConfigurationCollectionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationConverterBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.InitializeDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PostDeserialize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllAttributesExcept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockElements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllElementsExcept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" }, { "DocsId": "P:System.Configuration.ConfigurationElement.EvaluationContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" }, { "DocsId": "P:System.Configuration.ConfigurationElement.HasContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" }, { "DocsId": "P:System.Configuration.ConfigurationElement.CurrentConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" } ], "DocsId": "T:System.Configuration.ConfigurationElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor(System.Collections.IComparer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L37C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L127C37-L129C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L127C37-L129C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L133C13-L133C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L133C13-L133C40" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L146C13-L159C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L146C13-L159C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L163C13-L173C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L163C13-L173C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L177C13-L177C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L177C13-L177C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L182C13-L190C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L182C13-L190C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L208C13-L232C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L208C13-L232C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L236C13-L242C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L236C13-L242C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L250C13-L451C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L250C13-L451C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L455C13-L482C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L455C13-L482C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CopyTo(System.Configuration.ConfigurationElement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L486C13-L487C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L486C13-L487C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L491C13-L492C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L496C13-L497C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L496C13-L497C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIndexOf(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L584C13-L593C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L584C13-L593C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L674C13-L675C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L674C13-L675C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L724C13-L725C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L724C13-L725C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L832C37-L836C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L832C37-L836C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIsRemoved(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L840C37-L844C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L840C37-L844C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L848C13-L866C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L848C13-L866C90" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetAllKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L871C13-L879C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L871C13-L879C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L884C13-L902C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L884C13-L902C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L907C13-L956C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L907C13-L956C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L960C13-L1025C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L960C13-L1025C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1029C13-L1088C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1029C13-L1088C32" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1093C13-L1159C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1093C13-L1159C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1180C13-L1180C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1180C13-L1180C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementRemovable(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1196C13-L1196C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1196C13-L1196C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1207C13-L1207C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1207C13-L1207C26" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.AddElementName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L43C19-L43C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L43C19-L43C38" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.RemoveElementName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L54C19-L54C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L54C19-L54C41" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ClearElementName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L65C19-L65C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L65C19-L65C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.EmitClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L76C19-L76C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L76C19-L76C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L90C49-L90C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L90C49-L90C51" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L113C16-L114C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L113C16-L114C94" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L117C16-L117C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L117C16-L117C68" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L119C29-L119C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L119C29-L119C60" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L121C39-L121C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L121C39-L121C44" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L123C35-L123C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L123C35-L123C39" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMapAlternate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementProperty.#ctor(System.Configuration.ConfigurationValidatorBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L17C10" }, { "DocsId": "P:System.Configuration.ConfigurationElementProperty.Validator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L19C55-L19C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L19C55-L19C59" } ], "DocsId": "T:System.Configuration.ConfigurationElementProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Line", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Errors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" } ], "DocsId": "T:System.Configuration.ConfigurationErrorsException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" }, { "DocsId": "P:System.Configuration.ConfigurationException.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" }, { "DocsId": "P:System.Configuration.ConfigurationException.BareMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" }, { "DocsId": "P:System.Configuration.ConfigurationException.Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" }, { "DocsId": "P:System.Configuration.ConfigurationException.Line", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" } ], "DocsId": "T:System.Configuration.ConfigurationException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" }, { "DocsId": "P:System.Configuration.ConfigurationFileMap.MachineConfigFilename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" } ], "DocsId": "T:System.Configuration.ConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLocation.OpenConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" }, { "DocsId": "P:System.Configuration.ConfigurationLocation.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" } ], "DocsId": "T:System.Configuration.ConfigurationLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ConfigurationLocationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" } ], "DocsId": "T:System.Configuration.ConfigurationLocationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLockCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.IsReadOnly(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.SetFromList(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.AttributeList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.HasParentElements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" } ], "DocsId": "T:System.Configuration.ConfigurationLockCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationManager.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" }, { "DocsId": "M:System.Configuration.ConfigurationManager.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMachineConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" }, { "DocsId": "P:System.Configuration.ConfigurationManager.AppSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" }, { "DocsId": "P:System.Configuration.ConfigurationManager.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" } ], "DocsId": "T:System.Configuration.ConfigurationManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L159C30-L159C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L159C30-L159C34" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L161C37-L161C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L161C37-L161C41" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L178C28-L178C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L178C28-L178C32" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L180C38-L180C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L180C38-L180C42" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C35-L182C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C35-L182C92" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C30-L184C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C30-L184C82" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C44-L186C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C44-L186C110" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L189C16-L189C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L189C16-L189C97" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L192C16-L192C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L192C16-L192C101" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L194C47-L194C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L194C47-L194C116" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Converter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L200C17-L201C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L200C17-L201C35" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Validator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L205C55-L205C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L205C55-L205C59" } ], "DocsId": "T:System.Configuration.ConfigurationProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.DefaultValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.CopyTo(System.Configuration.ConfigurationProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Add(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationSaveMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Modified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Minimal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Full", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" } ], "DocsId": "T:System.Configuration.ConfigurationSaveMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion(System.Configuration.ConfigurationProperty,System.String,System.Runtime.Versioning.FrameworkName,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeElementInTargetVersion(System.Configuration.ConfigurationElement,System.String,System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeSectionInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" }, { "DocsId": "P:System.Configuration.ConfigurationSection.SectionInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" } ], "DocsId": "T:System.Configuration.ConfigurationSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Add(System.String,System.Configuration.ConfigurationSection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.CopyTo(System.Configuration.ConfigurationSection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L72C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L76C13-L76C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L76C13-L76C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L81C13-L93C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L81C13-L93C78" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L106C13-L106C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L106C13-L106C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L118C13-L127C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L118C13-L127C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L131C13-L134C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L131C13-L134C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" } ], "DocsId": "T:System.Configuration.ConfigurationSectionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ShouldSerializeSectionGroupInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclared", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroupName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Sections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroups", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Add(System.String,System.Configuration.ConfigurationSectionGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.CopyTo(System.Configuration.ConfigurationSectionGroup[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L76C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L80C13-L80C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L80C13-L80C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L85C13-L97C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L85C13-L97C61" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L108C13-L108C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L108C13-L108C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L121C13-L128C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L121C13-L128C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L132C13-L135C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L132C13-L135C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroupCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSettings.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" }, { "DocsId": "P:System.Configuration.ConfigurationSettings.AppSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" } ], "DocsId": "T:System.Configuration.ConfigurationSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationUserLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoaming", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoamingAndLocal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" } ], "DocsId": "T:System.Configuration.ConfigurationUserLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.Load(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.LoadSingleElement(System.String,System.Xml.XmlTextReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateAttribute(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateElement(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateTextNode(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateCDataSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateComment(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateSignificantWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" } ], "DocsId": "T:System.Configuration.ConfigXmlDocument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" } ], "DocsId": "T:System.Configuration.ConnectionStringSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.IndexOf(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Add(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" } ], "DocsId": "T:System.Configuration.ConnectionStringSettingsCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" }, { "DocsId": "M:System.Configuration.ConnectionStringsSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" } ], "DocsId": "T:System.Configuration.ConnectionStringsSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ContextInformation.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" }, { "DocsId": "P:System.Configuration.ContextInformation.HostingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" }, { "DocsId": "P:System.Configuration.ContextInformation.IsMachineLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" } ], "DocsId": "T:System.Configuration.ContextInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultSection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.DefaultSection.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.DefaultSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.DefaultSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.DefaultSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.DefaultSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.DefaultSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSettingValueAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" }, { "DocsId": "P:System.Configuration.DefaultSettingValueAttribute.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" } ], "DocsId": "T:System.Configuration.DefaultSettingValueAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" }, { "DocsId": "M:System.Configuration.DefaultValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultValidator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" } ], "DocsId": "T:System.Configuration.DefaultValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ElementInformation.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" }, { "DocsId": "P:System.Configuration.ElementInformation.IsPresent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" }, { "DocsId": "P:System.Configuration.ElementInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" }, { "DocsId": "P:System.Configuration.ElementInformation.IsCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" }, { "DocsId": "P:System.Configuration.ElementInformation.Source", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" }, { "DocsId": "P:System.Configuration.ElementInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" }, { "DocsId": "P:System.Configuration.ElementInformation.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" }, { "DocsId": "P:System.Configuration.ElementInformation.Validator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" }, { "DocsId": "P:System.Configuration.ElementInformation.Errors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" } ], "DocsId": "T:System.Configuration.ElementInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.ExeConfigFilename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" } ], "DocsId": "T:System.Configuration.ExeConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ExeContext.UserLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" }, { "DocsId": "P:System.Configuration.ExeContext.ExePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" } ], "DocsId": "T:System.Configuration.ExeContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.GenericEnumConverter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" } ], "DocsId": "T:System.Configuration.GenericEnumConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" } ], "DocsId": "T:System.Configuration.IApplicationSettingsProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.IgnoreSection.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.IgnoreSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.IgnoreSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" }, { "DocsId": "M:System.Configuration.IgnoreSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IgnoreSectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteIntConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteTimeSpanConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.IntegerValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" }, { "DocsId": "M:System.Configuration.IntegerValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.IntegerValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" } ], "DocsId": "T:System.Configuration.IntegerValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IriParsingElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" }, { "DocsId": "P:System.Configuration.IriParsingElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" }, { "DocsId": "P:System.Configuration.IriParsingElement.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" } ], "DocsId": "T:System.Configuration.IriParsingElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ISettingsProviderService.GetSettingsProvider(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" } ], "DocsId": "T:System.Configuration.ISettingsProviderService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.Configuration.KeyValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Key", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" }, { "DocsId": "P:System.Configuration.LocalFileSettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" } ], "DocsId": "T:System.Configuration.LocalFileSettingsProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.LongValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" }, { "DocsId": "M:System.Configuration.LongValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.LongValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" } ], "DocsId": "T:System.Configuration.LongValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Add(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" } ], "DocsId": "T:System.Configuration.NameValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" } ], "DocsId": "T:System.Configuration.NameValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" }, { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" } ], "DocsId": "T:System.Configuration.NameValueFileSectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" }, { "DocsId": "M:System.Configuration.NameValueSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" } ], "DocsId": "T:System.Configuration.NameValueSectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.OverrideMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Allow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Deny", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" } ], "DocsId": "T:System.Configuration.OverrideMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L19C10" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.PositiveTimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.PropertyInformation.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" }, { "DocsId": "P:System.Configuration.PropertyInformation.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.DefaultValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" }, { "DocsId": "P:System.Configuration.PropertyInformation.ValueOrigin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" }, { "DocsId": "P:System.Configuration.PropertyInformation.Source", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" }, { "DocsId": "P:System.Configuration.PropertyInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" }, { "DocsId": "P:System.Configuration.PropertyInformation.Validator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" }, { "DocsId": "P:System.Configuration.PropertyInformation.Converter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" }, { "DocsId": "P:System.Configuration.PropertyInformation.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" } ], "DocsId": "T:System.Configuration.PropertyInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PropertyInformationCollection.CopyTo(System.Configuration.PropertyInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L49C10" }, { "DocsId": "M:System.Configuration.PropertyInformationCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "DocsId": "P:System.Configuration.PropertyInformationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" } ], "DocsId": "T:System.Configuration.PropertyInformationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.PropertyValueOrigin.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Inherited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.SetHere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" } ], "DocsId": "T:System.Configuration.PropertyValueOrigin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ProtectedConfiguration.RsaProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.DataProtectionProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.ProtectedDataSectionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.Providers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.DefaultProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" } ], "DocsId": "T:System.Configuration.ProtectedConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L24C10" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProviderCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Providers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.DefaultProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Providers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" } ], "DocsId": "T:System.Configuration.ProtectedProviderSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" }, { "DocsId": "M:System.Configuration.ProviderSettings.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" }, { "DocsId": "P:System.Configuration.ProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" }, { "DocsId": "P:System.Configuration.ProviderSettings.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" } ], "DocsId": "T:System.Configuration.ProviderSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Add(System.Configuration.ProviderSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" } ], "DocsId": "T:System.Configuration.ProviderSettingsCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidator.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" }, { "DocsId": "M:System.Configuration.RegexStringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" }, { "DocsId": "M:System.Configuration.RegexStringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" } ], "DocsId": "T:System.Configuration.RegexStringValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidatorAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.Regex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" } ], "DocsId": "T:System.Configuration.RegexStringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.AddKey(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.DeleteKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ImportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ExportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.KeyContainerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.CspProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseMachineContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseOAEP", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseFIPS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.RsaPublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" } ], "DocsId": "T:System.Configuration.RsaProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.GenericUriParserOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" } ], "DocsId": "T:System.Configuration.SchemeSettingElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.IndexOf(System.Configuration.SchemeSettingElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" } ], "DocsId": "T:System.Configuration.SchemeSettingElementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ProtectSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" }, { "DocsId": "M:System.Configuration.SectionInformation.UnprotectSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" }, { "DocsId": "M:System.Configuration.SectionInformation.GetParentSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" }, { "DocsId": "M:System.Configuration.SectionInformation.GetRawXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" }, { "DocsId": "M:System.Configuration.SectionInformation.SetRawXml(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" }, { "DocsId": "M:System.Configuration.SectionInformation.RevertToParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" }, { "DocsId": "P:System.Configuration.SectionInformation.SectionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" }, { "DocsId": "P:System.Configuration.SectionInformation.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowDefinition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowExeDefinition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowOverride", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeEffective", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" }, { "DocsId": "P:System.Configuration.SectionInformation.ConfigSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" }, { "DocsId": "P:System.Configuration.SectionInformation.InheritInChildApplications", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclared", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" }, { "DocsId": "P:System.Configuration.SectionInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" }, { "DocsId": "P:System.Configuration.SectionInformation.IsProtected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" }, { "DocsId": "P:System.Configuration.SectionInformation.ProtectionProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" }, { "DocsId": "P:System.Configuration.SectionInformation.RestartOnExternalChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" }, { "DocsId": "P:System.Configuration.SectionInformation.RequirePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" }, { "DocsId": "P:System.Configuration.SectionInformation.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" }, { "DocsId": "P:System.Configuration.SectionInformation.ForceSave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" } ], "DocsId": "T:System.Configuration.SectionInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" } ], "DocsId": "T:System.Configuration.SettingAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventArgs.#ctor(System.String,System.String,System.String,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.NewValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" } ], "DocsId": "T:System.Configuration.SettingChangingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.Invoke(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.BeginInvoke(System.Object,System.Configuration.SettingChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingChangingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" }, { "DocsId": "M:System.Configuration.SettingElement.#ctor(System.String,System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" }, { "DocsId": "M:System.Configuration.SettingElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" }, { "DocsId": "M:System.Configuration.SettingElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" }, { "DocsId": "P:System.Configuration.SettingElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" }, { "DocsId": "P:System.Configuration.SettingElement.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" }, { "DocsId": "P:System.Configuration.SettingElement.SerializeAs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" }, { "DocsId": "P:System.Configuration.SettingElement.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" } ], "DocsId": "T:System.Configuration.SettingElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" }, { "DocsId": "M:System.Configuration.SettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Add(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Remove(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "DocsId": "P:System.Configuration.SettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" }, { "DocsId": "P:System.Configuration.SettingElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" } ], "DocsId": "T:System.Configuration.SettingElementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Configuration.SettingsAttributeDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" } ], "DocsId": "T:System.Configuration.SettingsAttributeDictionary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Initialize(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection,System.Configuration.SettingsProviderCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Synchronized(System.Configuration.SettingsBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" }, { "DocsId": "P:System.Configuration.SettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" }, { "DocsId": "P:System.Configuration.SettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" }, { "DocsId": "P:System.Configuration.SettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" }, { "DocsId": "P:System.Configuration.SettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" }, { "DocsId": "P:System.Configuration.SettingsBase.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" }, { "DocsId": "P:System.Configuration.SettingsBase.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" } ], "DocsId": "T:System.Configuration.SettingsBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" }, { "DocsId": "M:System.Configuration.SettingsContext.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" } ], "DocsId": "T:System.Configuration.SettingsContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsGroupDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupNameAttribute.GroupName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" } ], "DocsId": "T:System.Configuration.SettingsGroupNameAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventArgs.#ctor(System.Configuration.SettingsProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" }, { "DocsId": "P:System.Configuration.SettingsLoadedEventArgs.Provider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.Invoke(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.BeginInvoke(System.Object,System.Configuration.SettingsLoadedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsManageability.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "DocsId": "F:System.Configuration.SettingsManageability.Roaming", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" } ], "DocsId": "T:System.Configuration.SettingsManageability", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsManageabilityAttribute.#ctor(System.Configuration.SettingsManageability)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsManageabilityAttribute.Manageability", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" } ], "DocsId": "T:System.Configuration.SettingsManageabilityAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Add(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAdd(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAddComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemove(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemoveComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyIsReadOnlyException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyNotFoundException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Add(System.Configuration.SettingsPropertyValue)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyWrongTypeException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "P:System.Configuration.SettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" } ], "DocsId": "T:System.Configuration.SettingsProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" }, { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" }, { "DocsId": "P:System.Configuration.SettingsProviderAttribute.ProviderTypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" } ], "DocsId": "T:System.Configuration.SettingsProviderAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L20C10" }, { "DocsId": "M:System.Configuration.SettingsProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "DocsId": "P:System.Configuration.SettingsProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L26C17-L26C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L26C17-L26C53" } ], "DocsId": "T:System.Configuration.SettingsProviderCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.Invoke(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.BeginInvoke(System.Object,System.ComponentModel.CancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsSavingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSerializeAsAttribute.#ctor(System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsSerializeAsAttribute.SerializeAs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsSerializeAsAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingValueElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" }, { "DocsId": "M:System.Configuration.SettingValueElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" }, { "DocsId": "M:System.Configuration.SettingValueElement.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" }, { "DocsId": "M:System.Configuration.SettingValueElement.ResetModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" }, { "DocsId": "M:System.Configuration.SettingValueElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "DocsId": "P:System.Configuration.SettingValueElement.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" }, { "DocsId": "P:System.Configuration.SettingValueElement.ValueXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" } ], "DocsId": "T:System.Configuration.SettingValueElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SingleTagSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" }, { "DocsId": "M:System.Configuration.SingleTagSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" } ], "DocsId": "T:System.Configuration.SingleTagSectionHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SpecialSetting.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.ConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.WebServiceUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" } ], "DocsId": "T:System.Configuration.SpecialSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SpecialSettingAttribute.#ctor(System.Configuration.SpecialSetting)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" }, { "DocsId": "P:System.Configuration.SpecialSettingAttribute.SpecialSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" } ], "DocsId": "T:System.Configuration.SpecialSettingAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsModified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" }, { "DocsId": "M:System.Configuration.StringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" }, { "DocsId": "M:System.Configuration.StringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L49C10" } ], "DocsId": "T:System.Configuration.StringValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MinLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.InvalidCharacters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" } ], "DocsId": "T:System.Configuration.StringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidator.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" } ], "DocsId": "T:System.Configuration.SubclassTypeValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.BaseClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" } ], "DocsId": "T:System.Configuration.SubclassTypeValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.TimeSpanValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMinValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMaxValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValueString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValueString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" } ], "DocsId": "T:System.Configuration.TimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" } ], "DocsId": "T:System.Configuration.TypeNameConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UriSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "DocsId": "P:System.Configuration.UriSection.Idn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" }, { "DocsId": "P:System.Configuration.UriSection.IriParsing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" }, { "DocsId": "P:System.Configuration.UriSection.SchemeSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" }, { "DocsId": "P:System.Configuration.UriSection.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" } ], "DocsId": "T:System.Configuration.UriSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.UserScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.UserSettingsGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ValidatorCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.Invoke(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.BeginInvoke(System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" } ], "DocsId": "T:System.Configuration.ValidatorCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" } ], "DocsId": "T:System.Configuration.WhiteSpaceTrimStringConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String,System.Type,System.Configuration.SettingsProvider,System.Boolean,System.Object,System.Configuration.SettingsSerializeAs,System.Configuration.SettingsAttributeDictionary,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L62C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L64C9-L75C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L64C9-L75C10" }, { "DocsId": "P:System.Configuration.SettingsProperty.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" }, { "DocsId": "P:System.Configuration.SettingsProperty.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" }, { "DocsId": "P:System.Configuration.SettingsProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" }, { "DocsId": "P:System.Configuration.SettingsProperty.PropertyType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" }, { "DocsId": "P:System.Configuration.SettingsProperty.SerializeAs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" }, { "DocsId": "P:System.Configuration.SettingsProperty.Provider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" }, { "DocsId": "P:System.Configuration.SettingsProperty.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorDeserializing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorSerializing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" } ], "DocsId": "T:System.Configuration.SettingsProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValue.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.IsDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Property", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.UsingDefaultValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Deserialized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.PropertyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.SerializedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" } ], "DocsId": "T:System.Configuration.SettingsPropertyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsSerializeAs.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.String", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Xml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Binary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.ProviderSpecific", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" } ], "DocsId": "T:System.Configuration.SettingsSerializeAs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NoSettingsVersionUpgradeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" } ], "DocsId": "T:System.Configuration.NoSettingsVersionUpgradeAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" } ], "DocsId": "T:System.Configuration.Provider.ProviderBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.CopyTo(System.Configuration.Provider.ProviderBase[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" } ], "DocsId": "T:System.Configuration.Provider.ProviderCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" } ], "DocsId": "T:System.Configuration.Provider.ProviderException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RefreshConfigPaths", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.Host", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasLocalConfig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasRoamingConfig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsAppConfigHttp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" } ], "DocsId": "T:System.Configuration.Internal.DelegatingConfigHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.Filename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigErrorInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigSystem.Init(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Host", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Root", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigSystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigurationManagerHelper.EnsureNetConfigLoaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerHelper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SetConfigurationSystemInProgress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.MachineConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ApplicationConfigUri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.UserConfigFilename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerInternal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsExeConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsRoamingUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsLocalUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetExeConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetRoamingUserConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetLocalUserConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigClientHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.Create(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.NormalizeLocationSubPath(System.String,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigConfigurationFactory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.ThrowIfInitErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetLkgSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.Remove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.ConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.StreamName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.HasInitErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.Init(System.Configuration.Internal.IInternalConfigHost,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.RemoveConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRoot.IsDesignTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.SetConfigurationSystem(System.Configuration.Internal.IInternalConfigSystem,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.CompleteInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSettingsFactory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.RefreshConfig(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigSystem.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventArgs.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" }, { "DocsId": "P:System.Configuration.Internal.InternalConfigEventArgs.ConfigPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.Invoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.BeginInvoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.Invoke(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ], "DocsId": "T:System.Configuration.Internal.StreamChangeCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.EventLog.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.EventLog.json index 0bed2ea745a..b75c31d7732 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.EventLog.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.EventLog.json @@ -1,1795 +1,1795 @@ { "Assembly": "System.Diagnostics.EventLog", - "GUID": "1073AAF1B0624444B16EC386EB545DEBFFFFFFFF", + "GUID": "5E17F41653484F5D9BEFD80EEE626985FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" }, { "DocsId": "P:System.Diagnostics.EntryWrittenEventArgs.Entry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C39-L17C43" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.Invoke(System.Object,System.Diagnostics.EntryWrittenEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.BeginInvoke(System.Object,System.Diagnostics.EntryWrittenEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" }, { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" }, { "DocsId": "P:System.Diagnostics.EventInstance.CategoryId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" }, { "DocsId": "P:System.Diagnostics.EventInstance.EntryType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" }, { "DocsId": "P:System.Diagnostics.EventInstance.InstanceId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" } ], "DocsId": "T:System.Diagnostics.EventInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" }, { "DocsId": "M:System.Diagnostics.EventLog.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.Diagnostics.EventSourceCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L356C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L356C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L360C13-L361C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L360C13-L361C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L365C13-L430C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L365C13-L430C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L434C13-L435C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L434C13-L435C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L439C13-L482C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L439C13-L482C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L486C13-L488C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L486C13-L488C10" }, { "DocsId": "M:System.Diagnostics.EventLog.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L492C13-L493C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L492C13-L493C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L497C13-L497C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L497C13-L497C41" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L502C13-L525C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L502C13-L525C10" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L619C13-L619C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L619C13-L619C38" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L624C13-L668C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L624C13-L668C35" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L720C13-L720C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L720C13-L720C46" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L725C13-L725C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L725C13-L725C61" }, { "DocsId": "M:System.Diagnostics.EventLog.LogNameFromSourceName(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L743C13-L743C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L743C13-L743C72" }, { "DocsId": "M:System.Diagnostics.EventLog.ModifyOverflowPolicy(System.Diagnostics.OverflowAction,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L764C13-L765C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L764C13-L765C10" }, { "DocsId": "M:System.Diagnostics.EventLog.RegisterDisplayName(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L769C13-L770C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L769C13-L770C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L977C13-L978C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L977C13-L978C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L982C13-L983C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L982C13-L983C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L987C13-L988C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L987C13-L988C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L992C13-L993C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L992C13-L993C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L997C13-L998C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L997C13-L998C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1002C13-L1003C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1002C13-L1003C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1007C13-L1008C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1007C13-L1008C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1012C13-L1013C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1012C13-L1013C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1017C20-L1021C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1017C20-L1021C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1025C13-L1026C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1025C13-L1026C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1030C13-L1031C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1030C13-L1031C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1035C13-L1036C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1035C13-L1036C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1040C20-L1044C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1040C20-L1044C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1048C20-L1052C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1048C20-L1052C10" }, { "DocsId": "E:System.Diagnostics.EventLog.EntryWritten", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" }, { "DocsId": "P:System.Diagnostics.EventLog.Entries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" }, { "DocsId": "P:System.Diagnostics.EventLog.LogDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Log", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" }, { "DocsId": "P:System.Diagnostics.EventLog.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" }, { "DocsId": "P:System.Diagnostics.EventLog.MaximumKilobytes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" }, { "DocsId": "P:System.Diagnostics.EventLog.OverflowAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" }, { "DocsId": "P:System.Diagnostics.EventLog.MinimumRetentionDays", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" }, { "DocsId": "P:System.Diagnostics.EventLog.EnableRaisingEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" }, { "DocsId": "P:System.Diagnostics.EventLog.SynchronizingObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Source", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" } ], "DocsId": "T:System.Diagnostics.EventLog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntry.Equals(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L304C13-L321C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L304C13-L321C25" }, { "DocsId": "M:System.Diagnostics.EventLogEntry.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L455C13-L455C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L455C13-L455C55" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L43C17-L56C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L43C17-L56C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L67C17-L71C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L67C17-L71C29" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L82C17-L82C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L82C17-L82C80" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L93C17-L103C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L93C17-L103C33" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.CategoryNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L114C17-L114C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L114C17-L114C83" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EventID", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L126C17-L126C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L126C17-L126C88" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EntryType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L137C17-L137C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L137C17-L137C98" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L150C17-L176C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L150C17-L176C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Source", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L187C17-L198C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L187C17-L198C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.ReplacementStrings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L209C17-L228C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L209C17-L228C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.InstanceId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L239C17-L239C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L239C17-L239C81" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeGenerated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L250C17-L250C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L250C17-L250C126" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeWritten", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L261C17-L261C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L261C17-L261C124" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.UserName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L272C17-L293C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L272C17-L293C37" } ], "DocsId": "T:System.Diagnostics.EventLogEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.CopyTo(System.Diagnostics.EventLogEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" } ], "DocsId": "T:System.Diagnostics.EventLogEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogEntryType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Information", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.SuccessAudit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.FailureAudit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" } ], "DocsId": "T:System.Diagnostics.EventLogEntryType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventSourceCreationData.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.Source", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C33-L27C37" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MessageResourceFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C46-L29C50" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.ParameterResourceFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C48-L31C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C48-L31C52" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryResourceFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C47-L33C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C47-L33C51" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" } ], "DocsId": "T:System.Diagnostics.EventSourceCreationData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L15C9-L17C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.Diagnostics.EventLog)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L20C15-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L20C15-L23C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L25C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L25C9-L31C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L60C41-L60C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L60C41-L60C58" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L66C17-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L66C17-L76C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Write(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C56-L78C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C56-L78C85" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L80C60-L80C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L80C60-L80C74" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L85C13-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L85C13-L109C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L114C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L114C13-L118C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L123C13-L127C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L123C13-L127C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L132C13-L152C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L132C13-L152C10" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.EventLog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L35C13-L35C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L35C13-L35C17" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L44C17-L50C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L44C17-L50C34" } ], "DocsId": "T:System.Diagnostics.EventLogTraceListener", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.OverflowAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.DoNotOverwrite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteAsNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteOlder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" } ], "DocsId": "T:System.Diagnostics.OverflowAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventBookmark.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventBookmark.BookmarkXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventBookmark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L70C17-L71C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L70C17-L71C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L75C29-L75C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L75C29-L75C33" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L81C17-L82C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L81C17-L82C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventKeyword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L68C17-L69C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L68C17-L69C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L73C28-L73C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L73C28-L73C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L79C17-L80C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L79C17-L80C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Administrative", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Operational", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Analytical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Debug", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Application", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogIsolation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Circular", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.AutoBackup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Retain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SaveChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L264C13-L265C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L264C13-L265C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L269C13-L271C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L269C13-L271C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L275C13-L277C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L275C13-L277C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C167" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C167" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogIsolation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C177" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C177" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C154" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C154" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsClassicLog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C162" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C162" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L106C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L106C43" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogFilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L118C17-L120C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L118C17-L120C44" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.MaximumSizeInBytes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L132C17-L132C170" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L132C17-L132C170" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L144C17-L156C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L144C17-L156C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.OwningProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L182C17-L184C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L182C17-L184C51" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L192C17-L194C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L192C17-L194C49" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L202C17-L202C170" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L202C17-L202C170" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderKeywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L214C17-L214C175" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L214C17-L214C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderBufferSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMinimumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMaximumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C175" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLatency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C172" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C172" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderControlGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L258C17-L258C170" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L258C17-L258C170" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C53-L52C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C53-L52C70" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C80-L53C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C80-L53C113" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogException.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C61-L99C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C61-L99C78" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C88-L100C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C88-L100C121" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogNotFoundException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C60-L118C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C60-L118C77" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C87-L119C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C87-L119C120" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReadingException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C69-L137C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C69-L137C86" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C96-L138C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C96-L138C129" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C64-L154C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C64-L154C81" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C91-L155C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C91-L155C124" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.CreationTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastAccessTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastWriteTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.FileSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.RecordCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.OldestRecordNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.IsLogFull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L80C17-L81C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L80C17-L81C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.IsImported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L89C17-L90C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L89C17-L90C36" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L98C17-L99C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L98C17-L99C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.#ctor(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L35C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L41C13-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L41C13-L43C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L47C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L47C13-L49C10" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogPropertySelector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.Session", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.TolerateQueryErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.ReverseDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogQuery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L189C17-L195C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L189C17-L195C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.IO.SeekOrigin,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L250C21-L291C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L250C21-L291C28" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.CancelReading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.BatchSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.LogStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L272C13-L272C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L272C13-L272C95" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L277C13-L298C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L277C13-L298C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.GetPropertyValues(System.Diagnostics.Eventing.Reader.EventLogPropertySelector)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L383C13-L385C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L383C13-L385C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L390C13-L391C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L390C13-L391C90" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L398C17-L405C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L398C17-L405C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Task", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Opcode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Keywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RecordId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C56" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.UserId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ContainerLog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MatchedQueryIds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C24-L267C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C24-L267C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L305C17-L316C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L305C17-L316C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L323C17-L332C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L323C17-L332C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L339C17-L350C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L339C17-L350C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L357C17-L363C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L357C17-L363C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L370C17-L377C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L370C17-L377C29" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Negotiate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Kerberos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Ntlm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.SessionAuthentication", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.FilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.PathType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L90C15-L92C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L90C15-L92C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String,System.String,System.String,System.Security.SecureString,System.Diagnostics.Eventing.Reader.SessionAuthentication)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L122C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L122C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L128C13-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L128C13-L130C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L134C13-L150C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L134C13-L150C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.CancelCurrentOperations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L154C13-L155C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L154C13-L155C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetProviderNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L165C13-L184C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L165C13-L184C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L188C13-L207C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L188C13-L207C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogInformation(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L211C13-L213C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L211C13-L213C69" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L218C13-L219C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L223C13-L236C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L223C13-L236C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L240C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L240C13-L241C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L245C13-L248C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L245C13-L248C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L252C13-L253C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L257C13-L260C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L257C13-L260C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogSession.GlobalSession", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L160C19-L160C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L160C19-L160C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogSession", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C34-L22C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C34-L22C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.StatusCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L41C15-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L41C15-L43C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L46C15-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L46C15-L48C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L51C15-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L51C15-L53C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L55C9-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L55C9-L76C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L287C13-L289C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L287C13-L289C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L293C13-L310C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L293C13-L310C10" }, { "DocsId": "E:System.Diagnostics.Eventing.Reader.EventLogWatcher.EventRecordWritten", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogWatcher.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L82C17-L82C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L82C17-L82C38" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogWatcher", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.LogLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Opcode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Task", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Template", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C35-L110C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C35-L110C39" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C38-L112C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C38-L112C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventMetadata", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L69C17-L70C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L69C17-L70C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L78C17-L78C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L78C17-L78C31" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L86C17-L87C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L86C17-L87C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventOpcode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventProperty.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C32-L13C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C32-L13C36" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Task", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Opcode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Keywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RecordId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LogName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.UserId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C43-L18C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C44-L25C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C44-L25C48" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L72C17-L73C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L72C17-L73C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L77C28-L77C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L77C28-L77C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L83C17-L84C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L83C17-L84C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.EventGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L92C17-L93C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L92C17-L93C30" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventTask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C172" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C172" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.MessageFilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C176" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C176" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ResourceFilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C177" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C177" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ParameterFilePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C178" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C178" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.HelpLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.LogLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Levels", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Opcodes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Tasks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Events", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.ProviderMetadata", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.LogAlways", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Critical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Informational", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Verbose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventTask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Extension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Reply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Resume", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Suspend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Send", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Receive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventOpcode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.ResponseTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiDiagnostic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.Sqm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditFailure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditSuccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.EventLogClassic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventKeywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.PerformanceCounter.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.PerformanceCounter.json index ee962ace65d..2875aa461b2 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.PerformanceCounter.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Diagnostics.PerformanceCounter.json @@ -1,975 +1,975 @@ { "Assembly": "System.Diagnostics.PerformanceCounter", - "GUID": "BB284380C0AE46D385701DBC63C64A16FFFFFFFF", + "GUID": "B043C165246D4E4C97E5D2BFA6E657C7FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor(System.String,System.String,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" } ], "DocsId": "T:System.Diagnostics.CounterCreationData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Add(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Contains(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.CopyTo(System.Diagnostics.CounterCreationData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.IndexOf(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Insert(System.Int32,System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Remove(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationDataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" } ], "DocsId": "T:System.Diagnostics.CounterCreationDataCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" }, { "DocsId": "M:System.Diagnostics.CounterSample.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Equality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Inequality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" }, { "DocsId": "F:System.Diagnostics.CounterSample.Empty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "DocsId": "P:System.Diagnostics.CounterSample.RawValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" }, { "DocsId": "P:System.Diagnostics.CounterSample.BaseValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.SystemFrequency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterFrequency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterTimeStamp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp100nSec", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" } ], "DocsId": "T:System.Diagnostics.CounterSample", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" }, { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" } ], "DocsId": "T:System.Diagnostics.CounterSampleCalculator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.ICollectData.CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "DocsId": "M:System.Diagnostics.ICollectData.CloseData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" } ], "DocsId": "T:System.Diagnostics.ICollectData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceData.#ctor(System.String,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" }, { "DocsId": "P:System.Diagnostics.InstanceData.InstanceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" }, { "DocsId": "P:System.Diagnostics.InstanceData.Sample", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" }, { "DocsId": "P:System.Diagnostics.InstanceData.RawValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" } ], "DocsId": "T:System.Diagnostics.InstanceData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.CopyTo(System.Diagnostics.InstanceData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.CounterName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.CopyTo(System.Diagnostics.InstanceDataCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollectionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.CloseSharedResources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Decrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Increment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextSample", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.RemoveInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" }, { "DocsId": "F:System.Diagnostics.PerformanceCounter.DefaultFileMappingSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CategoryName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceLifetime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.RawValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" } ], "DocsId": "T:System.Diagnostics.PerformanceCounter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L143C13-L148C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L143C13-L148C98" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L156C13-L156C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L156C13-L156C66" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L164C13-L173C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L164C13-L173C96" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L182C13-L183C172" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L182C13-L183C172" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L191C13-L192C146" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L191C13-L192C146" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L201C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L201C108" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L206C13-L238C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L206C13-L238C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L368C13-L393C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L368C13-L393C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L400C13-L400C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L400C13-L400C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L408C13-L419C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L408C13-L419C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L447C13-L449C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L447C13-L449C36" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L470C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L470C29" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L479C13-L479C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L479C13-L479C39" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L487C13-L495C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L487C13-L495C31" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetInstanceNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L503C13-L506C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L503C13-L506C69" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L514C13-L523C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L514C13-L523C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L530C13-L530C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L530C13-L530C68" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L538C13-L548C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L538C13-L548C58" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.ReadCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L557C13-L564C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L557C13-L564C10" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L87C17-L92C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L87C17-L92C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L100C24-L116C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L100C24-L116C14" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L127C17-L127C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L127C17-L127C37" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.SingleInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.MultiInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategoryType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Global", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Process", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterInstanceLifetime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CloseData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawFraction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimerInverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100NsInverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimerInverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100NsInverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.#ctor(System.Guid,System.Guid,System.Diagnostics.PerformanceData.CounterSetInstanceType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.CreateCounterSetInstance(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L271C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L271C29" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstance.Counters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Increment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Decrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.RawValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L264C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L264C14" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Multiple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregateWithHistory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.MultipleAggregate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.InstanceAggregate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.LargeQueueLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLengthObjectTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionSystemTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionTimer100Ns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.DirectoryServices.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.DirectoryServices.json index 8df94acab9d..a1ec37725ff 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.DirectoryServices.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.DirectoryServices.json @@ -1,5931 +1,5931 @@ { "Assembly": "System.DirectoryServices", - "GUID": "A21D27731C2E4702951B0BA79AF964A5FFFFFFFF", + "GUID": "CEB292008F024B77A893305878243291FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteDacl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Synchronize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.AccessSystemSecurity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericRead", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericWrite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericExecute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.CreateChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Self", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteTree", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ExtendedRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Descendents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.SelfAndChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurityInheritance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PropertyAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.PropertyAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ResetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccess(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRuleSpecific(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAccessRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAccessRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAudit(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRuleSpecific(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAuditRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAuditRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" } ], "DocsId": "T:System.DirectoryServices.ListChildrenAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" } ], "DocsId": "T:System.DirectoryServices.CreateChildAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" } ], "DocsId": "T:System.DirectoryServices.DeleteChildAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" } ], "DocsId": "T:System.DirectoryServices.PropertyAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" } ], "DocsId": "T:System.DirectoryServices.PropertySetAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" } ], "DocsId": "T:System.DirectoryServices.ExtendedRightAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" } ], "DocsId": "T:System.DirectoryServices.DeleteTreeAccessRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAuditRule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Secure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Encryption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.SecureSocketsLayer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ReadonlyServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Anonymous", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.FastBind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Signing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Sealing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Delegation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ServerBind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" } ], "DocsId": "T:System.DirectoryServices.AuthenticationTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DereferenceAlias.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Never", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.InSearching", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.FindingBaseObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Always", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" } ], "DocsId": "T:System.DirectoryServices.DereferenceAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Remove(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntries.SchemaFilter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L25C9-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L25C9-L53C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L59C47-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L59C47-L62C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L67C83-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L67C83-L69C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String,System.DirectoryServices.AuthenticationTypes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L74C123-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L74C123-L84C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L107C15-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L107C15-L109C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L557C13-L558C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L557C13-L558C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CommitChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L565C13-L619C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L565C13-L619C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L654C67-L654C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L654C67-L654C90" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L661C13-L673C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L661C13-L673C123" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.DeleteTree", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L681C13-L695C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L681C13-L695C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L702C13-L709C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L702C13-L709C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L716C13-L734C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L716C13-L734C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Invoke(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L776C13-L801C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L776C13-L801C31" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeGet(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L809C13-L831C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L809C13-L831C27" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeSet(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L839C13-L859C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L839C13-L859C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L864C57-L864C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L864C57-L864C80" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L871C13-L922C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L871C13-L922C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L930C13-L947C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L930C13-L947C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L954C13-L1011C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L954C13-L1011C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Rename(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1016C48-L1016C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1016C48-L1016C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.AuthenticationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L163C20-L163C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L163C20-L163C39" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L182C45-L182C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L182C45-L182C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Guid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L200C17-L213C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L200C17-L213C43" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L221C17-L227C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L221C17-L227C41" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L259C17-L262C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L259C17-L262C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L270C17-L273C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L270C17-L273C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L284C17-L285C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L284C17-L285C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L296C17-L297C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L296C17-L297C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Password", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L309C17-L327C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L309C17-L327C14" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L337C20-L337C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L337C20-L337C25" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L354C13-L354C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L354C13-L354C65" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaClassName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L363C17-L366C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L363C17-L366C33" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L379C17-L380C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L379C17-L380C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.UsePropertyCache", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L396C20-L396C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L396C20-L396C29" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Username", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L419C17-L422C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L419C17-L422C46" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L448C17-L451C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L448C17-L451C33" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.GetCurrentServerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.IsMutuallyAuthenticated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.SetUserNameQueryQuota(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.Referral", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.SecurityMasks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PageSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordEncoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntryConfiguration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindOne", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L571C13-L599C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L571C13-L599C32" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.CacheResults", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ClientTimeout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertyNamesOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Filter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PageSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertiesToLoad", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ReferralChasing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerPageTimeLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerTimeLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SizeLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Sort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Asynchronous", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Tombstone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.AttributeScopeQuery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DerefAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SecurityMasks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ExtendedDN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.VirtualListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" } ], "DocsId": "T:System.DirectoryServices.DirectorySearcher", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronization)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.GetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" }, { "DocsId": "P:System.DirectoryServices.DirectorySynchronization.Option", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ParentsFirst", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.PublicDataOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.IncrementalValues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronizationOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.BeforeCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.AfterCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Offset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.TargetPercentage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Target", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.ApproximateTotal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ExtendedDN.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.HexString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.Standard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" } ], "DocsId": "T:System.DirectoryServices.ExtendedDN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingSsl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" } ], "DocsId": "T:System.DirectoryServices.PasswordEncodingMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.CopyTo(System.DirectoryServices.PropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Item(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#set_Item(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Add(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Item(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" } ], "DocsId": "T:System.DirectoryServices.PropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L144C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.DirectoryServices.PropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L151C13-L157C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L151C13-L157C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L159C48-L159C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L159C48-L159C68" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L167C13-L168C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L167C13-L168C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L170C46-L170C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L170C46-L170C65" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L172C57-L172C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L172C57-L172C82" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L205C13-L220C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L205C13-L220C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L224C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L224C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L245C13-L274C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L245C13-L274C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L278C13-L307C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L278C13-L307C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L312C13-L332C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L312C13-L332C10" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.PropertyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" } ], "DocsId": "T:System.DirectoryServices.PropertyValueCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.Subordinate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.External", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" } ], "DocsId": "T:System.DirectoryServices.ReferralChasingOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.CopyTo(System.DirectoryServices.ResultPropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L79C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.DirectoryServices.SchemaNameCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L83C13-L91C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L83C13-L91C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L98C13-L99C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L98C13-L99C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C48-L104C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C48-L104C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L108C13-L110C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L108C13-L110C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L115C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L115C43" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L132C13-L138C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L132C13-L138C23" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L146C13-L149C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L146C13-L149C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L157C13-L159C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L157C13-L159C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L166C13-L176C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L166C13-L176C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L178C34-L178C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L178C34-L178C39" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L180C35-L180C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L180C35-L180C40" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C13-L186C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C13-L186C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L188C44-L188C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L188C44-L188C49" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C40-L190C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C40-L190C44" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C20-L194C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C20-L194C31" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L195C20-L195C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L195C20-L195C48" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L198C41-L198C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L198C41-L198C60" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C47-L200C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C47-L200C71" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L202C45-L202C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L202C45-L202C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C56-L204C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C56-L204C85" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C45-L206C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C45-L206C67" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L178C34-L178C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L178C34-L178C39" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L180C35-L180C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L180C35-L180C40" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L188C44-L188C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L188C44-L188C49" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C40-L190C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C40-L190C44" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C20-L194C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C20-L194C31" } ], "DocsId": "T:System.DirectoryServices.SchemaNameCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResult.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" } ], "DocsId": "T:System.DirectoryServices.SearchResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L153C13-L155C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L153C13-L155C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L159C13-L187C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L159C13-L187C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L189C38-L189C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L189C38-L189C52" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C135" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Contains(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.CopyTo(System.DirectoryServices.SearchResult[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.IndexOf(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L79C17-L82C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L79C17-L82C32" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.PropertiesLoaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L90C44-L90C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L90C44-L90C48" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" } ], "DocsId": "T:System.DirectoryServices.SearchResultCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SearchScope.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Base", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.OneLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Subtree", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" } ], "DocsId": "T:System.DirectoryServices.SearchScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SecurityMasks.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Group", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Dacl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Sacl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" } ], "DocsId": "T:System.DirectoryServices.SecurityMasks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SortDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Ascending", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Descending", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" } ], "DocsId": "T:System.DirectoryServices.SortDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SortOption.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" }, { "DocsId": "M:System.DirectoryServices.SortOption.#ctor(System.String,System.DirectoryServices.SortDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" }, { "DocsId": "P:System.DirectoryServices.SortOption.PropertyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" }, { "DocsId": "P:System.DirectoryServices.SortOption.Direction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" } ], "DocsId": "T:System.DirectoryServices.SortOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedErrorMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesCOMException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.AttributeNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Zero", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.One", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Two", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Three", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Four", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Five", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Six", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seven", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Ten", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eleven", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twelve", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Thirteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fourteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fifteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Sixteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seventeen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eighteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nineteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twenty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyOne", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyTwo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyThree", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.HourOfDay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Zero", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Fifteen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Thirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.FortyFive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.MinuteOfHour", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek[],System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetDailySchedule(System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.ResetSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.RawSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Type88", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Structural", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Abstract", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Auxiliary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SchemaClassType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.Indexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.InGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.PropertyTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetSchema(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.RefreshSchema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindClass(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctClass(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L233C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L233C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L241C13-L244C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L241C13-L244C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses(System.DirectoryServices.ActiveDirectory.SchemaClassType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L252C13-L263C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L252C13-L263C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctClasses", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L271C13-L275C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L271C13-L275C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindProperty(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L283C13-L284C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L283C13-L284C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctProperty(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L292C13-L306C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L292C13-L306C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L314C13-L318C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L314C13-L318C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties(System.DirectoryServices.ActiveDirectory.PropertyTypes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L326C13-L360C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L326C13-L360C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L368C13-L372C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L368C13-L372C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L377C13-L378C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L377C13-L378C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetCurrentSchema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L383C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L383C103" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L394C17-L395C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L394C17-L395C72" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L86C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L179C13-L180C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L185C13-L214C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L185C13-L214C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L220C13-L249C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L220C13-L249C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetAllProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L254C13-L263C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L254C13-L263C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L268C13-L414C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L268C13-L414C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L418C13-L418C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L418C13-L418C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L423C13-L433C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L423C13-L433C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L442C17-L443C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L442C17-L443C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.CommonName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L451C17-L458C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L451C17-L458C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L477C17-L502C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L477C17-L502C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L521C17-L532C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L521C17-L532C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.IsDefunct", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L551C17-L553C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L551C17-L553C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleSuperiors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L572C17-L641C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L572C17-L641C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleInferiors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L649C17-L663C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L649C17-L663C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.MandatoryProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L671C17-L739C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L671C17-L739C45" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.OptionalProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L747C17-L824C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L747C17-L824C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.AuxiliaryClasses", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L832C17-L900C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L832C17-L900C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SubClassOf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L908C17-L915C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L908C17-L915C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L934C17-L945C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L934C17-L945C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SchemaGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L970C17-L979C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L970C17-L979C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.DefaultObjectSecurityDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L998C17-L1019C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L998C17-L1019C56" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L79C13-L92C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L79C13-L92C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L98C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L98C13-L112C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L116C13-L131C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L116C13-L131C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L135C13-L150C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L135C13-L150C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L154C13-L170C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L154C13-L170C111" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L175C13-L188C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L175C13-L188C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L194C13-L210C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L194C13-L210C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L215C13-L216C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L215C13-L216C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L220C13-L236C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L220C13-L236C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L241C13-L257C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L241C13-L257C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L263C13-L276C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L263C13-L276C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L282C13-L308C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L282C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L314C13-L321C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L314C13-L321C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L325C13-L334C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L325C13-L334C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.CommonName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Syntax", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsSingleValued", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexedOverContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInAnr", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsOnTombstonedObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsTupleIndexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeLower", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeUpper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsDefunct", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.LinkId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.SchemaGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoTopologyDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.TopologyCleanupDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoMinimumHopDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.StaleServerDetectDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoInterSiteTopologyDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.GroupMembershipCachingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.ForceKccWindows2003Behavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseWindows2000IstgElection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RandomBridgeHeaderServerSelectionDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseHashingForReplicationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RedundantServerTopologyEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetComputerSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Domains", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Subnets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Servers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.AdjacentSites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.SiteLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.InterSiteTopologyGenerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.BridgeheadServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredSmtpBridgeheadServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredRpcBridgeheadServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.IntraSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Sites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Cost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReplicationInterval", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.NotificationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.InterSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.SiteLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseExactString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseIgnoreString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.NumericString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DirectoryString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.OctetString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Bool", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.GeneralizedTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.UtcTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithBinary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Enumeration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.IA5String", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PrintableString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Sid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.AccessPointDN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ORName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PresentationAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ReplicaLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAdamInstance(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L161C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L161C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L167C13-L185C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L167C13-L185C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L190C13-L221C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L190C13-L221C43" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L226C13-L247C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L226C13-L247C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L253C13-L293C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L253C13-L293C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L297C13-L305C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L297C13-L305C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L309C13-L325C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L309C13-L325C123" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L330C13-L339C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L330C13-L339C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L344C13-L359C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L344C13-L359C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L364C13-L373C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L364C13-L373C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L378C13-L378C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L378C13-L378C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L383C13-L398C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L383C13-L398C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L403C13-L421C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L403C13-L421C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L425C13-L437C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L425C13-L437C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L441C13-L453C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L441C13-L453C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L457C13-L476C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L457C13-L476C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L486C17-L492C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L486C17-L492C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.HostName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L500C17-L506C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L500C17-L506C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.LdapPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L514C17-L520C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L514C17-L520C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SslPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L528C17-L534C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L528C17-L534C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.Roles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L544C17-L580C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L544C17-L580C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.DefaultPartition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L588C17-L611C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L588C17-L611C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.IPAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L651C17-L660C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L651C17-L660C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SiteName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L669C17-L682C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L669C17-L682C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L781C17-L784C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L781C17-L784C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.InboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C79-L796C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C79-L796C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.OutboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L798C80-L798C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L798C80-L798C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L39C13-L50C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L39C13-L50C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamInstance[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L55C13-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L55C13-L56C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetApplicationPartition(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L152C155" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L152C155" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L158C13-L344C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L158C13-L344C30" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L349C13-L367C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L349C13-L367C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L372C13-L393C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L372C13-L393C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L398C13-L418C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L398C13-L418C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L423C13-L445C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L423C13-L445C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L450C13-L467C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L450C13-L467C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L473C13-L492C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L473C13-L492C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L498C13-L510C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L498C13-L510C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L516C13-L530C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L516C13-L530C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L536C13-L560C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L536C13-L560C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L564C13-L727C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L564C13-L727C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L731C13-L738C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L731C13-L738C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.DirectoryServers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L749C17-L768C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L749C17-L768C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.SecurityReferenceDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L776C17-L807C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L776C17-L807C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Contains(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L39C13-L49C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L39C13-L49C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ApplicationPartition[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingChangeTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingInvocationId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingChangeUsn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LocalChangeUsn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadata", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Contains(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetConfigurationSet(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L166C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L166C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L171C13-L179C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L171C13-L179C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L184C13-L186C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L184C13-L186C60" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L191C13-L195C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L191C13-L195C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L200C13-L208C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L200C13-L208C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L213C13-L214C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L213C13-L214C110" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetSecurityLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L219C13-L225C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L219C13-L225C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SetSecurityLevel(System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L230C13-L249C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L230C13-L249C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L251C46-L251C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L251C46-L251C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L261C17-L262C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L261C17-L262C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Sites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L270C17-L271C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L270C17-L271C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.AdamInstances", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L279C17-L280C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L279C17-L280C72" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L288C17-L289C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L288C17-L289C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Schema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L297C17-L309C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L297C17-L309C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L317C17-L318C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L317C17-L318C85" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L326C17-L327C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L326C17-L327C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.DirectoryServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContextType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L132C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L134C9-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L134C9-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L148C9-L163C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L148C9-L163C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L169C32-L169C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L169C32-L169C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.UserName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L171C36-L171C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L171C36-L171C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.ContextType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L178C52-L178C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L178C52-L178C64" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L41C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L41C45" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.MoveToAnotherSite(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L141C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L141C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L145C13-L147C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L145C13-L147C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L182C17-L183C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L182C17-L183C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Partitions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L191C17-L192C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L191C17-L192C91" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.IPAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SiteName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.InboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.OutboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Add(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.AddRange(System.DirectoryServices.ActiveDirectory.DirectoryServer[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Remove(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000MixedDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000NativeDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003InterimDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008R2Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows8Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2012R2Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDomain(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetComputerDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionality(System.DirectoryServices.ActiveDirectory.DomainMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L423C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L423C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L428C13-L430C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L428C13-L430C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L435C13-L439C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L435C13-L439C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L444C13-L446C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L444C13-L446C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L451C13-L455C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L451C13-L455C105" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L460C13-L463C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L460C13-L463C120" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L468C13-L479C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L468C13-L479C124" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L484C13-L485C140" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L484C13-L485C140" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L490C13-L494C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L490C13-L494C31" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L499C13-L517C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L499C13-L517C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L523C13-L531C168" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L523C13-L531C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L536C13-L545C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L536C13-L545C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L549C13-L557C168" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L549C13-L557C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L562C13-L571C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L562C13-L571C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L575C13-L585C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L575C13-L585C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L589C13-L599C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L589C13-L599C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L603C13-L612C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L603C13-L612C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L616C13-L649C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L616C13-L649C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L653C13-L676C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L653C13-L676C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L680C13-L701C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L680C13-L701C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L705C13-L720C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L705C13-L720C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L724C13-L742C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L724C13-L742C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L746C13-L767C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L746C13-L767C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L771C13-L809C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L771C13-L809C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetCurrentDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L813C13-L813C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L813C13-L813C88" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L824C17-L834C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L824C17-L834C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainControllers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L842C17-L843C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L842C17-L843C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L851C17-L852C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L851C17-L852C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L860C17-L865C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L860C17-L865C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainModeLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L873C17-L878C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L873C17-L878C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L886C17-L892C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L886C17-L892C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.PdcRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L900C17-L902C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L900C17-L902C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.RidRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L910C17-L911C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L910C17-L911C90" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.InfrastructureRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L919C17-L920C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L919C17-L920C112" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.Contains(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.IndexOf(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.CopyTo(System.DirectoryServices.ActiveDirectory.Domain[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.AbortIfServerUnavailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SyncAdjacentServerOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CheckServerAlivenessOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SkipInitialCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.PushChangeOutward", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CrossSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncStarted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Finished", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorContactingServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorReplicating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ServerUnreachable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.Invoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.BeginInvoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L95C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L95C46" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDomainController(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L183C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L183C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L188C13-L197C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L188C13-L197C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L202C13-L209C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L202C13-L209C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L214C13-L223C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L214C13-L223C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L228C13-L238C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L228C13-L238C94" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L243C13-L255C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L243C13-L255C98" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L260C13-L280C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L260C13-L280C53" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L285C13-L311C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L285C13-L311C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L315C13-L336C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L315C13-L336C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L410C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L410C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L414C13-L416C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L414C13-L416C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L421C13-L429C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L421C13-L429C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L433C13-L449C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L433C13-L449C119" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L454C13-L463C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L454C13-L463C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L468C13-L483C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L468C13-L483C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L488C13-L497C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L488C13-L497C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L502C13-L502C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L502C13-L502C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L507C13-L522C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L507C13-L522C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L527C13-L545C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L527C13-L545C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L549C13-L561C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L549C13-L561C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L565C13-L577C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L565C13-L577C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L586C17-L592C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L586C17-L592C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.CurrentTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L600C17-L613C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L600C17-L613C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.HighestCommittedUsn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L621C17-L634C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L621C17-L634C94" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OSVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L642C17-L650C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L642C17-L650C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Roles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L684C17-L685C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L684C17-L685C87" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L693C17-L712C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L693C17-L712C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.IPAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L729C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L729C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SiteName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L738C17-L748C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L738C17-L748C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L841C17-L844C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L841C17-L844C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.InboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L856C79-L856C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L856C79-L856C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OutboundConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L858C80-L858C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L858C80-L858C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Contains(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DomainController[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainControllerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.TargetServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.ErrorCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.ErrorCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.ErrorInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.Collisions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2000Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003InterimForest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008R2Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows8Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2012R2Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetForest(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionality(System.DirectoryServices.ActiveDirectory.ForestMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L244C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L244C79" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L249C13-L251C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L249C13-L251C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L256C13-L260C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L256C13-L260C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L265C13-L267C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L265C13-L267C66" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L272C13-L276C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L272C13-L276C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L281C13-L284C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L281C13-L284C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L289C13-L300C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L289C13-L300C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L305C13-L307C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L305C13-L307C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L312C13-L329C173" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L312C13-L329C173" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L335C13-L343C168" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L335C13-L343C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L348C13-L357C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L348C13-L357C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L361C13-L369C167" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L361C13-L369C167" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L374C13-L383C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L374C13-L383C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L387C13-L397C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L387C13-L397C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L401C13-L411C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L401C13-L411C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L415C13-L424C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L415C13-L424C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L428C13-L461C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L428C13-L461C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L465C13-L488C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L465C13-L488C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L492C13-L513C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L492C13-L513C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L517C13-L532C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L517C13-L532C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L536C13-L554C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L536C13-L554C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L558C13-L579C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L558C13-L579C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L583C13-L618C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L583C13-L618C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetCurrentForest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L620C52-L620C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L620C52-L620C112" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L630C17-L631C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L630C17-L631C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Sites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L639C17-L640C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L639C17-L640C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Domains", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L648C17-L649C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L648C17-L649C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.GlobalCatalogs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L657C17-L658C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L657C17-L658C74" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L666C17-L667C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L666C17-L667C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestModeLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L675C17-L680C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L675C17-L680C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L688C17-L695C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L688C17-L695C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.RootDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L703C17-L711C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L703C17-L711C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Schema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L719C17-L731C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L719C17-L731C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L739C17-L740C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L739C17-L740C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L748C17-L749C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L748C17-L749C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.TopLevelNameCollisionOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.DomainCollisionOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidAdminDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidConflictDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameAdminDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameConflictDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DnsName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.NetBiosName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DomainSid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.Status", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TopLevelNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.ExcludedTopLevelNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TrustedDomainInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetGlobalCatalog(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L98C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L98C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L103C13-L112C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L103C13-L112C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L117C13-L124C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L117C13-L124C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L129C13-L138C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L129C13-L138C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L143C13-L153C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L143C13-L153C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L158C13-L170C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L158C13-L170C55" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L175C13-L176C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L175C13-L176C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.DisableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L181C13-L209C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L181C13-L209C56" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L214C13-L218C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L214C13-L218C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAllProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L223C13-L243C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L223C13-L243C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L248C13-L251C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L248C13-L251C51" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Contains(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.IndexOf(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.CopyTo(System.DirectoryServices.ActiveDirectory.GlobalCatalog[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.ForceRediscovery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.KdcRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.TimeServerRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.WriteableRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.AvoidSelf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.LocatorOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L41C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L41C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L46C13-L56C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L46C13-L56C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L61C13-L62C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NoNotification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.IntraSiteOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NotificationAlways", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.NotificationStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.IntraSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.InterSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DestinationServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GeneratedByKcc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ChangeNotificationStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationScheduleOwnedByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationConnection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.PartitionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.UpToDatenessUsn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.LastSuccessfulSyncTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationCursor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.FirstFailureTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationFailure[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Rpc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Smtp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.PartitionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnLastObjectChangeSynced", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnAttributeFilter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSuccessfulSync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastAttemptedSync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" }, { "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.TimeEnqueued", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.Priority", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.PartitionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.SourceServer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationOperation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.OperationStartTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.CurrentOperation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.PendingOperations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.FindByTransportType(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.IgnoreReplicationSchedule", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.BridgeAllSiteLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinkBridges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.NamingRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.PdcRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.RidRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.InfrastructureRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.NamingRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRoleCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.MutualAuthentication", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.Negotiate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.NegotiatePassThrough", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.NewlyCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.AdminDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.ConflictDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Status", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Contains(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TopLevelName[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.TreeRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.ParentChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.CrossLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.External", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Forest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Kerberos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Inbound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Outbound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Bidirectional", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.SourceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TargetName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Contains(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Sync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Add", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Modify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.UpdateReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.TopLevelName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Other", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.NewlyCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByAdmin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByConflict", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByConflict", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByConflict", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Writeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.SyncOnStartup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ScheduledSync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.UseInterSiteTransport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.TwoWaySync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ReturnObjectParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncInProgress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncNextPacket", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NeverSynced", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Preempted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.IgnoreChangeNotifications", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.DisableScheduledSync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.CompressChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NoChangeNotifications", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.PartialAttributeSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Drawing.Common.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Drawing.Common.json index ea131a84636..a437d9cebee 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Drawing.Common.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Drawing.Common.json @@ -1,12763 +1,12763 @@ { "Assembly": "System.Drawing.Common", - "GUID": "A3100DF7E66942CAA167C54B5EA37F8FFFFFFFFF", + "GUID": "46000730562D4B4C88DDF704DB2AB144FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C38-L28C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C38-L28C71" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L30C5-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L30C5-L49C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L51C36-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L51C36-L53C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L55C5-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L55C5-L69C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L71C49-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L71C49-L73C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L84C44-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L84C44-L86C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L88C5-L96C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L88C5-L96C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L98C5-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L98C5-L103C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L105C5-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L105C5-L110C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C37-L114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C37-L114C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L116C51-L118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L116C51-L118C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L120C60-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L120C60-L126C6" }, { "DocsId": "M:System.Drawing.Bitmap.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C40-L132C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C40-L132C69" }, { "DocsId": "M:System.Drawing.Bitmap.FromHicon(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L137C9-L138C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L137C9-L138C35" }, { "DocsId": "M:System.Drawing.Bitmap.FromResource(System.IntPtr,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L143C9-L150C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L143C9-L150C35" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L154C35-L154C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L154C35-L154C62" }, { "DocsId": "M:System.Drawing.Bitmap.System#Private#Windows#Graphics#IBitmap#GetHbitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L156C37-L156C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L156C37-L156C58" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L163C13-L176C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L163C13-L176C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetHicon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L182C9-L184C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L182C9-L184C22" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.RectangleF,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L189C9-L208C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L189C9-L208C34" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L213C9-L227C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L213C9-L227C6" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L231C9-L263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L231C9-L263C6" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L266C9-L266C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L266C9-L266C45" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L270C9-L282C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L270C9-L282C27" }, { "DocsId": "M:System.Drawing.Bitmap.UnlockBits(System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L287C9-L295C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L287C9-L295C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetPixel(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L299C9-L312C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L299C9-L312C43" }, { "DocsId": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L317C9-L334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L317C9-L334C6" }, { "DocsId": "M:System.Drawing.Bitmap.SetResolution(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L338C9-L340C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L338C9-L340C6" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.Rectangle,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L344C9-L362C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L344C9-L362C34" }, { "DocsId": "M:System.Drawing.Bitmap.ApplyEffect(System.Drawing.Imaging.Effects.Effect,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L373C9-L384C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L373C9-L384C6" }, { "DocsId": "M:System.Drawing.Bitmap.ConvertFormat(System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.DitherType,System.Drawing.Imaging.PaletteType,System.Drawing.Imaging.ColorPalette,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L453C9-L479C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L453C9-L479C6" }, { "DocsId": "M:System.Drawing.Bitmap.ConvertFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L492C9-L511C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L492C9-L511C6" }, { "DocsId": "P:System.Drawing.Bitmap.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C40-L132C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C40-L132C69" } ], "DocsId": "T:System.Drawing.Bitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSameAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSameAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Brush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "DocsId": "M:System.Drawing.Brush.SetNativeBrush(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" }, { "DocsId": "M:System.Drawing.Brush.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" }, { "DocsId": "M:System.Drawing.Brush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" }, { "DocsId": "M:System.Drawing.Brush.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L37C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L37C42" }, { "DocsId": "M:System.Drawing.Brush.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" } ], "DocsId": "T:System.Drawing.Brush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Brushes.Transparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" }, { "DocsId": "P:System.Drawing.Brushes.AliceBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" }, { "DocsId": "P:System.Drawing.Brushes.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" }, { "DocsId": "P:System.Drawing.Brushes.Aqua", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" }, { "DocsId": "P:System.Drawing.Brushes.Aquamarine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" }, { "DocsId": "P:System.Drawing.Brushes.Azure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" }, { "DocsId": "P:System.Drawing.Brushes.Beige", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" }, { "DocsId": "P:System.Drawing.Brushes.Bisque", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" }, { "DocsId": "P:System.Drawing.Brushes.Black", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" }, { "DocsId": "P:System.Drawing.Brushes.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" }, { "DocsId": "P:System.Drawing.Brushes.Blue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" }, { "DocsId": "P:System.Drawing.Brushes.BlueViolet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" }, { "DocsId": "P:System.Drawing.Brushes.Brown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" }, { "DocsId": "P:System.Drawing.Brushes.BurlyWood", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" }, { "DocsId": "P:System.Drawing.Brushes.CadetBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" }, { "DocsId": "P:System.Drawing.Brushes.Chartreuse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" }, { "DocsId": "P:System.Drawing.Brushes.Chocolate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" }, { "DocsId": "P:System.Drawing.Brushes.Coral", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" }, { "DocsId": "P:System.Drawing.Brushes.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" }, { "DocsId": "P:System.Drawing.Brushes.Cornsilk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" }, { "DocsId": "P:System.Drawing.Brushes.Crimson", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" }, { "DocsId": "P:System.Drawing.Brushes.Cyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" }, { "DocsId": "P:System.Drawing.Brushes.DarkBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkCyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkKhaki", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkMagenta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" }, { "DocsId": "P:System.Drawing.Brushes.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" }, { "DocsId": "P:System.Drawing.Brushes.DarkSalmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkViolet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" }, { "DocsId": "P:System.Drawing.Brushes.DeepPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" }, { "DocsId": "P:System.Drawing.Brushes.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" }, { "DocsId": "P:System.Drawing.Brushes.DimGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" }, { "DocsId": "P:System.Drawing.Brushes.DodgerBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" }, { "DocsId": "P:System.Drawing.Brushes.Firebrick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" }, { "DocsId": "P:System.Drawing.Brushes.FloralWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" }, { "DocsId": "P:System.Drawing.Brushes.ForestGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" }, { "DocsId": "P:System.Drawing.Brushes.Fuchsia", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" }, { "DocsId": "P:System.Drawing.Brushes.Gainsboro", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" }, { "DocsId": "P:System.Drawing.Brushes.GhostWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" }, { "DocsId": "P:System.Drawing.Brushes.Gold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" }, { "DocsId": "P:System.Drawing.Brushes.Goldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" }, { "DocsId": "P:System.Drawing.Brushes.Gray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" }, { "DocsId": "P:System.Drawing.Brushes.Green", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" }, { "DocsId": "P:System.Drawing.Brushes.GreenYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" }, { "DocsId": "P:System.Drawing.Brushes.Honeydew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" }, { "DocsId": "P:System.Drawing.Brushes.HotPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" }, { "DocsId": "P:System.Drawing.Brushes.IndianRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" }, { "DocsId": "P:System.Drawing.Brushes.Indigo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" }, { "DocsId": "P:System.Drawing.Brushes.Ivory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" }, { "DocsId": "P:System.Drawing.Brushes.Khaki", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" }, { "DocsId": "P:System.Drawing.Brushes.Lavender", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" }, { "DocsId": "P:System.Drawing.Brushes.LavenderBlush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" }, { "DocsId": "P:System.Drawing.Brushes.LawnGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" }, { "DocsId": "P:System.Drawing.Brushes.LemonChiffon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" }, { "DocsId": "P:System.Drawing.Brushes.LightBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" }, { "DocsId": "P:System.Drawing.Brushes.LightCoral", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" }, { "DocsId": "P:System.Drawing.Brushes.LightCyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" }, { "DocsId": "P:System.Drawing.Brushes.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" }, { "DocsId": "P:System.Drawing.Brushes.LightGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" }, { "DocsId": "P:System.Drawing.Brushes.LightGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" }, { "DocsId": "P:System.Drawing.Brushes.LightPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" }, { "DocsId": "P:System.Drawing.Brushes.LightSalmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" }, { "DocsId": "P:System.Drawing.Brushes.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" }, { "DocsId": "P:System.Drawing.Brushes.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" }, { "DocsId": "P:System.Drawing.Brushes.LightSlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" }, { "DocsId": "P:System.Drawing.Brushes.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" }, { "DocsId": "P:System.Drawing.Brushes.LightYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" }, { "DocsId": "P:System.Drawing.Brushes.Lime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" }, { "DocsId": "P:System.Drawing.Brushes.LimeGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" }, { "DocsId": "P:System.Drawing.Brushes.Linen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" }, { "DocsId": "P:System.Drawing.Brushes.Magenta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" }, { "DocsId": "P:System.Drawing.Brushes.Maroon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" }, { "DocsId": "P:System.Drawing.Brushes.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" }, { "DocsId": "P:System.Drawing.Brushes.MediumBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" }, { "DocsId": "P:System.Drawing.Brushes.MediumOrchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumPurple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" }, { "DocsId": "P:System.Drawing.Brushes.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" }, { "DocsId": "P:System.Drawing.Brushes.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" }, { "DocsId": "P:System.Drawing.Brushes.MidnightBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" }, { "DocsId": "P:System.Drawing.Brushes.MintCream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" }, { "DocsId": "P:System.Drawing.Brushes.MistyRose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" }, { "DocsId": "P:System.Drawing.Brushes.Moccasin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" }, { "DocsId": "P:System.Drawing.Brushes.NavajoWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" }, { "DocsId": "P:System.Drawing.Brushes.Navy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" }, { "DocsId": "P:System.Drawing.Brushes.OldLace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" }, { "DocsId": "P:System.Drawing.Brushes.Olive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" }, { "DocsId": "P:System.Drawing.Brushes.OliveDrab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" }, { "DocsId": "P:System.Drawing.Brushes.Orange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" }, { "DocsId": "P:System.Drawing.Brushes.OrangeRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" }, { "DocsId": "P:System.Drawing.Brushes.Orchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" }, { "DocsId": "P:System.Drawing.Brushes.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" }, { "DocsId": "P:System.Drawing.Brushes.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" }, { "DocsId": "P:System.Drawing.Brushes.PapayaWhip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" }, { "DocsId": "P:System.Drawing.Brushes.PeachPuff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" }, { "DocsId": "P:System.Drawing.Brushes.Peru", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" }, { "DocsId": "P:System.Drawing.Brushes.Pink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" }, { "DocsId": "P:System.Drawing.Brushes.Plum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" }, { "DocsId": "P:System.Drawing.Brushes.PowderBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" }, { "DocsId": "P:System.Drawing.Brushes.Purple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" }, { "DocsId": "P:System.Drawing.Brushes.Red", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" }, { "DocsId": "P:System.Drawing.Brushes.RosyBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" }, { "DocsId": "P:System.Drawing.Brushes.RoyalBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" }, { "DocsId": "P:System.Drawing.Brushes.SaddleBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" }, { "DocsId": "P:System.Drawing.Brushes.Salmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" }, { "DocsId": "P:System.Drawing.Brushes.SandyBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" }, { "DocsId": "P:System.Drawing.Brushes.SeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" }, { "DocsId": "P:System.Drawing.Brushes.SeaShell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" }, { "DocsId": "P:System.Drawing.Brushes.Sienna", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" }, { "DocsId": "P:System.Drawing.Brushes.Silver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" }, { "DocsId": "P:System.Drawing.Brushes.SkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" }, { "DocsId": "P:System.Drawing.Brushes.SlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" }, { "DocsId": "P:System.Drawing.Brushes.SlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" }, { "DocsId": "P:System.Drawing.Brushes.Snow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" }, { "DocsId": "P:System.Drawing.Brushes.SpringGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" }, { "DocsId": "P:System.Drawing.Brushes.SteelBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" }, { "DocsId": "P:System.Drawing.Brushes.Tan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" }, { "DocsId": "P:System.Drawing.Brushes.Teal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" }, { "DocsId": "P:System.Drawing.Brushes.Thistle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" }, { "DocsId": "P:System.Drawing.Brushes.Tomato", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" }, { "DocsId": "P:System.Drawing.Brushes.Turquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" }, { "DocsId": "P:System.Drawing.Brushes.Violet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" }, { "DocsId": "P:System.Drawing.Brushes.Wheat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" }, { "DocsId": "P:System.Drawing.Brushes.White", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" }, { "DocsId": "P:System.Drawing.Brushes.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" }, { "DocsId": "P:System.Drawing.Brushes.Yellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" }, { "DocsId": "P:System.Drawing.Brushes.YellowGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" } ], "DocsId": "T:System.Drawing.Brushes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphics.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" }, { "DocsId": "P:System.Drawing.BufferedGraphics.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" } ], "DocsId": "T:System.Drawing.BufferedGraphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphicsContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L68C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L68C49" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L490C9-L503C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L490C9-L503C6" }, { "DocsId": "P:System.Drawing.BufferedGraphicsContext.MaximumBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" } ], "DocsId": "T:System.Drawing.BufferedGraphicsContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.BufferedGraphicsManager.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" } ], "DocsId": "T:System.Drawing.BufferedGraphicsManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.CharacterRange.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Equality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Inequality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" }, { "DocsId": "M:System.Drawing.CharacterRange.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" }, { "DocsId": "P:System.Drawing.CharacterRange.First", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" }, { "DocsId": "P:System.Drawing.CharacterRange.Length", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" } ], "DocsId": "T:System.Drawing.CharacterRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.ContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" } ], "DocsId": "T:System.Drawing.ContentAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.CopyPixelOperation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Blackness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.CaptureBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.DestinationInvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergeCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergePaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NoMirrorBitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceErase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatInvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceAnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceErase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceInvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourcePaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Whiteness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" } ], "DocsId": "T:System.Drawing.CopyPixelOperation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Font.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L32C38-L32C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L32C38-L32C55" }, { "DocsId": "M:System.Drawing.Font.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L142C16-L142C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L142C16-L142C30" }, { "DocsId": "M:System.Drawing.Font.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L156C9-L161C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L156C9-L161C6" }, { "DocsId": "M:System.Drawing.Font.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L170C9-L172C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L170C9-L172C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L203C9-L213C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L203C9-L213C23" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L219C9-L221C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L219C9-L221C23" }, { "DocsId": "M:System.Drawing.Font.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L230C9-L249C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L230C9-L249C34" }, { "DocsId": "M:System.Drawing.Font.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L255C42-L255C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L255C42-L255C83" }, { "DocsId": "M:System.Drawing.Font.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L261C9-L261C158" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L261C9-L261C158" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L269C9-L298C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L269C9-L298C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L307C9-L331C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L307C9-L331C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.Font,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L369C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L369C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L377C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L377C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L385C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L385C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L393C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L393C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L401C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L401C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L414C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L414C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L422C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L422C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L430C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L430C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L438C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L438C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L446C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L446C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L454C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L454C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L462C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L462C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L470C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L470C6" }, { "DocsId": "M:System.Drawing.Font.FromHfont(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L551C9-L555C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L551C9-L555C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L564C9-L566C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L564C9-L566C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L575C9-L577C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L575C9-L577C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L585C5-L609C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L585C5-L609C77" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L621C9-L647C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L621C9-L647C45" }, { "DocsId": "M:System.Drawing.Font.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L657C9-L669C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L657C9-L669C58" }, { "DocsId": "M:System.Drawing.Font.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L678C9-L680C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L678C9-L680C62" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L697C9-L700C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L697C9-L700C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L705C9-L708C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L705C9-L708C6" }, { "DocsId": "M:System.Drawing.Font.ToHfont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L716C9-L721C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L716C9-L721C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L725C9-L728C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L725C9-L728C6" }, { "DocsId": "P:System.Drawing.Font.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L32C38-L32C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L32C38-L32C55" }, { "DocsId": "P:System.Drawing.Font.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L37C26-L37C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L37C26-L37C35" }, { "DocsId": "P:System.Drawing.Font.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L43C31-L43C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L43C31-L43C41" }, { "DocsId": "P:System.Drawing.Font.Bold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L49C25-L49C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L49C25-L49C54" }, { "DocsId": "P:System.Drawing.Font.Italic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L55C27-L55C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L55C27-L55C58" }, { "DocsId": "P:System.Drawing.Font.Strikeout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L61C30-L61C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L61C30-L61C64" }, { "DocsId": "P:System.Drawing.Font.Underline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L67C30-L67C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L67C30-L67C64" }, { "DocsId": "P:System.Drawing.Font.FontFamily", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L73C37-L73C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L73C37-L73C48" }, { "DocsId": "P:System.Drawing.Font.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L82C27-L82C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L82C27-L82C42" }, { "DocsId": "P:System.Drawing.Font.Unit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L88C33-L88C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L88C33-L88C42" }, { "DocsId": "P:System.Drawing.Font.GdiCharSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L99C31-L99C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L99C31-L99C42" }, { "DocsId": "P:System.Drawing.Font.GdiVerticalFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L108C36-L108C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L108C36-L108C52" }, { "DocsId": "P:System.Drawing.Font.OriginalFontName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L114C40-L114C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L114C40-L114C57" }, { "DocsId": "P:System.Drawing.Font.SystemFontName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L120C37-L120C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L120C37-L120C52" }, { "DocsId": "P:System.Drawing.Font.IsSystemFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L126C33-L126C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L126C33-L126C71" }, { "DocsId": "P:System.Drawing.Font.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L132C26-L132C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L132C26-L132C56" }, { "DocsId": "P:System.Drawing.Font.SizeInPoints", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L738C13-L751C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs#L738C13-L751C10" } ], "DocsId": "T:System.Drawing.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Font.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" }, { "DocsId": "M:System.Drawing.FontConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" }, { "DocsId": "M:System.Drawing.FontConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L384C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L384C75" }, { "DocsId": "M:System.Drawing.FontConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L387C89-L387C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L387C89-L387C93" }, { "DocsId": "M:System.Drawing.FontConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L395C9-L399C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L395C9-L399C86" }, { "DocsId": "M:System.Drawing.FontConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L402C85-L402C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L402C85-L402C89" }, { "DocsId": "M:System.Drawing.FontConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" } ], "DocsId": "T:System.Drawing.FontConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontFamily.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L19C44-L19C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L19C44-L19C63" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L74C5-L74C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L74C5-L74C99" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String,System.Drawing.Text.FontCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L80C5-L80C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L80C5-L80C125" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.Drawing.Text.GenericFontFamilies)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C5-L157C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C5-L157C6" }, { "DocsId": "M:System.Drawing.FontFamily.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C22-L159C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C22-L159C47" }, { "DocsId": "M:System.Drawing.FontFamily.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L166C42-L166C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L166C42-L166C80" }, { "DocsId": "M:System.Drawing.FontFamily.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L170C9-L181C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L170C9-L181C57" }, { "DocsId": "M:System.Drawing.FontFamily.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L189C9-L191C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L189C9-L191C60" }, { "DocsId": "M:System.Drawing.FontFamily.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C9-L201C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C9-L201C6" }, { "DocsId": "M:System.Drawing.FontFamily.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L231C9-L233C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L231C9-L233C45" }, { "DocsId": "M:System.Drawing.FontFamily.GetFamilies(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L281C9-L282C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L281C9-L282C58" }, { "DocsId": "M:System.Drawing.FontFamily.IsStyleAvailable(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L291C9-L293C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L291C9-L293C33" }, { "DocsId": "M:System.Drawing.FontFamily.GetEmHeight(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L302C9-L304C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L302C9-L304C25" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellAscent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L313C9-L315C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L313C9-L315C27" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellDescent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L324C9-L326C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L324C9-L326C28" }, { "DocsId": "M:System.Drawing.FontFamily.GetLineSpacing(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L336C9-L338C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L336C9-L338C28" }, { "DocsId": "P:System.Drawing.FontFamily.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L19C44-L19C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L19C44-L19C63" }, { "DocsId": "P:System.Drawing.FontFamily.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L224C27-L224C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L224C27-L224C69" }, { "DocsId": "P:System.Drawing.FontFamily.Families", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L250C44-L250C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L250C44-L250C85" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSansSerif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L255C50-L255C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L255C50-L255C115" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSerif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C46-L267C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C46-L267C76" }, { "DocsId": "P:System.Drawing.FontFamily.GenericMonospace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L272C50-L272C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L272C50-L272C84" } ], "DocsId": "T:System.Drawing.FontFamily", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.FontStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Regular", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Bold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Italic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Underline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Strikeout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" } ], "DocsId": "T:System.Drawing.FontStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L84C9-L84C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L84C9-L84C95" }, { "DocsId": "M:System.Drawing.Graphics.FromHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L91C9-L92C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L91C9-L92C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L102C9-L103C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L102C9-L103C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHwnd(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L110C53-L110C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L110C53-L110C75" }, { "DocsId": "M:System.Drawing.Graphics.FromHwndInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L120C9-L122C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L120C9-L122C45" }, { "DocsId": "M:System.Drawing.Graphics.FromImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L130C9-L139C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L130C9-L139C71" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L145C9-L147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L145C9-L147C6" }, { "DocsId": "M:System.Drawing.Graphics.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L154C9-L156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L154C9-L156C6" }, { "DocsId": "M:System.Drawing.Graphics.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L190C20-L190C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L190C20-L190C45" }, { "DocsId": "M:System.Drawing.Graphics.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L197C42-L197C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L197C42-L197C62" }, { "DocsId": "M:System.Drawing.Graphics.Windows#Win32#Graphics#Gdi#IHdcContext#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L488C33-L488C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L488C33-L488C46" }, { "DocsId": "M:System.Drawing.Graphics.GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L493C9-L497C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L493C9-L497C27" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L501C43-L501C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L501C43-L501C66" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L503C33-L503C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L503C33-L503C63" }, { "DocsId": "M:System.Drawing.Graphics.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L508C28-L508C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L508C28-L508C65" }, { "DocsId": "M:System.Drawing.Graphics.Flush(System.Drawing.Drawing2D.FlushIntention)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L514C9-L514C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L514C9-L514C97" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C40-L516C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C40-L516C81" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L520C9-L524C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L520C9-L524C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C44-L526C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C44-L526C88" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L528C79-L528C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L528C79-L528C117" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L530C45-L530C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L530C45-L530C89" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L533C9-L533C143" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L533C9-L533C143" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C47-L535C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C47-L535C91" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L539C9-L542C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L539C9-L542C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L546C9-L549C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L546C9-L549C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L551C50-L551C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L551C50-L551C81" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L554C9-L557C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L554C9-L557C55" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L561C9-L564C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L561C9-L564C6" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L567C9-L570C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L567C9-L570C53" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L574C9-L577C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L574C9-L577C6" }, { "DocsId": "M:System.Drawing.Graphics.ResetClip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C32-L579C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C32-L579C89" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C54-L581C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C54-L581C123" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C50-L583C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C50-L583C119" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L585C44-L585C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L585C44-L585C66" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L587C43-L587C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L587C43-L587C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C9-L593C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C9-L593C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C44-L596C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C44-L596C71" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L598C67-L598C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L598C67-L598C104" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L600C46-L600C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L600C46-L600C103" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C9-L606C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C9-L606C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L609C47-L609C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L609C47-L609C97" }, { "DocsId": "M:System.Drawing.Graphics.ResetTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L614C37-L614C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L614C37-L614C104" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L619C53-L619C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L619C53-L619C99" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L626C9-L629C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L626C9-L629C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L631C59-L631C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L631C59-L631C106" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L634C9-L634C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L634C9-L634C116" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L636C55-L636C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L636C55-L636C98" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L639C9-L639C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L639C9-L639C112" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L641C49-L641C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L641C49-L641C92" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L644C9-L644C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L644C9-L644C112" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L651C9-L661C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L651C9-L661C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L667C9-L667C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L667C9-L667C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L673C12-L673C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L673C12-L673C76" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L679C9-L679C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L679C9-L679C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L686C9-L694C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L686C9-L694C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L700C9-L700C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L700C9-L700C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L706C9-L706C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L706C9-L706C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L713C60-L713C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L713C60-L713C119" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L718C59-L718C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L718C59-L718C118" }, { "DocsId": "M:System.Drawing.Graphics.DrawRoundedRectangle(System.Drawing.Pen,System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L723C9-L723C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L723C9-L723C60" }, { "DocsId": "M:System.Drawing.Graphics.DrawRoundedRectangle(System.Drawing.Pen,System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L733C9-L736C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L733C9-L736C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L744C9-L747C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L744C9-L747C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L753C12-L753C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L753C12-L753C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L756C71-L756C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L756C71-L756C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L766C9-L774C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L766C9-L774C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L781C70-L781C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L781C70-L781C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L791C9-L799C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L791C9-L799C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L804C58-L804C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L804C58-L804C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L811C9-L814C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L811C9-L814C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C57-L819C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C57-L819C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L824C78-L824C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L824C78-L824C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L830C9-L830C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L830C9-L830C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L837C9-L840C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L837C9-L840C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L846C9-L846C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L846C9-L846C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L852C9-L852C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L852C9-L852C73" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L855C65-L855C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L855C65-L855C114" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L865C9-L873C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L865C9-L873C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L880C64-L880C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L880C64-L880C113" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L890C9-L898C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L890C9-L898C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L905C9-L912C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L905C9-L912C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L915C63-L915C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L915C63-L915C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L925C9-L933C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L925C9-L933C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L937C9-L937C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L937C9-L937C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L947C9-L959C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L947C9-L959C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L963C9-L963C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L963C9-L963C63" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C63" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L973C9-L973C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L973C9-L973C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L983C9-L997C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L983C9-L997C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1000C62-L1000C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1000C62-L1000C109" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1010C9-L1018C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1010C9-L1018C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1022C9-L1022C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1022C9-L1022C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1032C9-L1044C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1032C9-L1044C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1055C9-L1055C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1055C9-L1055C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1065C9-L1079C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1065C9-L1079C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1083C9-L1083C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1083C9-L1083C62" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1093C9-L1104C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1093C9-L1104C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1114C9-L1114C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1114C9-L1114C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1124C9-L1136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1124C9-L1136C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1139C68-L1139C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1139C68-L1139C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1149C9-L1160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1149C9-L1160C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1165C9-L1165C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1165C9-L1165C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1175C9-L1187C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1175C9-L1187C6" }, { "DocsId": "M:System.Drawing.Graphics.Clear(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C39-L1192C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C39-L1192C122" }, { "DocsId": "M:System.Drawing.Graphics.FillRoundedRectangle(System.Drawing.Brush,System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1197C9-L1197C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1197C9-L1197C62" }, { "DocsId": "M:System.Drawing.Graphics.FillRoundedRectangle(System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1207C9-L1210C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1207C9-L1210C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1216C64-L1216C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1216C64-L1216C125" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1223C9-L1231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1223C9-L1231C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C63-L1236C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C63-L1236C131" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1241C84-L1241C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1241C84-L1241C132" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1250C9-L1252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1250C9-L1252C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1262C9-L1270C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1262C9-L1270C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1274C9-L1274C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1274C9-L1274C62" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1284C9-L1292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1284C9-L1292C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1295C69-L1295C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1295C69-L1295C115" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C81-L1299C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C81-L1299C127" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1304C9-L1304C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1304C9-L1304C70" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1314C9-L1326C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1314C9-L1326C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1329C61-L1329C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1329C61-L1329C107" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1333C80-L1333C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1333C80-L1333C126" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1343C9-L1343C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1343C9-L1343C70" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1353C9-L1365C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1353C9-L1365C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1370C62-L1370C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1370C62-L1370C121" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1377C9-L1385C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1377C9-L1385C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C61-L1390C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C61-L1390C127" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1395C82-L1395C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1395C82-L1395C128" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1401C9-L1401C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1401C9-L1401C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1419C9-L1419C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1419C9-L1419C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1426C9-L1436C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1426C9-L1436C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1442C12-L1442C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1442C12-L1442C78" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1446C9-L1446C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1446C9-L1446C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1456C9-L1467C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1456C9-L1467C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1471C9-L1471C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1471C9-L1471C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1476C9-L1476C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1476C9-L1476C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1487C9-L1487C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1487C9-L1487C83" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1497C9-L1510C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1497C9-L1510C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1514C9-L1514C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1514C9-L1514C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1524C9-L1535C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1524C9-L1535C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1539C9-L1539C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1539C9-L1539C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1544C9-L1544C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1544C9-L1544C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1550C9-L1550C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1550C9-L1550C83" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1560C9-L1573C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1560C9-L1573C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1588C9-L1588C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1588C9-L1588C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1593C9-L1593C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1593C9-L1593C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1608C9-L1608C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1608C9-L1608C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1613C9-L1613C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1613C9-L1613C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1633C9-L1633C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1633C9-L1633C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1638C9-L1638C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1638C9-L1638C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1657C9-L1657C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1657C9-L1657C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1662C9-L1662C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1662C9-L1662C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1686C9-L1686C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1686C9-L1686C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1700C9-L1700C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1700C9-L1700C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1726C9-L1726C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1726C9-L1726C68" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1731C9-L1731C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1731C9-L1731C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1771C9-L1771C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1771C9-L1771C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1782C9-L1782C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1782C9-L1782C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureStringInternal(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1793C9-L1823C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1793C9-L1823C65" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C12-L1829C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C12-L1829C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1834C12-L1834C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1834C12-L1834C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1838C78-L1838C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1838C78-L1838C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1842C89-L1842C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1842C89-L1842C132" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1853C9-L1853C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1853C9-L1853C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1858C9-L1858C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1858C9-L1858C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1885C60-L1885C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1885C60-L1885C102" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1889C71-L1889C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1889C71-L1889C113" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1894C71-L1894C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1894C71-L1894C122" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1899C9-L1899C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1899C9-L1899C60" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1907C9-L1907C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1907C9-L1907C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1912C9-L1912C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1912C9-L1912C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.String,System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1937C9-L1937C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1937C9-L1937C77" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1942C9-L1942C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1942C9-L1942C77" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1996C57-L1996C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1996C57-L1996C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2000C9-L2004C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2000C9-L2004C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2006C60-L2006C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2006C60-L2006C117" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2010C9-L2014C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2010C9-L2014C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2016C56-L2016C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2016C56-L2016C97" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2018C57-L2018C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2018C57-L2018C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2020C59-L2020C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2020C59-L2020C123" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2022C80-L2022C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2022C80-L2022C124" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2024C64-L2024C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2024C64-L2024C98" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2026C65-L2026C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2026C65-L2026C87" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2028C67-L2028C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2028C67-L2028C99" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2030C88-L2030C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2030C88-L2030C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaledAndClipped(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2034C9-L2042C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2034C9-L2042C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2057C9-L2070C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2057C9-L2070C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2074C9-L2087C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2074C9-L2087C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2091C9-L2102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2091C9-L2102C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C64" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2123C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2123C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2126C12-L2126C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2126C12-L2126C100" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2130C9-L2152C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2130C9-L2152C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2155C9-L2155C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2155C9-L2155C75" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2164C9-L2164C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2164C9-L2164C79" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2175C9-L2199C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2175C9-L2199C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2202C9-L2202C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2202C9-L2202C70" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2209C40-L2209C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2209C40-L2209C106" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2217C38-L2217C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2217C38-L2217C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2228C9-L2253C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2228C9-L2253C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C34-L2262C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C34-L2262C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2272C41-L2272C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2272C41-L2272C127" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2283C38-L2283C141" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2283C38-L2283C141" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2297C9-L2313C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2297C9-L2313C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C34-L2322C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C34-L2322C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2332C40-L2332C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2332C40-L2332C132" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2343C38-L2343C147" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2343C38-L2343C147" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2355C33-L2355C144" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2355C33-L2355C144" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2360C62-L2360C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2360C62-L2360C103" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2363C63-L2363C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2363C63-L2363C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2373C9-L2381C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2373C9-L2381C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2387C9-L2387C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2387C9-L2387C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2392C60-L2392C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2392C60-L2392C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2401C9-L2410C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2401C9-L2410C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2420C9-L2428C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2420C9-L2428C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2434C9-L2434C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2434C9-L2434C126" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2440C9-L2440C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2440C9-L2440C117" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C146" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C146" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2456C9-L2456C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2456C9-L2456C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C9-L2459C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C9-L2459C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2468C9-L2468C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2468C9-L2468C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2471C9-L2471C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2471C9-L2471C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2474C9-L2474C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2474C9-L2474C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C101" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2483C9-L2483C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2483C9-L2483C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2486C9-L2486C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2486C9-L2486C78" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2493C44-L2493C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2493C44-L2493C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2501C33-L2501C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2501C33-L2501C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2508C44-L2508C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2508C44-L2508C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2516C33-L2516C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2516C33-L2516C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2523C44-L2523C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2523C44-L2523C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2531C33-L2531C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2531C33-L2531C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2538C44-L2538C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2538C44-L2538C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2546C33-L2546C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2546C33-L2546C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2553C44-L2553C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2553C44-L2553C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2561C33-L2561C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2561C33-L2561C120" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2568C44-L2568C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2568C44-L2568C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2576C33-L2576C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2576C33-L2576C120" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2587C9-L2589C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2587C9-L2589C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2599C16-L2608C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2599C16-L2608C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2613C9-L2615C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2613C9-L2615C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2625C16-L2634C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2625C16-L2634C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2729C17-L2769C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2729C17-L2769C6" }, { "DocsId": "M:System.Drawing.Graphics.GetNearestColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2773C9-L2775C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2773C9-L2775C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2783C9-L2786C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2783C9-L2786C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2790C9-L2790C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2790C9-L2790C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2800C9-L2811C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2800C9-L2811C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2821C64-L2821C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2821C64-L2821C113" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2831C9-L2843C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2831C9-L2843C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPath(System.Drawing.Brush,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2850C9-L2860C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2850C9-L2860C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRegion(System.Drawing.Brush,System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2867C9-L2877C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2867C9-L2877C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2881C9-L2894C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2881C9-L2894C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2904C9-L2917C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2904C9-L2917C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIconUnstretched(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2927C9-L2937C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2927C9-L2937C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2946C9-L2958C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2946C9-L2958C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2966C12-L2966C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2966C12-L2966C93" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2975C9-L2987C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2975C9-L2987C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2994C40-L2994C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2994C40-L2994C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3003C9-L3023C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3003C9-L3023C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3032C9-L3052C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3032C9-L3052C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3063C9-L3077C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3063C9-L3077C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3086C40-L3093C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3086C40-L3093C23" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3104C9-L3118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3104C9-L3118C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3127C40-L3127C139" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3127C40-L3127C139" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3138C9-L3160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3138C9-L3160C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3171C9-L3193C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3171C9-L3193C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3211C9-L3212C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3211C9-L3212C97" }, { "DocsId": "M:System.Drawing.Graphics.System#Drawing#IGraphicsContextInfo#GetHdc(System.Drawing.ApplyGraphicsProperties,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3289C9-L3352C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3289C9-L3352C33" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3363C9-L3366C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3363C9-L3366C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@,System.Drawing.Region@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3377C9-L3380C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3377C9-L3380C6" }, { "DocsId": "M:System.Drawing.Graphics.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3440C9-L3455C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3440C9-L3455C46" }, { "DocsId": "M:System.Drawing.Graphics.Restore(System.Drawing.Drawing2D.GraphicsState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3460C9-L3462C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3460C9-L3462C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3481C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3481C50" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3486C9-L3500C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3486C9-L3500C50" }, { "DocsId": "M:System.Drawing.Graphics.EndContainer(System.Drawing.Drawing2D.GraphicsContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3505C9-L3508C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3505C9-L3508C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3511C12-L3511C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3511C12-L3511C74" }, { "DocsId": "M:System.Drawing.Graphics.AddMetafileComment(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3515C9-L3520C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3515C9-L3520C6" }, { "DocsId": "M:System.Drawing.Graphics.GetHalftonePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3524C9-L3536C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3524C9-L3536C34" }, { "DocsId": "M:System.Drawing.Graphics.DrawCachedBitmap(System.Drawing.Imaging.CachedBitmap,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3601C9-L3609C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3601C9-L3609C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Imaging.Effects.Effect)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3616C27-L3616C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3616C27-L3616C126" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Imaging.Effects.Effect,System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3635C9-L3648C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3635C9-L3648C6" }, { "DocsId": "P:System.Drawing.Graphics.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L197C42-L197C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L197C42-L197C62" }, { "DocsId": "P:System.Drawing.Graphics.Clip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L203C13-L205C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L203C13-L205C27" }, { "DocsId": "P:System.Drawing.Graphics.ClipBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L215C13-L216C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L215C13-L216C25" }, { "DocsId": "P:System.Drawing.Graphics.CompositingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L228C13-L229C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L228C13-L229C52" }, { "DocsId": "P:System.Drawing.Graphics.CompositingQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L245C13-L246C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L245C13-L246C58" }, { "DocsId": "P:System.Drawing.Graphics.DpiX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L262C13-L263C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L262C13-L263C24" }, { "DocsId": "P:System.Drawing.Graphics.DpiY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L272C13-L273C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L272C13-L273C24" }, { "DocsId": "P:System.Drawing.Graphics.InterpolationMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L285C13-L286C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L285C13-L286C54" }, { "DocsId": "P:System.Drawing.Graphics.IsClipEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L302C13-L303C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L302C13-L303C28" }, { "DocsId": "P:System.Drawing.Graphics.IsVisibleClipEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L312C13-L313C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L312C13-L313C28" }, { "DocsId": "P:System.Drawing.Graphics.PageScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L322C13-L323C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L322C13-L323C26" }, { "DocsId": "P:System.Drawing.Graphics.PageUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L333C13-L334C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L333C13-L334C39" }, { "DocsId": "P:System.Drawing.Graphics.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L350C13-L351C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L350C13-L351C42" }, { "DocsId": "P:System.Drawing.Graphics.RenderingOrigin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L367C13-L368C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L367C13-L368C36" }, { "DocsId": "P:System.Drawing.Graphics.SmoothingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L378C13-L379C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L378C13-L379C50" }, { "DocsId": "P:System.Drawing.Graphics.TextContrast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L395C13-L396C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L395C13-L396C38" }, { "DocsId": "P:System.Drawing.Graphics.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L409C13-L410C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L409C13-L410C44" }, { "DocsId": "P:System.Drawing.Graphics.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L428C13-L430C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L428C13-L430C27" }, { "DocsId": "P:System.Drawing.Graphics.TransformElements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L452C13-L469C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L452C13-L469C10" }, { "DocsId": "P:System.Drawing.Graphics.VisibleClipBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3386C13-L3391C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3386C13-L3391C25" }, { "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.GraphicsUnit.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.World", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Display", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Pixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Point", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Inch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" } ], "DocsId": "T:System.Drawing.GraphicsUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Icon.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L55C36-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L55C36-L57C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L59C47-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L59C47-L61C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L63C59-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L63C59-L72C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L74C45-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L74C45-L76C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L78C57-L93C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L78C57-L93C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L95C47-L105C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L95C47-L105C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L107C34-L109C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L107C34-L109C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L111C45-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L111C45-L113C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L115C57-L122C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L115C57-L122C6" }, { "DocsId": "M:System.Drawing.Icon.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L135C9-L147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L135C9-L147C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractAssociatedIcon(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L149C67-L149C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L149C67-L149C101" }, { "DocsId": "M:System.Drawing.Icon.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C36-L187C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C36-L187C49" }, { "DocsId": "M:System.Drawing.Icon.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L236C30-L236C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L236C30-L236C69" }, { "DocsId": "M:System.Drawing.Icon.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L260C9-L266C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L260C9-L266C6" }, { "DocsId": "M:System.Drawing.Icon.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L391C16-L391C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L391C16-L391C25" }, { "DocsId": "M:System.Drawing.Icon.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L395C9-L398C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L395C9-L398C40" }, { "DocsId": "M:System.Drawing.Icon.ToBitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L613C9-L623C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L613C9-L623C6" }, { "DocsId": "M:System.Drawing.Icon.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L785C42-L785C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L785C42-L785C57" }, { "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L794C9-L810C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L794C9-L810C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L852C12-L854C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L852C12-L854C64" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L863C12-L863C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L863C12-L863C51" }, { "DocsId": "P:System.Drawing.Icon.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L185C29-L185C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L185C29-L185C111" }, { "DocsId": "P:System.Drawing.Icon.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C36-L187C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C36-L187C49" }, { "DocsId": "P:System.Drawing.Icon.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L190C26-L190C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L190C26-L190C37" }, { "DocsId": "P:System.Drawing.Icon.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L196C13-L229C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L196C13-L229C30" }, { "DocsId": "P:System.Drawing.Icon.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L234C25-L234C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L234C25-L234C35" } ], "DocsId": "T:System.Drawing.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Icon.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IconConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" }, { "DocsId": "M:System.Drawing.IconConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" }, { "DocsId": "M:System.Drawing.IconConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" } ], "DocsId": "T:System.Drawing.IconConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IDeviceContext.GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "DocsId": "M:System.Drawing.IDeviceContext.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" } ], "DocsId": "T:System.Drawing.IDeviceContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C39-L35C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C39-L35C57" }, { "DocsId": "M:System.Drawing.Image.System#IO#IRawData#get_Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "M:System.Drawing.Image.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L76C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L76C9-L79C6" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L84C54-L84C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L84C54-L84C79" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L88C9-L118C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L88C9-L118C20" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L124C54-L124C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L124C54-L124C107" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L127C9-L127C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L127C9-L127C61" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L141C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L141C20" }, { "DocsId": "M:System.Drawing.Image.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L185C9-L187C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L185C9-L187C6" }, { "DocsId": "M:System.Drawing.Image.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L192C17-L192C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L192C17-L192C42" }, { "DocsId": "M:System.Drawing.Image.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L200C9-L203C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L200C9-L203C46" }, { "DocsId": "M:System.Drawing.Image.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L208C9-L216C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L208C9-L216C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L221C42-L221C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L221C42-L221C67" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L228C9-L237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L228C9-L237C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L243C12-L243C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L243C12-L243C56" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L295C9-L297C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L295C9-L297C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L304C9-L329C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L304C9-L329C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L336C9-L358C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L336C9-L358C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Image,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L365C9-L391C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L365C9-L391C6" }, { "DocsId": "M:System.Drawing.Image.GetBounds(System.Drawing.GraphicsUnit@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L585C9-L587C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L585C9-L587C23" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImage(System.Int32,System.Int32,System.Drawing.Image.GetThumbnailImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L634C9-L643C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L634C9-L643C46" }, { "DocsId": "M:System.Drawing.Image.GetFrameCount(System.Drawing.Imaging.FrameDimension)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L664C9-L668C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L664C9-L668C27" }, { "DocsId": "M:System.Drawing.Image.GetPropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L677C9-L692C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L677C9-L692C6" }, { "DocsId": "M:System.Drawing.Image.SelectActiveFrame(System.Drawing.Imaging.FrameDimension,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L699C9-L702C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L699C9-L702C18" }, { "DocsId": "M:System.Drawing.Image.SetPropertyItem(System.Drawing.Imaging.PropertyItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L710C16-L723C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L710C16-L723C6" }, { "DocsId": "M:System.Drawing.Image.RotateFlip(System.Drawing.RotateFlipType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L727C9-L729C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L727C9-L729C6" }, { "DocsId": "M:System.Drawing.Image.RemovePropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L736C9-L738C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L736C9-L738C6" }, { "DocsId": "M:System.Drawing.Image.GetEncoderParameterList(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L748C9-L769C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L748C9-L769C6" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L774C57-L774C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L774C57-L774C90" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L782C9-L783C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L782C9-L783C35" }, { "DocsId": "M:System.Drawing.Image.IsExtendedPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L789C69-L789C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L789C69-L789C105" }, { "DocsId": "M:System.Drawing.Image.IsCanonicalPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L803C9-L803C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L803C9-L803C54" }, { "DocsId": "M:System.Drawing.Image.GetPixelFormatSize(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L847C65-L847C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L847C65-L847C90" }, { "DocsId": "M:System.Drawing.Image.IsAlphaPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L852C66-L852C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L852C66-L852C99" }, { "DocsId": "P:System.Drawing.Image.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C39-L35C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C39-L35C57" }, { "DocsId": "P:System.Drawing.Image.System#IO#IRawData#Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "P:System.Drawing.Image.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L50C16-L50C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L50C16-L50C25" }, { "DocsId": "P:System.Drawing.Image.PhysicalDimension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L412C13-L414C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L412C13-L414C45" }, { "DocsId": "P:System.Drawing.Image.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L421C25-L421C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L421C25-L421C43" }, { "DocsId": "P:System.Drawing.Image.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L434C13-L436C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L434C13-L436C31" }, { "DocsId": "P:System.Drawing.Image.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L451C13-L453C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L451C13-L453C32" }, { "DocsId": "P:System.Drawing.Image.HorizontalResolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L465C13-L467C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L465C13-L467C28" }, { "DocsId": "P:System.Drawing.Image.VerticalResolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L479C13-L481C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L479C13-L481C28" }, { "DocsId": "P:System.Drawing.Image.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L494C13-L496C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L494C13-L496C31" }, { "DocsId": "P:System.Drawing.Image.RawFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L507C13-L510C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L507C13-L510C42" }, { "DocsId": "P:System.Drawing.Image.PixelFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L517C39-L517C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L517C39-L517C73" }, { "DocsId": "P:System.Drawing.Image.PropertyIdList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L528C13-L541C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L528C13-L541C27" }, { "DocsId": "P:System.Drawing.Image.PropertyItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L554C13-L576C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L554C13-L576C10" }, { "DocsId": "P:System.Drawing.Image.Palette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L602C13-L611C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L602C13-L611C10" }, { "DocsId": "P:System.Drawing.Image.FrameDimensionsList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L825C13-L840C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs#L825C13-L840C26" }, { "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.Animate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.CanAnimate(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.StopAnimate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" } ], "DocsId": "T:System.Drawing.ImageAnimator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" }, { "DocsId": "M:System.Drawing.ImageConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L37C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L37C62" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L43C9-L70C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L43C9-L70C6" }, { "DocsId": "M:System.Drawing.ImageConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L75C9-L75C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L75C9-L75C72" }, { "DocsId": "M:System.Drawing.ImageConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L78C85-L78C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L78C85-L78C89" }, { "DocsId": "M:System.Drawing.ImageConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" } ], "DocsId": "T:System.Drawing.ImageConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" } ], "DocsId": "T:System.Drawing.ImageFormatConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" }, { "DocsId": "M:System.Drawing.Pen.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" }, { "DocsId": "M:System.Drawing.Pen.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Pen.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L130C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L130C40" }, { "DocsId": "M:System.Drawing.Pen.SetLineCap(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.DashCap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" }, { "DocsId": "M:System.Drawing.Pen.ResetTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" }, { "DocsId": "M:System.Drawing.Pen.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" }, { "DocsId": "P:System.Drawing.Pen.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" }, { "DocsId": "P:System.Drawing.Pen.StartCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" }, { "DocsId": "P:System.Drawing.Pen.EndCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" }, { "DocsId": "P:System.Drawing.Pen.CustomStartCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" }, { "DocsId": "P:System.Drawing.Pen.CustomEndCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" }, { "DocsId": "P:System.Drawing.Pen.DashCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" }, { "DocsId": "P:System.Drawing.Pen.LineJoin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" }, { "DocsId": "P:System.Drawing.Pen.MiterLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" }, { "DocsId": "P:System.Drawing.Pen.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" }, { "DocsId": "P:System.Drawing.Pen.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" }, { "DocsId": "P:System.Drawing.Pen.PenType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" }, { "DocsId": "P:System.Drawing.Pen.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" }, { "DocsId": "P:System.Drawing.Pen.Brush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" }, { "DocsId": "P:System.Drawing.Pen.DashStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" }, { "DocsId": "P:System.Drawing.Pen.DashOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" }, { "DocsId": "P:System.Drawing.Pen.DashPattern", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" }, { "DocsId": "P:System.Drawing.Pen.CompoundArray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" } ], "DocsId": "T:System.Drawing.Pen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pen.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Pens.Transparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" }, { "DocsId": "P:System.Drawing.Pens.AliceBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" }, { "DocsId": "P:System.Drawing.Pens.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" }, { "DocsId": "P:System.Drawing.Pens.Aqua", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" }, { "DocsId": "P:System.Drawing.Pens.Aquamarine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" }, { "DocsId": "P:System.Drawing.Pens.Azure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" }, { "DocsId": "P:System.Drawing.Pens.Beige", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" }, { "DocsId": "P:System.Drawing.Pens.Bisque", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" }, { "DocsId": "P:System.Drawing.Pens.Black", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" }, { "DocsId": "P:System.Drawing.Pens.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" }, { "DocsId": "P:System.Drawing.Pens.Blue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" }, { "DocsId": "P:System.Drawing.Pens.BlueViolet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" }, { "DocsId": "P:System.Drawing.Pens.Brown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" }, { "DocsId": "P:System.Drawing.Pens.BurlyWood", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" }, { "DocsId": "P:System.Drawing.Pens.CadetBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" }, { "DocsId": "P:System.Drawing.Pens.Chartreuse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" }, { "DocsId": "P:System.Drawing.Pens.Chocolate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" }, { "DocsId": "P:System.Drawing.Pens.Coral", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" }, { "DocsId": "P:System.Drawing.Pens.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" }, { "DocsId": "P:System.Drawing.Pens.Cornsilk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" }, { "DocsId": "P:System.Drawing.Pens.Crimson", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" }, { "DocsId": "P:System.Drawing.Pens.Cyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" }, { "DocsId": "P:System.Drawing.Pens.DarkBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" }, { "DocsId": "P:System.Drawing.Pens.DarkCyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" }, { "DocsId": "P:System.Drawing.Pens.DarkGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" }, { "DocsId": "P:System.Drawing.Pens.DarkKhaki", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" }, { "DocsId": "P:System.Drawing.Pens.DarkMagenta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" }, { "DocsId": "P:System.Drawing.Pens.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" }, { "DocsId": "P:System.Drawing.Pens.DarkOrange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" }, { "DocsId": "P:System.Drawing.Pens.DarkOrchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" }, { "DocsId": "P:System.Drawing.Pens.DarkRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" }, { "DocsId": "P:System.Drawing.Pens.DarkSalmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" }, { "DocsId": "P:System.Drawing.Pens.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" }, { "DocsId": "P:System.Drawing.Pens.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" }, { "DocsId": "P:System.Drawing.Pens.DarkViolet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" }, { "DocsId": "P:System.Drawing.Pens.DeepPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" }, { "DocsId": "P:System.Drawing.Pens.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" }, { "DocsId": "P:System.Drawing.Pens.DimGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" }, { "DocsId": "P:System.Drawing.Pens.DodgerBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" }, { "DocsId": "P:System.Drawing.Pens.Firebrick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" }, { "DocsId": "P:System.Drawing.Pens.FloralWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" }, { "DocsId": "P:System.Drawing.Pens.ForestGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" }, { "DocsId": "P:System.Drawing.Pens.Fuchsia", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" }, { "DocsId": "P:System.Drawing.Pens.Gainsboro", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" }, { "DocsId": "P:System.Drawing.Pens.GhostWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" }, { "DocsId": "P:System.Drawing.Pens.Gold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" }, { "DocsId": "P:System.Drawing.Pens.Goldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" }, { "DocsId": "P:System.Drawing.Pens.Gray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" }, { "DocsId": "P:System.Drawing.Pens.Green", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" }, { "DocsId": "P:System.Drawing.Pens.GreenYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" }, { "DocsId": "P:System.Drawing.Pens.Honeydew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" }, { "DocsId": "P:System.Drawing.Pens.HotPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" }, { "DocsId": "P:System.Drawing.Pens.IndianRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" }, { "DocsId": "P:System.Drawing.Pens.Indigo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" }, { "DocsId": "P:System.Drawing.Pens.Ivory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" }, { "DocsId": "P:System.Drawing.Pens.Khaki", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" }, { "DocsId": "P:System.Drawing.Pens.Lavender", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" }, { "DocsId": "P:System.Drawing.Pens.LavenderBlush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" }, { "DocsId": "P:System.Drawing.Pens.LawnGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" }, { "DocsId": "P:System.Drawing.Pens.LemonChiffon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" }, { "DocsId": "P:System.Drawing.Pens.LightBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" }, { "DocsId": "P:System.Drawing.Pens.LightCoral", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" }, { "DocsId": "P:System.Drawing.Pens.LightCyan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" }, { "DocsId": "P:System.Drawing.Pens.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" }, { "DocsId": "P:System.Drawing.Pens.LightGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" }, { "DocsId": "P:System.Drawing.Pens.LightGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" }, { "DocsId": "P:System.Drawing.Pens.LightPink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" }, { "DocsId": "P:System.Drawing.Pens.LightSalmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" }, { "DocsId": "P:System.Drawing.Pens.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" }, { "DocsId": "P:System.Drawing.Pens.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" }, { "DocsId": "P:System.Drawing.Pens.LightSlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" }, { "DocsId": "P:System.Drawing.Pens.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" }, { "DocsId": "P:System.Drawing.Pens.LightYellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" }, { "DocsId": "P:System.Drawing.Pens.Lime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" }, { "DocsId": "P:System.Drawing.Pens.LimeGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" }, { "DocsId": "P:System.Drawing.Pens.Linen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" }, { "DocsId": "P:System.Drawing.Pens.Magenta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" }, { "DocsId": "P:System.Drawing.Pens.Maroon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" }, { "DocsId": "P:System.Drawing.Pens.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" }, { "DocsId": "P:System.Drawing.Pens.MediumBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" }, { "DocsId": "P:System.Drawing.Pens.MediumOrchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" }, { "DocsId": "P:System.Drawing.Pens.MediumPurple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" }, { "DocsId": "P:System.Drawing.Pens.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" }, { "DocsId": "P:System.Drawing.Pens.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" }, { "DocsId": "P:System.Drawing.Pens.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" }, { "DocsId": "P:System.Drawing.Pens.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" }, { "DocsId": "P:System.Drawing.Pens.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" }, { "DocsId": "P:System.Drawing.Pens.MidnightBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" }, { "DocsId": "P:System.Drawing.Pens.MintCream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" }, { "DocsId": "P:System.Drawing.Pens.MistyRose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" }, { "DocsId": "P:System.Drawing.Pens.Moccasin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" }, { "DocsId": "P:System.Drawing.Pens.NavajoWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" }, { "DocsId": "P:System.Drawing.Pens.Navy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" }, { "DocsId": "P:System.Drawing.Pens.OldLace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" }, { "DocsId": "P:System.Drawing.Pens.Olive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" }, { "DocsId": "P:System.Drawing.Pens.OliveDrab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" }, { "DocsId": "P:System.Drawing.Pens.Orange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" }, { "DocsId": "P:System.Drawing.Pens.OrangeRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" }, { "DocsId": "P:System.Drawing.Pens.Orchid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" }, { "DocsId": "P:System.Drawing.Pens.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" }, { "DocsId": "P:System.Drawing.Pens.PaleGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" }, { "DocsId": "P:System.Drawing.Pens.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" }, { "DocsId": "P:System.Drawing.Pens.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" }, { "DocsId": "P:System.Drawing.Pens.PapayaWhip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" }, { "DocsId": "P:System.Drawing.Pens.PeachPuff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" }, { "DocsId": "P:System.Drawing.Pens.Peru", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" }, { "DocsId": "P:System.Drawing.Pens.Pink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" }, { "DocsId": "P:System.Drawing.Pens.Plum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" }, { "DocsId": "P:System.Drawing.Pens.PowderBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" }, { "DocsId": "P:System.Drawing.Pens.Purple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" }, { "DocsId": "P:System.Drawing.Pens.Red", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" }, { "DocsId": "P:System.Drawing.Pens.RosyBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" }, { "DocsId": "P:System.Drawing.Pens.RoyalBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" }, { "DocsId": "P:System.Drawing.Pens.SaddleBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" }, { "DocsId": "P:System.Drawing.Pens.Salmon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" }, { "DocsId": "P:System.Drawing.Pens.SandyBrown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" }, { "DocsId": "P:System.Drawing.Pens.SeaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" }, { "DocsId": "P:System.Drawing.Pens.SeaShell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" }, { "DocsId": "P:System.Drawing.Pens.Sienna", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" }, { "DocsId": "P:System.Drawing.Pens.Silver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" }, { "DocsId": "P:System.Drawing.Pens.SkyBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" }, { "DocsId": "P:System.Drawing.Pens.SlateBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" }, { "DocsId": "P:System.Drawing.Pens.SlateGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" }, { "DocsId": "P:System.Drawing.Pens.Snow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" }, { "DocsId": "P:System.Drawing.Pens.SpringGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" }, { "DocsId": "P:System.Drawing.Pens.SteelBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" }, { "DocsId": "P:System.Drawing.Pens.Tan", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" }, { "DocsId": "P:System.Drawing.Pens.Teal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" }, { "DocsId": "P:System.Drawing.Pens.Thistle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" }, { "DocsId": "P:System.Drawing.Pens.Tomato", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" }, { "DocsId": "P:System.Drawing.Pens.Turquoise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" }, { "DocsId": "P:System.Drawing.Pens.Violet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" }, { "DocsId": "P:System.Drawing.Pens.Wheat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" }, { "DocsId": "P:System.Drawing.Pens.White", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" }, { "DocsId": "P:System.Drawing.Pens.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" }, { "DocsId": "P:System.Drawing.Pens.Yellow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" }, { "DocsId": "P:System.Drawing.Pens.YellowGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" } ], "DocsId": "T:System.Drawing.Pens", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Pens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Region.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C40-L12C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C40-L12C58" }, { "DocsId": "M:System.Drawing.Region.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.RegionData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" }, { "DocsId": "M:System.Drawing.Region.FromHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" }, { "DocsId": "M:System.Drawing.Region.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" }, { "DocsId": "M:System.Drawing.Region.ReleaseHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" }, { "DocsId": "M:System.Drawing.Region.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" }, { "DocsId": "M:System.Drawing.Region.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L103C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L103C27" }, { "DocsId": "M:System.Drawing.Region.MakeInfinite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C92" }, { "DocsId": "M:System.Drawing.Region.MakeEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C86" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C129" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C125" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C123" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C127" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C130" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C119" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" }, { "DocsId": "M:System.Drawing.Region.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" }, { "DocsId": "M:System.Drawing.Region.GetBounds(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" }, { "DocsId": "M:System.Drawing.Region.GetHrgn(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" }, { "DocsId": "M:System.Drawing.Region.IsEmpty(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" }, { "DocsId": "M:System.Drawing.Region.IsInfinite(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" }, { "DocsId": "M:System.Drawing.Region.Equals(System.Drawing.Region,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" }, { "DocsId": "M:System.Drawing.Region.GetRegionData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" }, { "DocsId": "M:System.Drawing.Region.GetRegionScans(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" }, { "DocsId": "P:System.Drawing.Region.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C40-L12C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C40-L12C58" } ], "DocsId": "T:System.Drawing.Region", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Region.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.RotateFlipType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipNone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipNone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipNone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipNone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipXY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipXY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipXY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipXY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" } ], "DocsId": "T:System.Drawing.RotateFlipType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SolidBrush.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" }, { "DocsId": "M:System.Drawing.SolidBrush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" }, { "DocsId": "M:System.Drawing.SolidBrush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" }, { "DocsId": "M:System.Drawing.SolidBrush.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" }, { "DocsId": "P:System.Drawing.SolidBrush.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" } ], "DocsId": "T:System.Drawing.SolidBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconId.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentNoAssociation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentWithAssociation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Application", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Folder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderOpen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive525", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive35", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRemovable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveFixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNetDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveCD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRam", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.World", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Server", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Printer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MyNetwork", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Find", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Share", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.SlowFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Recycler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.RecyclerFull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Lock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AutoList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterNet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ServerShare", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFax", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFaxNet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Stack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSVCD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.StuffedFolder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveUnknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRAM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDROM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudioPlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDRW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDBurn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBlankCD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDROM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AudioFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ImageFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.VideoFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MixedFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderFront", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Shield", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Key", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Software", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Rename", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaAudioDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaMovieDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedCD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBluRay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaVCD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusRW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DesktopPC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MobilePC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Users", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSmartMedia", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCompactFlash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCellPhone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCamera", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceVideoCamera", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceAudioPlayer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.NetworkConnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Internet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ZipFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Settings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveHDDVD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveBD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDROM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDRAM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDROM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDRE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ClusteredDrive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" } ], "DocsId": "T:System.Drawing.StockIconId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.SmallIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.ShellIconSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.LinkOverlay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" } ], "DocsId": "T:System.Drawing.StockIconOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Near", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Far", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" } ], "DocsId": "T:System.Drawing.StringAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringDigitSubstitute.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.User", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.National", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.Traditional", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" } ], "DocsId": "T:System.Drawing.StringDigitSubstitute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.StringFormat.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" }, { "DocsId": "M:System.Drawing.StringFormat.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" }, { "DocsId": "M:System.Drawing.StringFormat.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" }, { "DocsId": "M:System.Drawing.StringFormat.SetMeasurableCharacterRanges(System.Drawing.CharacterRange[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" }, { "DocsId": "M:System.Drawing.StringFormat.SetTabStops(System.Single,System.Single[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" }, { "DocsId": "M:System.Drawing.StringFormat.GetTabStops(System.Single@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" }, { "DocsId": "M:System.Drawing.StringFormat.SetDigitSubstitution(System.Int32,System.Drawing.StringDigitSubstitute)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L344C9-L350C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L344C9-L350C6" }, { "DocsId": "M:System.Drawing.StringFormat.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L395C24-L395C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L395C24-L395C49" }, { "DocsId": "M:System.Drawing.StringFormat.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L400C42-L400C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L400C42-L400C86" }, { "DocsId": "P:System.Drawing.StringFormat.FormatFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" }, { "DocsId": "P:System.Drawing.StringFormat.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" }, { "DocsId": "P:System.Drawing.StringFormat.LineAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" }, { "DocsId": "P:System.Drawing.StringFormat.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" }, { "DocsId": "P:System.Drawing.StringFormat.Trimming", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" }, { "DocsId": "P:System.Drawing.StringFormat.GenericDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L311C13-L312C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L311C13-L312C45" }, { "DocsId": "P:System.Drawing.StringFormat.GenericTypographic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L337C13-L338C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L337C13-L338C45" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L360C13-L366C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L360C13-L366C36" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L378C13-L380C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L378C13-L380C29" } ], "DocsId": "T:System.Drawing.StringFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringFormatFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionRightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.FitBlackBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DisplayFormatControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoFontFallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.MeasureTrailingSpaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoWrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.LineLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoClip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" } ], "DocsId": "T:System.Drawing.StringFormatFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringTrimming.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Character", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Word", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisCharacter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisWord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" } ], "DocsId": "T:System.Drawing.StringTrimming", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringUnit.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.World", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Display", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Pixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Point", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Inch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Em", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" } ], "DocsId": "T:System.Drawing.StringUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemBrushes.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.AppWorkspace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonFace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonShadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLightLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.Desktop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" }, { "DocsId": "P:System.Drawing.SystemBrushes.GrayText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Highlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.HighlightText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.HotTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" }, { "DocsId": "P:System.Drawing.SystemBrushes.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.InfoText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowFrame", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" } ], "DocsId": "T:System.Drawing.SystemBrushes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemFonts.GetFontByName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" }, { "DocsId": "P:System.Drawing.SystemFonts.CaptionFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" }, { "DocsId": "P:System.Drawing.SystemFonts.SmallCaptionFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" }, { "DocsId": "P:System.Drawing.SystemFonts.MenuFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" }, { "DocsId": "P:System.Drawing.SystemFonts.StatusFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" }, { "DocsId": "P:System.Drawing.SystemFonts.MessageBoxFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" }, { "DocsId": "P:System.Drawing.SystemFonts.IconTitleFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" }, { "DocsId": "P:System.Drawing.SystemFonts.DefaultFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" }, { "DocsId": "P:System.Drawing.SystemFonts.DialogFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" } ], "DocsId": "T:System.Drawing.SystemFonts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Drawing.StockIconOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L65C9-L78C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L65C9-L78C58" }, { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L91C9-L115C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L91C9-L115C53" }, { "DocsId": "P:System.Drawing.SystemIcons.Application", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Asterisk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" }, { "DocsId": "P:System.Drawing.SystemIcons.Exclamation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Hand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" }, { "DocsId": "P:System.Drawing.SystemIcons.Information", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Question", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" }, { "DocsId": "P:System.Drawing.SystemIcons.WinLogo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" }, { "DocsId": "P:System.Drawing.SystemIcons.Shield", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L40C34-L40C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L40C34-L40C94" } ], "DocsId": "T:System.Drawing.SystemIcons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemPens.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" }, { "DocsId": "P:System.Drawing.SystemPens.AppWorkspace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonFace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonShadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" }, { "DocsId": "P:System.Drawing.SystemPens.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" }, { "DocsId": "P:System.Drawing.SystemPens.ControlText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLightLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" }, { "DocsId": "P:System.Drawing.SystemPens.Desktop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" }, { "DocsId": "P:System.Drawing.SystemPens.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" }, { "DocsId": "P:System.Drawing.SystemPens.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" }, { "DocsId": "P:System.Drawing.SystemPens.GrayText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" }, { "DocsId": "P:System.Drawing.SystemPens.Highlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" }, { "DocsId": "P:System.Drawing.SystemPens.HighlightText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" }, { "DocsId": "P:System.Drawing.SystemPens.HotTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" }, { "DocsId": "P:System.Drawing.SystemPens.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" }, { "DocsId": "P:System.Drawing.SystemPens.InfoText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" }, { "DocsId": "P:System.Drawing.SystemPens.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" }, { "DocsId": "P:System.Drawing.SystemPens.MenuBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" }, { "DocsId": "P:System.Drawing.SystemPens.MenuHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" }, { "DocsId": "P:System.Drawing.SystemPens.MenuText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" }, { "DocsId": "P:System.Drawing.SystemPens.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" }, { "DocsId": "P:System.Drawing.SystemPens.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" }, { "DocsId": "P:System.Drawing.SystemPens.WindowFrame", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" }, { "DocsId": "P:System.Drawing.SystemPens.WindowText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" } ], "DocsId": "T:System.Drawing.SystemPens", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" }, { "DocsId": "M:System.Drawing.TextureBrush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" }, { "DocsId": "M:System.Drawing.TextureBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" }, { "DocsId": "P:System.Drawing.TextureBrush.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" }, { "DocsId": "P:System.Drawing.TextureBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" }, { "DocsId": "P:System.Drawing.TextureBrush.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" } ], "DocsId": "T:System.Drawing.TextureBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L61C9-L61C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L61C9-L61C76" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L63C42-L63C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L63C42-L63C63" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L65C54-L65C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L65C54-L65C81" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L69C9-L115C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L69C9-L115C25" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImageFromResource(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L220C9-L220C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L220C9-L220C64" }, { "DocsId": "F:System.Drawing.ToolboxBitmapAttribute.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" } ], "DocsId": "T:System.Drawing.ToolboxBitmapAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.FontCollection.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L12C48-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L12C48-L12C75" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L21C9-L23C6" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L25C55-L25C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L25C55-L25C83" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L64C26-L64C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L64C26-L64C51" }, { "DocsId": "P:System.Drawing.Text.FontCollection.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L12C48-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L12C48-L12C75" }, { "DocsId": "P:System.Drawing.Text.FontCollection.Families", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L35C13-L60C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L35C13-L60C29" } ], "DocsId": "T:System.Drawing.Text.FontCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Serif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.SansSerif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Monospace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" } ], "DocsId": "T:System.Drawing.Text.GenericFontFamilies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" } ], "DocsId": "T:System.Drawing.Text.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.InstalledFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L17C6" }, { "DocsId": "M:System.Drawing.Text.InstalledFontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L31C5-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L31C5-L31C6" } ], "DocsId": "T:System.Drawing.Text.InstalledFontCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L18C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L32C9-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L32C9-L44C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddFontFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L51C9-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L51C9-L66C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddMemoryFont(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L73C9-L75C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L73C9-L75C6" } ], "DocsId": "T:System.Drawing.Text.PrivateFontCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.TextRenderingHint.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SystemDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAliasGridFit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.ClearTypeGridFit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" } ], "DocsId": "T:System.Drawing.Text.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.StandardPrintController.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "DocsId": "P:System.Drawing.Printing.StandardPrintController.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" } ], "DocsId": "T:System.Drawing.Printing.StandardPrintController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.Duplex.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Simplex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" } ], "DocsId": "T:System.Drawing.Printing.Duplex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" } ], "DocsId": "T:System.Drawing.Printing.InvalidPrinterException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.Margins.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" }, { "DocsId": "M:System.Drawing.Printing.Margins.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" }, { "DocsId": "M:System.Drawing.Printing.Margins.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Equality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Inequality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" }, { "DocsId": "M:System.Drawing.Printing.Margins.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" }, { "DocsId": "P:System.Drawing.Printing.Margins.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" }, { "DocsId": "P:System.Drawing.Printing.Margins.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" }, { "DocsId": "P:System.Drawing.Printing.Margins.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" }, { "DocsId": "P:System.Drawing.Printing.Margins.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" } ], "DocsId": "T:System.Drawing.Printing.Margins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" } ], "DocsId": "T:System.Drawing.Printing.MarginsConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.CopyToHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L341C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L341C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L474C9-L496C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L474C9-L496C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L499C9-L499C182" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L499C9-L499C182" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Landscape", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Margins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrintableArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterResolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" } ], "DocsId": "T:System.Drawing.Printing.PageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperKind.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Letter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Legal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.CSheet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DSheet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ESheet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterSmall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Tabloid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Ledger", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Statement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Executive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Small", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Folio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Quarto", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x14", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard11x17", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Note", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number9Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number10Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number11Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number12Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number14Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DLEnvelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C5Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C3Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C4Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C6Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C65Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ItalyEnvelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.MonarchEnvelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PersonalEnvelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.USStandardFanfold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanStandardFanfold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanLegalFanfold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.IsoB4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard9x11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard15x11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.InviteEnvelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LegalExtra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.TabloidExtra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Extra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterTransverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Transverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtraTransverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.APlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.BPlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterPlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Plus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Transverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Transverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Extra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Extra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Extra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Transverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3ExtraTransverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4JisRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5JisRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcardRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcardRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Jis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6JisRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard12x11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16K", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32K", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBig", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16KRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBigRotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10Rotated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Kind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.PaperName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.RawKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" } ], "DocsId": "T:System.Drawing.Printing.PaperSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSource.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSource.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.Kind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.RawKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.SourceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" } ], "DocsId": "T:System.Drawing.Printing.PaperSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Upper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Lower", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Middle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Manual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Envelope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.ManualFeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.AutomaticFeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.TractorFeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.SmallFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeCapacity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Cassette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.FormSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperSourceKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPageInfo.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.PhysicalSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" } ], "DocsId": "T:System.Drawing.Printing.PreviewPageInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.GetPreviewPageInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L99C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L99C26" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L104C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L104C9-L107C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L111C9-L114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L111C9-L114C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" } ], "DocsId": "T:System.Drawing.Printing.PreviewPrintController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPrinter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintController.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" }, { "DocsId": "P:System.Drawing.Printing.PrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" } ], "DocsId": "T:System.Drawing.Printing.PrintController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintDocument.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnPrintPage(System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnQueryPageSettings(System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.Print", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.BeginPrint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.EndPrint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.PrintPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.QueryPageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DocumentName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.OriginAtMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrintController", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrinterSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Printing.PrintDocument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterResolution.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterResolution.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Kind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Medium", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Draft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolutionKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevnames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevnames(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.CanDuplex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Copies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Collate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Duplex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.FromPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.InstalledPrinters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsDefaultPrinter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsPlotter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsValid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.LandscapeAngle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumCopies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MinimumPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintToFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.SupportsColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.ToPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterUnit.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.Display", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.ThousandthsOfAnInch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.HundredthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.TenthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Double,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Int32,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Point,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Size,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Rectangle,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Printing.Margins,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnitConvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" }, { "DocsId": "P:System.Drawing.Printing.PrintEventArgs.PrintAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" } ], "DocsId": "T:System.Drawing.Printing.PrintEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.HasMorePages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.MarginBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintPageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintRange.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.AllPages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.SomePages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.Selection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.CurrentPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventArgs.#ctor(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" }, { "DocsId": "P:System.Drawing.Printing.QueryPageSettingsEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.Invoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfEscapement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfItalic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfUnderline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfStrikeOut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfCharSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOutPrecision", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfClipPrecision", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfPitchAndFamily", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "P:System.Drawing.Interop.LOGFONT.lfFaceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L38C37-L38C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L38C37-L38C111" }, { "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.BitmapData.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Stride", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.PixelFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Scan0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Reserved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" } ], "DocsId": "T:System.Drawing.Imaging.BitmapData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.#ctor(System.Drawing.Bitmap,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L43C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L43C5-L54C6" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C24-L74C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C24-L74C49" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L78C9-L80C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L78C9-L80C6" } ], "DocsId": "T:System.Drawing.Imaging.CachedBitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Bitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Brush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Pen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Any", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorAdjustType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelLast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorChannelFlag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMap.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.OldColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.NewColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" } ], "DocsId": "T:System.Drawing.Imaging.ColorMap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMapType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Brush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMapType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.Single[][])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L338C5-L346C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L338C5-L346C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix00", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix01", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix02", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix03", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix04", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix13", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix14", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix20", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix21", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix22", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix23", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix24", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix30", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix31", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix32", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix33", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix34", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix40", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix41", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix42", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix43", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix44", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L357C13-L369C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L357C13-L369C44" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.SkipGrays", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.AltGrays", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrixFlag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb32Mode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb64Mode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorPalette.#ctor(System.Drawing.Color[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L38C56-L40C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L38C56-L40C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorPalette.#ctor(System.Drawing.Imaging.PaletteType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L46C5-L51C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L46C5-L51C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorPalette.CreateOptimalPalette(System.Int32,System.Boolean,System.Drawing.Bitmap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L58C9-L58C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L58C9-L58C116" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L20C25-L20C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L20C25-L20C31" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Entries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L25C31-L25C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L25C31-L25C39" } ], "DocsId": "T:System.Drawing.Imaging.ColorPalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.DitherType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Solid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered4x4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered8x8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered16x16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Spiral4x4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Spiral8x8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.DualSpiral4x4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.DualSpiral8x8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.ErrorDiffusion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" } ], "DocsId": "T:System.Drawing.Imaging.DitherType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRecordBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetROP2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetRelAbs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextCharExtra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowOrg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowExt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportOrg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportExt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetWindowOrg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleWindowExt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetViewportOrg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleViewportExt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfLineTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfMoveTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfArc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEllipse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFloodFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRoundRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPatBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSaveDC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetCilpRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfTextOut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfBitBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolygon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEscape", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRestoreDC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFillRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFrameRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfInvertRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPaintRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectClipRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfChord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtTextOut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetDibToDev", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectPalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRealizePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfAnimatePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPalEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfResizePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibBitBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibStretchBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchDib", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDeleteObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePenIndirect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyLineTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowExtEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowOrgEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportExtEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportOrgEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBrushOrgEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEof", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPixelV", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetROP2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorAdjustment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfOffsetClipRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMoveToEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMetaRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleViewportExtEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleWindowExtEx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSaveDC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRestoreDC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfModifyWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAngleArc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEllipse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundArc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfChord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectPalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPaletteEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfResizePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRealizePalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfLineTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfArcTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetArcDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMiterLimit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBeginPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEndPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCloseFigure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokeAndFillPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFlattenPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfWidenPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectClipPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAbortPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved069", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGdiComment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFrameRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfInvertRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPaintRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtSelectClipRgn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBitBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMaskBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlgBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetDIBitsToDevice", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchDIBits", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutA", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolylineTo16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateMonoBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateDibPatternBrushPt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreatePen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutA", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteColorSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsBoundedRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPixelFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDrawEscape", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtEscape", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStartDoc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSmallTextOut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfForceUfiMapping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfNamedEscpae", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorCorrectPalette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileA", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAlphaBlend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfTransparentBlt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved117", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGradientFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLinkedUfis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorMatchToTargetW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpaceW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMax", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlusRecordBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndOfFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Comment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.GetDC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Object", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawRects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPolygon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillEllipse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawEllipse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawArc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillClosedCurve", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawClosedCurve", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawCurve", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawBeziers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImagePoints", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetRenderingOrigin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetAntiAliasMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextRenderingHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextContrast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetInterpolationMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPixelOffsetMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Restore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainerNoParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiplyWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.TranslateWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ScaleWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.RotateWorldTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPageTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetClip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.OffsetClip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawDriverString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Total", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Max", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Min", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfPlusRecordType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Encoder.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Compression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorDepth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ScanMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.RenderMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Quality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Transformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.LuminanceTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ChrominanceTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveFlag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ImageItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveAsCmyk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "P:System.Drawing.Imaging.Encoder.Guid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" } ], "DocsId": "T:System.Drawing.Imaging.Encoder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L61C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L61C37" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L223C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L223C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L225C5-L243C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L225C5-L243C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[],System.Int64[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L245C5-L263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L245C5-L263C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[],System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L265C5-L292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L265C5-L292C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L295C5-L318C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L295C5-L318C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Drawing.Imaging.EncoderParameterValueType,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L320C5-L344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L320C5-L344C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Encoder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.NumberOfValues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameters.Param", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeByte", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeAscii", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeShort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLong", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRational", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLongRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeUndefined", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRationalRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypePointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameterValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderValue.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeCMYK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeYCCK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionLZW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionRle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionNone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodInterlaced", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodNonInterlaced", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif87", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif89", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderProgressive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderNonProgressive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate90", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate180", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate270", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.MultiFrame", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.LastFrame", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionResolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.FrameDimension.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Guid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Time", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Resolution", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Page", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" } ], "DocsId": "T:System.Drawing.Imaging.FrameDimension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L84C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L84C36" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[],System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L335C69-L335C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L335C69-L335C112" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L338C93-L338C136" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L338C93-L338C136" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorAdjustType,System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L360C9-L379C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L360C9-L379C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorAdjustType,System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L385C9-L404C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L385C9-L404C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L431C74-L431C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L431C74-L431C115" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L434C98-L434C139" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L434C98-L434C139" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearBrushRemapTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C43-L437C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C43-L437C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C57-L439C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C57-L439C97" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L441C70-L441C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L441C70-L441C108" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L445C9-L452C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L445C9-L452C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(System.Drawing.Imaging.ColorPalette,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L456C9-L466C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L456C9-L466C6" } ], "DocsId": "T:System.Drawing.Imaging.ImageAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Encoder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Decoder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportBitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportVector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SeekableEncode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.BlockingDecode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Builtin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.User", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L41C9-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L41C9-L58C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L62C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L62C9-L79C6" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Clsid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatID", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.CodecName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.DllName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FilenameExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.MimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignaturePatterns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignatureMasks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Scalable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasTranslucent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.PartiallyScalable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceRgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceCmyk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceGray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcbcr", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealDpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealPixelSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Caching", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageFormat.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Guid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.MemoryBmp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Bmp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Emf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Wmf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Gif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Jpeg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Png", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Tiff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Exif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Heif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Webp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" } ], "DocsId": "T:System.Drawing.Imaging.ImageFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.WriteOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadWrite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.UserInputBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageLockMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Metafile.Windows#Win32#Foundation#IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C42-L24C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C42-L24C62" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L30C5-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L30C5-L43C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L49C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L49C5-L54C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L59C5-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L59C5-L69C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L76C9-L78C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L76C9-L78C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L84C9-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L84C9-L86C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L93C9-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L93C9-L95C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L102C9-L104C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L102C9-L104C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L111C9-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L119C5-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L119C5-L136C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L143C9-L145C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L143C9-L145C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L152C9-L154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L152C9-L154C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L160C9-L162C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L160C9-L162C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L168C9-L170C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L168C9-L170C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L176C9-L178C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L176C9-L178C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L184C9-L186C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L184C9-L186C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L192C9-L194C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L192C9-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L200C9-L202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L207C5-L232C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L207C5-L232C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L238C9-L240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L238C9-L240C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L246C9-L248C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L246C9-L248C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L254C9-L256C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L254C9-L256C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L262C9-L264C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L262C9-L264C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L270C9-L272C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L270C9-L272C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L278C9-L280C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L278C9-L280C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L286C9-L288C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L286C9-L288C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L294C9-L296C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L294C9-L296C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L302C9-L304C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L302C9-L304C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L318C9-L320C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L318C9-L320C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L326C9-L328C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L326C9-L328C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L335C9-L337C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L335C9-L337C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L342C5-L350C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L342C5-L350C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L355C5-L370C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L355C5-L370C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L376C5-L394C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L376C5-L394C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L399C5-L419C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L399C5-L419C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L424C5-L445C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L424C5-L445C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L450C5-L469C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L450C5-L469C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L474C5-L494C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L474C5-L494C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L499C5-L519C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L499C5-L519C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.PlayRecord(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L539C16-L550C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L539C16-L550C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L557C9-L563C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L557C9-L563C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L572C9-L576C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L572C9-L576C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L586C9-L594C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L586C9-L594C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L603C9-L613C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L603C9-L613C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L620C9-L626C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L620C9-L626C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetHenhmetafile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L633C40-L633C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L633C40-L633C62" }, { "DocsId": "P:System.Drawing.Imaging.Metafile.Windows#Win32#Foundation#IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C42-L24C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C42-L24C62" } ], "DocsId": "T:System.Drawing.Imaging.Metafile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Pixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Point", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Inch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.GdiCompatible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileFrameUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmfPlaceable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfOrEmfPlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusDual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsDisplay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.MetafileSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.WmfHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.EmfPlusHeaderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" } ], "DocsId": "T:System.Drawing.Imaging.MetafileHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Wmf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.WmfPlaceable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Emf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetaHeader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.HeaderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoObjects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.MaxRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" } ], "DocsId": "T:System.Drawing.Imaging.MetaHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.GrayScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.Halftone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedBlackAndWhite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone27", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone64", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone125", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone216", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone252", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone256", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PixelFormat.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Indexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Gdi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Alpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.PAlpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Extended", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Canonical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Undefined", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.DontCare", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format1bppIndexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format4bppIndexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format8bppIndexed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppGrayScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb555", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb565", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppArgb1555", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format24bppRgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppRgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppArgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppPArgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format48bppRgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppArgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppPArgb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Max", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" } ], "DocsId": "T:System.Drawing.Imaging.PixelFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" } ], "DocsId": "T:System.Drawing.Imaging.PlayRecordCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Len", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" } ], "DocsId": "T:System.Drawing.Imaging.PropertyItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.WmfPlaceableFileHeader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Key", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Hmf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Inch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Reserved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Checksum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Imaging.WmfPlaceableFileHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect.BlackSaturation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L34C35-L34C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L34C35-L34C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BlurEffect.#ctor(System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L28C56-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L28C56-L32C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlurEffect.Radius", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L38C28-L38C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L38C28-L38C46" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlurEffect.ExpandEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L45C31-L45C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L45C31-L45C53" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BlurEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BrightnessContrastEffect.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L32C79-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L32C79-L36C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BrightnessContrastEffect.BrightnessLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L43C35-L43C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L43C35-L43C76" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BrightnessContrastEffect.ContrastLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L50C33-L50C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L50C33-L50C72" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BrightnessContrastEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorBalanceEffect.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L40C80-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L40C80-L44C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.CyanRed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L52C27-L52C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L52C27-L52C54" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.MagentaGreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L60C32-L60C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L60C32-L60C64" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.YellowBlue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L68C30-L68C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L68C30-L68C60" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorBalanceEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.Effects.ColorCurveEffect.Channel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs#L31C36-L31C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs#L31C36-L31C69" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorLookupTableEffect.#ctor(System.Byte[],System.Byte[],System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L30C36-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L30C36-L32C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.ColorLookupTableEffect.#ctor(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L16C5-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L16C5-L56C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.BlueLookupTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L61C52-L61C71" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.GreenLookupTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L66C53-L66C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L66C53-L66C74" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.RedLookupTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L71C51-L71C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L71C51-L71C72" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.AlphaLookupTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L76C53-L76C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L76C53-L76C74" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorLookupTableEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorMatrixEffect.#ctor(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L25C52-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L25C52-L34C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorMatrixEffect.Matrix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L44C34-L44C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L44C34-L44C41" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorMatrixEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ContrastCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ContrastCurveEffect.Contrast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L31C28-L31C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L31C28-L31C39" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ContrastCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Red", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Green", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Blue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" } ], "DocsId": "T:System.Drawing.Imaging.Effects.CurveChannel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.DensityCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.DensityCurveEffect.Density", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L31C27-L31C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L31C27-L31C38" } ], "DocsId": "T:System.Drawing.Imaging.Effects.DensityCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L26C9-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L26C9-L28C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L42C18-L42C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L42C18-L42C43" }, { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L46C9-L51C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L46C9-L51C6" } ], "DocsId": "T:System.Drawing.Imaging.Effects.Effect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ExposureCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ExposureCurveEffect.Exposure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L31C28-L31C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L31C28-L31C39" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ExposureCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.GrayScaleEffect.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs#L16C32-L25C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs#L16C32-L25C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.GrayScaleEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.HighlightCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L24C11-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L24C11-L26C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.HighlightCurveEffect.Highlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L32C29-L32C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L32C29-L32C40" } ], "DocsId": "T:System.Drawing.Imaging.Effects.HighlightCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.InvertEffect.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs#L16C29-L25C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs#L16C29-L25C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.InvertEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.LevelsEffect.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L44C11-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L44C11-L54C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Highlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L59C29-L59C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L59C29-L59C52" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Midtone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L64C27-L64C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L64C27-L64C48" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Shadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L69C26-L69C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L69C26-L69C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.LevelsEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.MidtoneCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.MidtoneCurveEffect.Midtone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L33C27-L33C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L33C27-L33C38" } ], "DocsId": "T:System.Drawing.Imaging.Effects.MidtoneCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.SepiaEffect.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs#L16C28-L25C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs#L16C28-L25C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.SepiaEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ShadowCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ShadowCurveEffect.Shadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L33C26-L33C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L33C26-L33C37" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ShadowCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.SharpenEffect.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L31C56-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L31C56-L35C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.SharpenEffect.Radius", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L42C28-L42C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L42C28-L42C49" }, { "DocsId": "P:System.Drawing.Imaging.Effects.SharpenEffect.Amount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L48C28-L48C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L48C28-L48C49" } ], "DocsId": "T:System.Drawing.Imaging.Effects.SharpenEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.TintEffect.#ctor(System.Drawing.Color,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L27C50-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L27C50-L32C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.TintEffect.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L40C46-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L40C46-L54C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.TintEffect.Hue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L59C23-L59C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L59C23-L59C84" }, { "DocsId": "P:System.Drawing.Imaging.Effects.TintEffect.Amount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L66C26-L66C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L66C26-L66C44" } ], "DocsId": "T:System.Drawing.Imaging.Effects.TintEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.VividEffect.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs#L16C28-L25C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs#L16C28-L25C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.VividEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect.WhiteSaturation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L34C35-L34C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L34C35-L34C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.Drawing.Design.CategoryNameCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" }, { "DocsId": "P:System.Drawing.Design.CategoryNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" } ], "DocsId": "T:System.Drawing.Design.CategoryNameCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashCap.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Round", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Triangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" }, { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.MiddleInset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Filled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" } ], "DocsId": "T:System.Drawing.Drawing2D.AdjustableArrowCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Factors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Positions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.Blend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Colors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Positions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.ColorBlend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Replace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Intersect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Union", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Xor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Exclude", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Complement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CombineMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.GammaCorrected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.AssumeLinear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.World", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Page", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Device", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CoordinateSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L87C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L87C39" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.SetStrokeCaps(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.GetStrokeCaps(System.Drawing.Drawing2D.LineCap@,System.Drawing.Drawing2D.LineCap@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.StrokeJoin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseInset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.WidthScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" } ], "DocsId": "T:System.Drawing.Drawing2D.CustomLineCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Solid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDotDot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FillMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Alternate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Winding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FillMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Sync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FlushIntention", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.ReadOnlySpan{System.Drawing.PointF},System.ReadOnlySpan{System.Byte},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L37C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L37C5-L55C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.ReadOnlySpan{System.Drawing.Point},System.ReadOnlySpan{System.Byte},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L73C5-L91C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L73C5-L91C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L140C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L140C49" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.StartFigure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseFigure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseAllFigures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.SetMarkers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.ClearMarkers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetLastPoint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L334C9-L344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L334C9-L344C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L361C9-L371C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L361C9-L371C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L411C16-L416C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L411C16-L416C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L435C9-L443C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L435C9-L443C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L483C65-L483C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L483C65-L483C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L494C16-L504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L494C16-L504C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L531C57-L531C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L531C57-L531C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L542C16-L552C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L542C16-L552C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L562C71-L562C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L562C71-L562C99" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C16-L578C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C16-L578C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L592C70-L592C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L592C70-L592C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L603C16-L608C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L603C16-L608C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C16-L637C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C16-L637C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C60-L642C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C60-L642C105" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L652C16-L657C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L652C16-L657C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRoundedRectangle(System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L662C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L662C54" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRoundedRectangle(System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L671C9-L697C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L671C9-L697C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C55-L731C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C55-L731C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L741C16-L746C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L741C16-L746C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C54-L752C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C54-L752C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L762C16-L767C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L762C16-L767C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Point,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Rectangle,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L909C16-L922C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L909C16-L922C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetPathTypes(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L967C9-L976C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L967C9-L976C31" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetPathPoints(System.Span{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L1012C9-L1021C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L1012C9-L1021C31" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.FillMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PointCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathPoints", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L55C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L55C46" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Int32@,System.Int32@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextPathType(System.Byte@,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.HasCurve", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Rewind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Enumerate(System.Drawing.PointF[]@,System.Byte[]@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C12-L152C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C12-L152C86" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Enumerate(System.Span{System.Drawing.PointF},System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L162C9-L185C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L162C9-L185C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.CopyData(System.Drawing.PointF[]@,System.Byte[]@,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L199C12-L199C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L199C12-L199C107" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.CopyData(System.Span{System.Drawing.PointF},System.Span{System.Byte},System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L209C9-L234C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L209C9-L234C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.SubpathCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPathIterator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.HatchStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.ForegroundColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.BackgroundColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Cross", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalCross", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent05", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent20", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent25", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent30", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent40", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent50", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent60", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent70", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent75", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent80", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent90", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallConfetti", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeConfetti", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ZigZag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Wave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalBrick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.HorizontalBrick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Weave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Plaid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Divot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedDiamond", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Shingle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Trellis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Sphere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallCheckerBoard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeCheckerBoard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.OutlinedDiamond", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SolidDiamond", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Min", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Max", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bilinear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bicubic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.InterpolationMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.LinearColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.GammaCorrection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineCap.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Square", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Round", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Triangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.NoAnchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.SquareAnchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.RoundAnchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.DiamondAnchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.ArrowAnchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.AnchorMask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineCap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Miter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Bevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Round", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.MiterClipped", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineJoin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Numerics.Matrix3x2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.RectangleF,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.Rectangle,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L98C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L98C35" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Invert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L260C9-L262C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L260C9-L262C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L272C16-L281C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L272C16-L281C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L291C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L291C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L301C16-L310C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L301C16-L310C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L318C9-L320C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L318C9-L320C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L330C16-L339C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L330C16-L339C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.VectorTransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L342C62-L342C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L342C62-L342C83" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.VectorTransformPoints(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L346C74-L346C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L346C74-L346C95" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L352C9-L354C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L352C9-L354C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L364C16-L373C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L364C16-L373C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L399C9-L410C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L399C9-L410C22" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L413C42-L413C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L413C42-L413C60" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.Elements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.MatrixElements", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsInvertible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L380C13-L382C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L380C13-L382C31" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsIdentity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L391C13-L393C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L391C13-L393C29" } ], "DocsId": "T:System.Drawing.Drawing2D.Matrix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Prepend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.MatrixOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathData.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Points", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Types", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" } ], "DocsId": "T:System.Drawing.Drawing2D.PathData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L16C56-L16C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L16C56-L16C88" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L20C68-L20C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L20C68-L20C100" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L27C68-L27C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L27C68-L27C119" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.WrapMode,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L31C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L31C5-L54C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L57C55-L57C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L57C55-L57C87" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L65C60-L65C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L65C60-L65C92" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L68C67-L68C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L68C67-L68C118" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.WrapMode,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L72C5-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L72C5-L95C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L97C5-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L97C5-L103C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L116C9-L118C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L116C9-L118C68" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L245C51-L245C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L245C51-L245C87" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L249C9-L251C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L249C9-L251C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L253C57-L253C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L253C57-L253C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L257C9-L259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L257C9-L259C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L332C9-L334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L332C9-L334C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L336C53-L336C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L336C53-L336C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L340C9-L348C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L340C9-L348C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L350C59-L350C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L350C59-L350C106" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L354C9-L356C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L354C9-L356C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L358C55-L358C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L358C55-L358C98" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L362C9-L364C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L362C9-L364C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L366C49-L366C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L366C49-L366C92" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L370C9-L372C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L370C9-L372C6" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L126C13-L128C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L126C13-L128C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.SurroundColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L142C13-L152C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L142C13-L152C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterPoint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L176C13-L178C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L176C13-L178C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L192C13-L194C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L192C13-L194C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L204C13-L224C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L204C13-L224C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L267C13-L290C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L267C13-L290C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L316C13-L319C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L316C13-L319C27" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.FocusScales", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L380C13-L382C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L380C13-L382C47" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L396C13-L398C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L396C13-L398C25" } ], "DocsId": "T:System.Drawing.Drawing2D.PathGradientBrush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Line", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathTypeMask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.DashMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathMarker", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.CloseSubpath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PathPointType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Inset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Outset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.SolidColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.HatchFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.TextureFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.PathGradient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.LinearGradient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Half", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.QualityMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Drawing2D.RegionData.Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" } ], "DocsId": "T:System.Drawing.Drawing2D.RegionData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighQuality", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.AntiAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.SmoothingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Perspective", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Bilinear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WarpMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Tile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipXY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Clamp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WrapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L408C9-L411C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L408C9-L411C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L415C9-L415C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L415C9-L415C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C13-L418C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C13-L418C85" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L421C13-L421C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L421C13-L421C116" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L425C13-L433C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L425C13-L433C57" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C93-L437C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C93-L437C98" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L440C93-L440C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L440C93-L440C97" } ], "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L473C38-L473C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L473C38-L473C68" }, { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L478C13-L487C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L478C13-L487C27" } ], "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.Invoke(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.#ctor(System.Drawing.Printing.PaperSize[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.CopyTo(System.Drawing.Printing.PaperSize[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Add(System.Drawing.Printing.PaperSize)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.#ctor(System.Drawing.Printing.PaperSource[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.CopyTo(System.Drawing.Printing.PaperSource[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Add(System.Drawing.Printing.PaperSource)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.#ctor(System.Drawing.Printing.PrinterResolution[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.CopyTo(System.Drawing.Printing.PrinterResolution[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Add(System.Drawing.Printing.PrinterResolution)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C69" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer.FixedElementField", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Formats.Nrbf.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Formats.Nrbf.json index a8ec4c25c2c..c6e06f3c96e 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Formats.Nrbf.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Formats.Nrbf.json @@ -1,347 +1,347 @@ { "Assembly": "System.Formats.Nrbf", - "GUID": "52B8248D3E884DF2B6C5E1D414DC3215FFFFFFFF", + "GUID": "CB8E12F8D84C4F4CAC863A0CDFDE0F61FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Formats.Nrbf.ArrayRecord.GetArray(System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L74C9-L83C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L74C9-L83C79" }, { "DocsId": "P:System.Formats.Nrbf.ArrayRecord.Lengths", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs" }, { "DocsId": "P:System.Formats.Nrbf.ArrayRecord.Rank", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L37C24-L37C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L37C24-L37C38" }, { "DocsId": "P:System.Formats.Nrbf.ArrayRecord.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L46C49-L46C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs#L46C49-L46C61" } ], "DocsId": "T:System.Formats.Nrbf.ArrayRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ArrayRecord.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.ClassRecord.HasMember(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L51C49-L51C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L51C49-L51C94" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetClassRecord(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L60C62-L60C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L60C62-L60C96" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L63C52-L63C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L63C52-L63C81" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetBoolean(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L65C50-L65C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L65C50-L65C77" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetByte(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L67C47-L67C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L67C47-L67C74" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetSByte(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L69C49-L69C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L69C49-L69C77" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetInt16(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L71C49-L71C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L71C49-L71C77" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetUInt16(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L73C51-L73C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L73C51-L73C80" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetChar(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L75C47-L75C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L75C47-L75C74" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetInt32(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L77C47-L77C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L77C47-L77C73" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetUInt32(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L79C49-L79C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L79C49-L79C76" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetSingle(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L81C50-L81C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L81C50-L81C78" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetInt64(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L83C48-L83C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L83C48-L83C75" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetUInt64(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L85C50-L85C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L85C50-L85C78" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetDouble(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L87C51-L87C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L87C51-L87C80" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetDecimal(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L89C53-L89C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L89C53-L89C83" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetTimeSpan(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L91C55-L91C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L91C55-L91C86" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetDateTime(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L93C55-L93C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L93C55-L93C86" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetRawValue(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L103C54-L103C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L103C54-L103C83" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetArrayRecord(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L106C62-L106C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L106C62-L106C96" }, { "DocsId": "M:System.Formats.Nrbf.ClassRecord.GetSerializationRecord(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L118C12-L123C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L118C12-L123C122" }, { "DocsId": "P:System.Formats.Nrbf.ClassRecord.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L23C42-L23C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L23C42-L23C60" }, { "DocsId": "P:System.Formats.Nrbf.ClassRecord.MemberNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L29C47-L29C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L29C47-L29C73" }, { "DocsId": "P:System.Formats.Nrbf.ClassRecord.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L32C49-L32C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs#L32C49-L32C61" } ], "DocsId": "T:System.Formats.Nrbf.ClassRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/ClassRecord.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.NrbfDecoder.StartsWithPayloadHeader(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L42C12-L44C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L42C12-L44C129" }, { "DocsId": "M:System.Formats.Nrbf.NrbfDecoder.StartsWithPayloadHeader(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L58C9-L86C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L58C9-L86C23" }, { "DocsId": "M:System.Formats.Nrbf.NrbfDecoder.Decode(System.IO.Stream,System.Formats.Nrbf.PayloadOptions,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L115C12-L115C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L115C12-L115C54" }, { "DocsId": "M:System.Formats.Nrbf.NrbfDecoder.Decode(System.IO.Stream,System.Collections.Generic.IReadOnlyDictionary{System.Formats.Nrbf.SerializationRecordId,System.Formats.Nrbf.SerializationRecord}@,System.Formats.Nrbf.PayloadOptions,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L130C9-L141C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L130C9-L141C6" }, { "DocsId": "M:System.Formats.Nrbf.NrbfDecoder.DecodeClassRecord(System.IO.Stream,System.Formats.Nrbf.PayloadOptions,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L149C12-L149C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs#L149C12-L149C60" } ], "DocsId": "T:System.Formats.Nrbf.NrbfDecoder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/NrbfDecoder.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.PayloadOptions.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L16C5-L16C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L16C5-L16C32" }, { "DocsId": "P:System.Formats.Nrbf.PayloadOptions.TypeNameParseOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L21C57-L21C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L21C57-L21C61" }, { "DocsId": "P:System.Formats.Nrbf.PayloadOptions.UndoTruncatedTypeNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L41C42-L41C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs#L41C42-L41C46" } ], "DocsId": "T:System.Formats.Nrbf.PayloadOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PayloadOptions.cs" }, { "Members": [ { "DocsId": "P:System.Formats.Nrbf.PrimitiveTypeRecord.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecord.cs#L33C28-L33C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecord.cs#L33C28-L33C39" } ], "DocsId": "T:System.Formats.Nrbf.PrimitiveTypeRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecord.cs" }, { "Members": [ { "DocsId": "P:System.Formats.Nrbf.PrimitiveTypeRecord`1.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs#L34C26-L34C30" }, { "DocsId": "P:System.Formats.Nrbf.PrimitiveTypeRecord`1.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs#L37C42-L37C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs#L37C42-L37C117" } ], "DocsId": "T:System.Formats.Nrbf.PrimitiveTypeRecord`1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/PrimitiveTypeRecordOfT.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.SerializationRecord.TypeNameMatches(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs#L58C9-L60C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs#L58C9-L60C40" }, { "DocsId": "P:System.Formats.Nrbf.SerializationRecord.RecordType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" }, { "DocsId": "P:System.Formats.Nrbf.SerializationRecord.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" }, { "DocsId": "P:System.Formats.Nrbf.SerializationRecord.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" } ], "DocsId": "T:System.Formats.Nrbf.SerializationRecord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecord.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.SerializationRecordId.Equals(System.Formats.Nrbf.SerializationRecordId)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L55C56-L55C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L55C56-L55C72" }, { "DocsId": "M:System.Formats.Nrbf.SerializationRecordId.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L58C49-L58C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L58C49-L58C100" }, { "DocsId": "M:System.Formats.Nrbf.SerializationRecordId.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L61C42-L61C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs#L61C42-L61C63" } ], "DocsId": "T:System.Formats.Nrbf.SerializationRecordId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordId.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.SerializedStreamHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ClassWithId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.SystemClassWithMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ClassWithMembers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.SystemClassWithMembersAndTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ClassWithMembersAndTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.BinaryObjectString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.BinaryArray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.MemberPrimitiveTyped", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.MemberReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ObjectNull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.MessageEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.BinaryLibrary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ObjectNullMultiple256", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ObjectNullMultiple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ArraySinglePrimitive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ArraySingleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.ArraySingleString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.MethodCall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "DocsId": "F:System.Formats.Nrbf.SerializationRecordType.MethodReturn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" } ], "DocsId": "T:System.Formats.Nrbf.SerializationRecordType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SerializationRecordType.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Nrbf.SZArrayRecord`1.GetArray(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs" }, { "DocsId": "P:System.Formats.Nrbf.SZArrayRecord`1.Length", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs#L24C26-L24C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs#L24C26-L24C54" }, { "DocsId": "P:System.Formats.Nrbf.SZArrayRecord`1.Lengths", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs#L27C50-L27C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs#L27C50-L27C71" } ], "DocsId": "T:System.Formats.Nrbf.SZArrayRecord`1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Formats.Nrbf/src/System/Formats/Nrbf/SZArrayRecord.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.IO.Packaging.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.IO.Packaging.json index 49f8408eaa1..71f960f4d4b 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.IO.Packaging.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.IO.Packaging.json @@ -1,629 +1,629 @@ { "Assembly": "System.IO.Packaging", - "GUID": "CFD7CFED31BF43C3B716C969F9453428FFFFFFFF", + "GUID": "B955F9266B224AEC9A41B14D14D72448FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.IO.FileFormatException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" }, { "DocsId": "M:System.IO.FileFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" }, { "DocsId": "P:System.IO.FileFormatException.SourceUri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" } ], "DocsId": "T:System.IO.FileFormatException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.CompressionOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.NotCompressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Fast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.SuperFast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" } ], "DocsId": "T:System.IO.Packaging.CompressionOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.EncryptionOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.RightsManagement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" } ], "DocsId": "T:System.IO.Packaging.EncryptionOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.Package.#ctor(System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" }, { "DocsId": "M:System.IO.Packaging.Package.GetPart(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" }, { "DocsId": "M:System.IO.Packaging.Package.PartExists(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePart(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetParts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L387C13-L465C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L387C13-L465C36" }, { "DocsId": "M:System.IO.Packaging.Package.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L480C13-L512C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L480C13-L512C10" }, { "DocsId": "M:System.IO.Packaging.Package.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L524C13-L525C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L524C13-L525C10" }, { "DocsId": "M:System.IO.Packaging.Package.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L535C13-L557C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L535C13-L557C10" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L580C13-L580C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L580C13-L580C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L604C13-L608C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L604C13-L608C84" }, { "DocsId": "M:System.IO.Packaging.Package.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L623C13-L633C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L623C13-L633C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationships", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L646C13-L646C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L646C13-L646C49" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L664C13-L672C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L664C13-L672C61" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L690C13-L694C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L690C13-L694C45" }, { "DocsId": "M:System.IO.Packaging.Package.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L711C13-L711C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L711C13-L711C56" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartsCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L769C13-L786C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L769C13-L786C10" }, { "DocsId": "M:System.IO.Packaging.Package.FlushCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L857C13-L902C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L857C13-L902C28" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L918C13-L944C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L918C13-L944C28" }, { "DocsId": "P:System.IO.Packaging.Package.FileOpenAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" }, { "DocsId": "P:System.IO.Packaging.Package.PackageProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" } ], "DocsId": "T:System.IO.Packaging.Package", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L798C9-L121C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L798C9-L121C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetContentTypeCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L246C13-L246C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L246C13-L246C82" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L267C13-L268C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L267C13-L268C80" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L289C13-L290C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L289C13-L290C63" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L313C13-L345C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L313C13-L345C22" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L378C13-L378C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L378C13-L378C86" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L404C13-L408C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L404C13-L408C84" }, { "DocsId": "M:System.IO.Packaging.PackagePart.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L424C13-L434C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L424C13-L434C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationships", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L449C13-L449C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L449C13-L449C49" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L468C13-L476C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L468C13-L476C61" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L495C13-L499C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L495C13-L499C45" }, { "DocsId": "M:System.IO.Packaging.PackagePart.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L517C13-L517C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L517C13-L517C56" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Uri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L138C17-L139C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L138C17-L139C29" }, { "DocsId": "P:System.IO.Packaging.PackagePart.ContentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L162C17-L187C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L162C17-L187C48" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Package", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L203C17-L204C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L203C17-L204C35" }, { "DocsId": "P:System.IO.Packaging.PackagePart.CompressionOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L218C17-L219C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L218C17-L219C43" } ], "DocsId": "T:System.IO.Packaging.PackagePart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" } ], "DocsId": "T:System.IO.Packaging.PackagePartCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Title", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Subject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Creator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Keywords", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastModifiedBy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Revision", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastPrinted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Created", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Modified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Identifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Language", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" } ], "DocsId": "T:System.IO.Packaging.PackageProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "Members": [ { "DocsId": "P:System.IO.Packaging.PackageRelationship.SourceUri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetUri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.RelationshipType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Package", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" } ], "DocsId": "T:System.IO.Packaging.PackageRelationship", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L53C10" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.Select(System.IO.Packaging.Package)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L111C13-L157C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L111C13-L157C34" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SourceUri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L67C17-L67C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L67C17-L67C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectorType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L80C17-L80C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L80C17-L80C38" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectionCriteria", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L93C17-L93C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L93C17-L93C43" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelectorType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackUriHelper.CreatePartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L56C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L56C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ResolvePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L78C13-L91C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L78C13-L91C72" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelativeUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L104C13-L110C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L104C13-L110C65" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetNormalizedPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L122C13-L126C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L122C13-L126C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L142C13-L152C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L142C13-L152C109" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.IsRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L167C13-L171C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L167C13-L171C55" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L189C13-L220C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L189C13-L220C76" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetSourcePartUriFromRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L242C13-L279C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L242C13-L279C77" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPackageUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePackUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" }, { "DocsId": "F:System.IO.Packaging.PackUriHelper.UriSchemePack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" } ], "DocsId": "T:System.IO.Packaging.PackUriHelper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.TargetMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.Internal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.External", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" } ], "DocsId": "T:System.IO.Packaging.TargetMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackage.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L67C179" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L67C179" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L97C13-L97C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L97C13-L97C25" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L111C13-L149C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L111C13-L149C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartsCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L176C13-L249C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L176C13-L249C36" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.FlushCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L262C13-L263C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L262C13-L263C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L273C17-L291C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L273C17-L291C10" } ], "DocsId": "T:System.IO.Packaging.ZipPackage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L26C13-L48C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L26C13-L52C25" } ], "DocsId": "T:System.IO.Packaging.ZipPackagePart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Private.Windows.GdiPlus.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Private.Windows.GdiPlus.json index bcb89a5075c..270508cefbd 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Private.Windows.GdiPlus.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Private.Windows.GdiPlus.json @@ -1,12 +1,12 @@ { "Assembly": "System.Private.Windows.GdiPlus", - "GUID": "54531D44535E43BD9FA08324FA33E5A6FFFFFFFF", + "GUID": "76BCC21413244060928E2C11AE3C0562FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [], "DocsId": "T:System.Drawing.IIconExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Private.Windows.GdiPlus/System/Drawing/IIconExtensions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Private.Windows.GdiPlus/System/Drawing/IIconExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Resources.Extensions.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Resources.Extensions.json index 153e8916fb0..caed5a82257 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Resources.Extensions.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Resources.Extensions.json @@ -1,95 +1,95 @@ { "Assembly": "System.Resources.Extensions", - "GUID": "048E0DCE55004C7988B0BCE69232D17CFFFFFFFF", + "GUID": "0B6C479937394E3DB6C272EFF7BF9743FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L56C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L58C9-L75C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L58C9-L75C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L82C13-L92C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L82C13-L92C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L99C13-L117C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L99C13-L117C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L125C13-L133C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L125C13-L133C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L162C13-L172C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L162C13-L172C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L215C13-L216C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L215C13-L216C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L235C13-L236C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L235C13-L236C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Generate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L245C13-L416C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L245C13-L416C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L110C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L110C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddTypeConverterResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L121C13-L128C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L121C13-L128C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddBinaryFormattedResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L140C13-L155C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L140C13-L155C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddActivatorResource(System.String,System.IO.Stream,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L167C13-L177C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L167C13-L177C10" } ], "DocsId": "T:System.Resources.Extensions.PreserializedResourceWriter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" }, { "Members": [ { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L138C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L134C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L141C13-L142C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L150C13-L151C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L146C13-L147C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L233C13-L233C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L229C13-L229C36" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L238C13-L240C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L234C13-L236C49" } ], "DocsId": "T:System.Resources.Extensions.DeserializingResourceReader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Pkcs.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Pkcs.json index 5f62f993164..13e39560de4 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Pkcs.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Pkcs.json @@ -1,1703 +1,1703 @@ { "Assembly": "System.Security.Cryptography.Pkcs", - "GUID": "47949EDE4A7B4E92BBF51435C5132D0CFFFFFFFF", + "GUID": "8B5B2D281C8A498BB1D2DB646656A50BFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L22C15-L24C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedDataCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L26C9-L50C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L26C9-L50C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L56C27-L56C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L56C27-L56C41" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Values", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L58C50-L58C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L58C50-L58C54" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L21C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L26C9-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L26C9-L30C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L34C13-L36C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L34C13-L36C125" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L41C13-L75C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L41C13-L75C35" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Remove(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L89C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L89C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L125C13-L125C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L125C13-L125C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L130C13-L130C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L130C13-L130C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L135C13-L149C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L135C13-L149C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.CopyTo(System.Security.Cryptography.CryptographicAttributeObject[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L153C13-L161C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L153C13-L161C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L95C17-L95C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L95C17-L95C37" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L103C17-L103C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L103C17-L103C36" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L111C17-L111C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L111C17-L111C30" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L119C17-L119C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L119C17-L119C29" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C17-L36C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C17-L36C46" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L42C13-L45C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L42C13-L45C25" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L50C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L50C13-L51C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L28C17-L28C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L28C17-L28C46" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C17-L36C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C17-L36C46" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.IssuerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.SerialNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" } ], "DocsId": "T:System.Security.Cryptography.Xml.X509IssuerSerial", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L22C15-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L27C15-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L32C15-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L37C15-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L37C15-L46C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L76C13-L82C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L76C13-L82C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C17-L70C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C17-L70C33" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L47C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L47C13-L49C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9ContentType.ContentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C17-L41C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C17-L41C61" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9ContentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L35C15-L37C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L58C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L58C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.DocumentDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C17-L52C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C17-L52C69" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L35C15-L37C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L58C13-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L58C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.DocumentName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C17-L52C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C17-L52C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L23C15-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L23C15-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L46C13-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L46C13-L48C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.MessageDigest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C17-L40C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C17-L40C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L25C15-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L25C15-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L33C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L36C15-L38C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L64C13-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L64C13-L66C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.SigningTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L53C17-L58C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L53C17-L58C47" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9SigningTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Oid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.KeyLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Parameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.AlgorithmIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L37C15-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L37C15-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L45C9-L64C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L45C9-L64C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RSAEncryptionPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L71C54-L71C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L71C54-L71C58" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RecipientIdentifierType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L72C64-L72C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L72C64-L72C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L73C47-L73C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L73C47-L73C51" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Add(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L62C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L62C35" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Remove(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L67C13-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L67C13-L70C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L74C13-L74C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L74C13-L74C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L79C13-L79C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L79C13-L79C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L84C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L84C13-L98C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Security.Cryptography.Pkcs.CmsRecipient[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L102C13-L110C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L102C13-L110C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L116C17-L116C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L116C17-L116C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L124C17-L124C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L124C17-L124C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C13-L39C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C13-L39C75" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L45C13-L45C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L45C13-L45C75" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.ContentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L31C34-L31C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.Content", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L33C33-L33C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L33C33-L33C37" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.ContentInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L40C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L87C13-L90C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L87C13-L90C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L94C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L94C13-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L114C13-L117C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L114C13-L117C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L125C13-L128C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L125C13-L128C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L146C13-L168C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L146C13-L168C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L175C13-L176C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L175C13-L176C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L180C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L180C13-L183C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L187C13-L191C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L187C13-L191C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L195C13-L198C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L195C13-L198C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L207C13-L224C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L207C13-L224C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L48C30-L48C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L49C42-L49C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L49C42-L49C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L50C65-L50C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L50C65-L50C69" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Certificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L51C58-L51C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L51C58-L51C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.UnprotectedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L52C79-L52C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L52C79-L52C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.RecipientInfos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L62C17-L77C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L62C17-L77C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.EnvelopedCms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OriginatorIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Date", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OtherKeyAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.Algorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.KeyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L72C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.RecipientInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L76C13-L81C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L76C13-L81C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L87C17-L87C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L87C17-L87C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L95C17-L95C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L95C17-L95C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyTransport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyAgreement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SubjectIdentifier.MatchesCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L108C13-L132C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L108C13-L132C56" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C45-L98C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C45-L98C49" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L99C32-L99C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L99C32-L99C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.NoSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L79C15-L81C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L79C15-L81C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L84C15-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L84C15-L86C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L89C15-L91C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L89C15-L91C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.CspParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C67-L97C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C67-L97C96" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L100C15-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L100C15-L102C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L110C15-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L110C15-L112C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.MLDsa)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L121C15-L123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L121C15-L123C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.SlhDsa)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L132C15-L134C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L132C15-L134C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.CompositeMLDsa)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L143C15-L145C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L143C15-L145C55" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L175C15-L177C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L175C15-L177C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C48-L25C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C48-L25C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.PrivateKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L33C20-L33C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L33C20-L33C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C58-L37C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C58-L37C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L38C38-L38C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L38C38-L38C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.IncludeOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L39C50-L39C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L39C50-L39C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L40C74-L40C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L40C74-L40C78" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L41C76-L41C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L41C76-L41C80" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignaturePadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L54C20-L54C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L54C20-L54C37" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignerIdentifierType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L69C19-L69C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L69C19-L69C48" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsSigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L71C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L71C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L118C13-L154C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L118C13-L154C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L158C13-L161C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L158C13-L161C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L171C13-L226C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L171C13-L226C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L285C43-L285C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L285C43-L285C103" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L287C59-L287C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L287C59-L287C89" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L291C13-L374C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L291C13-L374C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L378C13-L393C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L378C13-L393C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L397C13-L407C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L397C13-L407C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L589C13-L589C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L589C13-L589C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L593C13-L599C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L593C13-L599C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckHash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L628C13-L646C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L628C13-L646C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L660C13-L690C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L660C13-L690C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L699C13-L719C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L699C13-L719C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Detached", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Certificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L77C17-L99C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L77C17-L99C29" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.SignerInfos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L107C17-L112C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L107C17-L112C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignedCms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.GetSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L71C41-L71C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L71C41-L71C61" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.AddUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L185C13-L189C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L185C13-L189C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L231C13-L235C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L231C13-L235C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L289C13-L289C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L289C13-L289C87" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L294C13-L344C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L294C13-L344C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L348C13-L424C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L348C13-L424C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L428C13-L447C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L428C13-L447C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L450C13-L450C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L450C13-L450C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L454C13-L469C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L454C13-L469C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckHash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L473C13-L482C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L473C13-L482C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C30-L21C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C30-L21C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignerIdentifier", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L22C53-L22C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L22C53-L22C57" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L63C13-L63C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L63C13-L63C90" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L66C13-L66C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L66C13-L66C94" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L75C13-L75C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L75C13-L75C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.CounterSignerInfos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L82C17-L89C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L82C17-L89C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L93C39-L93C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L93C39-L93C70" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignatureAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L100C35-L100C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L100C35-L100C69" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C56-L52C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C56-L52C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L53C52-L53C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L53C52-L53C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L57C13-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L57C13-L70C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.SignerInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L74C62-L74C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L74C62-L74C102" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L44C17-L46C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L44C17-L46C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L50C29-L50C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L50C29-L50C48" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C39-L76C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C39-L76C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L77C35-L77C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L77C35-L77C39" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L31C13-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L31C13-L36C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L43C13-L68C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L43C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L112C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsUnencrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L116C13-L124C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L116C13-L124C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L128C13-L133C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L128C13-L133C42" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.String,System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L141C13-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L141C13-L146C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.ReadOnlySpan{System.Char},System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L153C13-L302C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L153C13-L302C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithoutIntegrity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L306C13-L347C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L306C13-L347C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L351C13-L364C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L351C13-L364C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Builder.IsSealed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L24C33-L24C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L24C33-L24C53" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Builder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L45C15-L55C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L45C15-L55C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificateType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L72C13-L74C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L72C13-L74C43" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L82C13-L87C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L82C13-L87C109" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.IsX509Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L23C41-L23C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L23C41-L23C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.EncodedCertificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L77C59-L77C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L77C59-L77C77" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12CertBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Password", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L34C49" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L39C13-L48C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L39C13-L48C73" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L57C13-L152C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L57C13-L152C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.AuthenticatedSafe", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L24C75-L24C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L24C75-L24C79" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.IntegrityMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L25C52-L25C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L25C52-L25C56" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Password", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L15C15-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L15C15-L17C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.Pkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L19C56-L19C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L19C56-L19C71" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12KeyBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.#ctor(System.String,System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L42C9-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L42C9-L52C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L57C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L57C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.GetBagId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L62C13-L64C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L62C13-L64C38" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L69C13-L70C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L69C13-L70C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C55-L24C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C55-L24C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L30C17-L32C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L30C17-L32C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L33C9-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L33C9-L36C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSafeBag(System.Security.Cryptography.Pkcs.Pkcs12SafeBag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L76C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L76C13-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L88C13-L95C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L88C13-L95C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddKeyUnencrypted(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L100C13-L108C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L100C13-L108C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddNestedContents(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L113C13-L122C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L113C13-L122C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L130C13-L134C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L130C13-L134C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L142C13-L150C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L142C13-L150C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L158C13-L162C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L158C13-L162C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L170C13-L178C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L170C13-L178C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSecret(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L183C13-L190C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L183C13-L190C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L196C13-L197C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L207C13-L208C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L207C13-L208C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.GetBags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L278C13-L288C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L278C13-L288C39" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L30C64-L30C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L30C64-L30C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L31C34-L31C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag.SafeContents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L17C51-L17C55" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.GetSecretType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L45C13-L47C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L45C13-L47C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.SecretValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L22C52-L22C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L22C52-L22C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SecretBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L15C15-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L15C15-L17C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.EncryptedPkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L19C65-L19C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L19C65-L19C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.#ctor(System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L25C9-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L25C9-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Create(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L61C13-L64C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L61C13-L64C57" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L113C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L113C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L119C13-L128C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L119C13-L128C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L133C13-L134C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L133C13-L134C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L143C13-L152C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L143C13-L152C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L161C13-L170C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L161C13-L170C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Char},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L178C13-L202C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L178C13-L202C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Byte},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L209C13-L233C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L209C13-L233C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L20C34-L20C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L20C34-L20C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmParameters", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L21C60-L21C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L21C60-L21C64" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L22C68-L22C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L22C68-L22C72" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.PrivateKeyBytes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L23C55-L23C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L23C55-L23C59" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C13-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C13-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L27C15-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L32C15-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L31C60-L33C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L47C13-L49C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.KeyId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L40C13-L40C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L43C13-L43C43" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/Common/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetMessageHash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetNonce", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.ProcessResponse(System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L185C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L185C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L196C20-L209C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L196C20-L209C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L219C13-L227C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L219C13-L227C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L264C13-L338C15" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L264C13-L338C15" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L356C17-L380C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L356C17-L380C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestedPolicyId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestSignerCertificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HasExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L148C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L148C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L156C13-L161C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L156C13-L161C34" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L292C13-L422C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L292C13-L422C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TokenInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.ProtectedData.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.ProtectedData.json index 06731d2fc71..280a19870b9 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.ProtectedData.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.ProtectedData.json @@ -1,63 +1,63 @@ { "Assembly": "System.Security.Cryptography.ProtectedData", - "GUID": "BB294F7F7B41475993FC7A7C24E0B0EEFFFFFFFF", + "GUID": "264CBC88AF00498BA897996698C01DD1FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.CurrentUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.LocalMachine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" } ], "DocsId": "T:System.Security.Cryptography.DataProtectionScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.ProtectedData.Protect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L18C13-L33C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L18C13-L33C31" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Protect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L58C13-L71C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L58C13-L71C31" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.TryProtect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L108C13-L118C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L108C13-L118C36" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Protect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.Span{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L147C13-L163C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L147C13-L163C33" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Unprotect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L169C13-L185C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L169C13-L185C31" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Unprotect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L210C13-L224C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L210C13-L224C31" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.TryUnprotect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L261C13-L271C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L261C13-L271C36" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Unprotect(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.DataProtectionScope,System.Span{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L300C13-L316C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L300C13-L316C33" } ], "DocsId": "T:System.Security.Cryptography.ProtectedData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Xml.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Xml.json index 9dfbbfa73b3..6892c19c25e 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Xml.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Cryptography.Xml.json @@ -1,1925 +1,1925 @@ { "Assembly": "System.Security.Cryptography.Xml", - "GUID": "544800C2F60E445F84C8521362DC20C9FFFFFFFF", + "GUID": "D1F5911CBDAB455D980768570E701F2AFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Security.Cryptography.Xml.CipherReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L126C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L126C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L88C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L88C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" } ], "DocsId": "T:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor(System.String,System.String,System.String,System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L37C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L106C13-L110C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L106C13-L110C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L137C13-L150C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L137C13-L150C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L45C19-L45C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L45C19-L45C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.MimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L55C19-L55C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L55C19-L55C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Encoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L65C19-L65C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L65C19-L65C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L75C19-L75C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L75C19-L75C34" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor(System.Security.Cryptography.DSA)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L63C13-L65C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L63C13-L65C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L150C13-L204C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L150C13-L204C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L39C20-L39C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L39C20-L39C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.DSAKeyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L74C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L78C13-L82C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L78C13-L82C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L11C9-L11C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L11C9-L11C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.DataReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C13-L39C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.KeyReference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L43C13-L44C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L50C13-L145C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L50C13-L145C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L149C13-L153C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L149C13-L153C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.Recipient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L16C20-L16C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L16C20-L16C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.CarriedKeyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L26C20-L26C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L26C20-L26C25" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.ReferenceList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L34C47-L34C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L34C47-L34C76" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L15C42-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L15C42-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L19C52-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L19C52-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L23C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L56C13-L57C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L80C13-L84C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L80C13-L84C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L108C13-L126C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L108C13-L126C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.Uri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L32C19-L32C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L32C19-L32C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.TransformChain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L46C20-L46C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L46C20-L46C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.ReferenceType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L61C19-L61C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L61C19-L61C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.CacheValid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L74C17-L74C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L74C17-L74C45" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.AddProperty(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L111C13-L112C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L34C19-L34C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L34C19-L34C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L44C19-L44C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L44C19-L44C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.MimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L54C19-L54C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L54C19-L54C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Encoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L64C19-L64C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L64C19-L64C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.KeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L75C20-L75C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L75C20-L75C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L99C19-L99C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L99C19-L99C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L107C77-L107C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L107C77-L107C122" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.CipherData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L116C20-L116C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L116C20-L116C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L96C33-L96C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L96C33-L96C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L100C53-L100C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L100C53-L100C77" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L104C9-L117C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L104C9-L117C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L288C13-L288C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L288C13-L288C69" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionIV(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L294C13-L322C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L294C13-L322C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionKey(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L331C13-L409C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L331C13-L409C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L417C13-L526C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L417C13-L526C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L536C13-L542C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L536C13-L542C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ClearKeyNameMappings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L546C13-L547C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L546C13-L547C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L555C13-L586C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L555C13-L586C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L595C13-L663C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L595C13-L663C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L674C13-L691C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L674C13-L691C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L696C13-L731C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L696C13-L731C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Xml.XmlElement,System.Security.Cryptography.SymmetricAlgorithm,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L737C13-L741C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L737C13-L741C63" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L747C13-L786C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L747C13-L786C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceData(System.Xml.XmlElement,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L792C13-L851C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L792C13-L851C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceElement(System.Xml.XmlElement,System.Security.Cryptography.Xml.EncryptedData,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L860C13-L879C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L860C13-L879C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L884C13-L900C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L884C13-L900C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L908C13-L919C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L908C13-L919C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L926C13-L942C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L926C13-L942C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L960C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L960C67" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncNamespaceUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementContentUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncEncryptedKeyUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncDESUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSA15Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSAOAEPUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESKeyWrapUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA256Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA512Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.XmlDSigSearchDepth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L140C17-L140C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L140C17-L140C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.DocumentEvidence", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Resolver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L158C19-L158C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L158C19-L158C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Mode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L174C19-L174C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L174C19-L174C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Encoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L181C19-L181C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L181C19-L181C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Recipient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L190C20-L190C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L190C20-L190C42" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L100C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L100C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeySize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeyAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L67C13-L71C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L67C13-L71C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L81C13-L91C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L81C13-L91C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L32C19-L32C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L32C19-L32C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Target", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L37C19-L37C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L37C19-L37C34" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.PropertyElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L43C19-L43C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L43C19-L43C36" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Add(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Contains(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IndexOf(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Insert(System.Int32,System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Remove(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Security.Cryptography.Xml.EncryptionProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.IRelDecryptor.Decrypt(System.Security.Cryptography.Xml.EncryptionMethod,System.Security.Cryptography.Xml.KeyInfo,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.IRelDecryptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.AddClause(System.Security.Cryptography.Xml.KeyInfoClause)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L132C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L136C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L136C52" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L141C13-L153C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L141C13-L153C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L122C19-L122C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L122C19-L122C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoClause", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.EncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoEncryptedKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L57C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoName.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoNode.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L72C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Uri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L43C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L45C9-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L45C9-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509IncludeOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L50C9-L99C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L50C9-L99C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L112C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L112C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L127C13-L129C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L127C13-L129C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L133C13-L135C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L133C13-L135C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L144C13-L146C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L144C13-L146C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddIssuerSerial(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L155C13-L176C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L155C13-L176C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L210C13-L212C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L210C13-L212C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L276C13-L322C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L276C13-L322C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.Certificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C19-L107C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C19-L107C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectKeyIds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L122C19-L122C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L122C19-L122C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L139C19-L139C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L139C19-L139C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.IssuerSerials", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L150C19-L150C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L150C19-L150C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.CRL", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L187C19-L187C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L187C19-L187C31" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoX509Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyReference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L336C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L336C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L340C13-L344C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L340C13-L344C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Uri", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.TransformChain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" } ], "DocsId": "T:System.Security.Cryptography.Xml.Reference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L35C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L35C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L41C13-L42C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L46C13-L46C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L46C13-L46C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L51C13-L51C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L51C13-L51C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L56C13-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L56C13-L62C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L67C13-L68C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L67C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L72C13-L73C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L72C13-L73C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L77C13-L77C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L77C13-L77C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L96C19-L96C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L96C19-L96C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L99C17-L106C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L99C17-L106C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L111C13-L112C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L116C19-L116C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L116C19-L116C50" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L121C19-L121C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L121C19-L121C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L85C17-L85C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L85C17-L85C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L96C19-L96C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L96C19-L96C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L116C19-L116C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L116C19-L116C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L121C19-L121C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L121C19-L121C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L126C19-L126C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L126C19-L126C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L131C19-L131C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L131C19-L131C53" } ], "DocsId": "T:System.Security.Cryptography.Xml.ReferenceList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor(System.Security.Cryptography.RSA)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L58C13-L60C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L58C13-L60C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L105C13-L135C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L105C13-L135C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.RSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L34C20-L34C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L34C20-L34C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.RSAKeyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Signature.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L223C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L223C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L227C13-L228C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L227C13-L228C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignedInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignatureValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.KeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.ObjectList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" } ], "DocsId": "T:System.Security.Cryptography.Xml.Signature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L279C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L279C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L283C13-L287C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L283C13-L287C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethodObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.References", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L92C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L92C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L101C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L101C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L110C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L110C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L215C13-L218C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L215C13-L218C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L225C13-L232C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L225C13-L232C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L240C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L240C13-L241C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L245C13-L246C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L245C13-L246C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L250C13-L250C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L250C13-L250C54" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignatureReturningKey(System.Security.Cryptography.AsymmetricAlgorithm@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L255C13-L277C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L255C13-L277C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L282C13-L301C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L282C13-L301C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L306C13-L324C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L306C13-L324C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L329C13-L378C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L329C13-L378C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L383C13-L427C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L383C13-L427C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L431C13-L464C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L431C13-L464C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetPublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L472C13-L508C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L472C13-L508C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L542C13-L542C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L542C13-L542C59" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_signature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_strSigningKeyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigNamespaceUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigMinimalCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationWithCommentsUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA1Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigDSAUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA1Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigHMACSHA1Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA256Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA256Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA384Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA384Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA512Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA512Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigBase64TransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXPathTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXsltTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigEnvelopedSignatureTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDecryptionTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlLicenseTransformUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKeyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L135C19-L135C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L135C19-L135C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Resolver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L145C17-L147C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L145C17-L147C14" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureFormatValidator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L157C19-L157C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L157C19-L157C52" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SafeCanonicalizationMethods", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L163C19-L163C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L163C19-L163C55" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L168C19-L168C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L168C19-L168C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C20-L177C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C20-L177C68" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Signature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L183C19-L183C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L183C19-L183C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignedInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L188C19-L188C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L188C19-L188C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureMethod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L193C19-L193C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L193C19-L193C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L198C19-L198C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L198C19-L198C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L203C19-L203C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L203C19-L203C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.KeyInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L208C19-L208C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L208C19-L208C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Transform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Algorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L167C17-L175C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.PropagatedNamespaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L187C17-L222C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.Add(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" } ], "DocsId": "T:System.Security.Cryptography.Xml.TransformChain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L19C9-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L19C9-L36C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.IsTargetElement(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L42C13-L48C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L42C13-L48C26" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.AddExceptUri(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L82C13-L85C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L82C13-L85C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L89C13-L116C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L89C13-L116C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L120C13-L132C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L120C13-L132C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L137C13-L145C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L137C13-L145C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L267C13-L271C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L279C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L276C13-L279C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L284C13-L287C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.EncryptedXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L55C17-L65C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L55C17-L65C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L72C19-L72C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L72C19-L72C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L77C19-L77C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L77C19-L77C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDecryptionTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigBase64Transform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L116C13-L168C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L116C13-L168C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L174C13-L186C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L174C13-L186C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InclusiveNamespacesPrefixList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXPathTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXsltTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L131C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L138C13-L189C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.Decryptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlLicenseTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Permissions.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Permissions.json index fdaa96ef797..740cc00cfdc 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Permissions.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Security.Permissions.json @@ -1,6613 +1,6613 @@ { "Assembly": "System.Security.Permissions", - "GUID": "0D9E87F964F249788F0121079725D3CCFFFFFFFF", + "GUID": "B2F0900BA8764A8ABB4F07984BB42781FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.ApplicationIdentity.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" }, { "DocsId": "M:System.ApplicationIdentity.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" }, { "DocsId": "M:System.ApplicationIdentity.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" }, { "DocsId": "P:System.ApplicationIdentity.FullName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" }, { "DocsId": "P:System.ApplicationIdentity.CodeBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" } ], "DocsId": "T:System.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" }, { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L18C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L18C61" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L19C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L19C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Collections.Generic.IEnumerable{System.Xaml.Permissions.XamlAccessLevel})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L20C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L20C82" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Includes(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" }, { "DocsId": "P:System.Xaml.Permissions.XamlLoadPermission.AllowedAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" } ], "DocsId": "T:System.Xaml.Permissions.XamlLoadPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Web.AspNetHostingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" }, { "DocsId": "M:System.Web.AspNetHostingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" }, { "DocsId": "M:System.Web.AspNetHostingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" }, { "DocsId": "P:System.Web.AspNetHostingPermission.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" }, { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Web.AspNetHostingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Minimal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Medium", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" } ], "DocsId": "T:System.Web.AspNetHostingPermissionLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Transactions.DistributedTransactionPermissionAttribute.Unrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.ServiceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.ServiceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Add(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Contains(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.CopyTo(System.ServiceProcess.ServiceControllerPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.IndexOf(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Insert(System.Int32,System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Remove(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.CodeAccessPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" }, { "DocsId": "M:System.Security.CodeAccessPermission.Assert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Demand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Deny", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" }, { "DocsId": "M:System.Security.CodeAccessPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" }, { "DocsId": "M:System.Security.CodeAccessPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.CodeAccessPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.PermitOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAssert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertDeny", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertPermitOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" } ], "DocsId": "T:System.Security.CodeAccessPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostProtectionException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Security.Permissions.HostProtectionResource,System.Security.Permissions.HostProtectionResource)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" }, { "DocsId": "M:System.Security.HostProtectionException.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" }, { "DocsId": "M:System.Security.HostProtectionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" }, { "DocsId": "P:System.Security.HostProtectionException.DemandedResources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" }, { "DocsId": "P:System.Security.HostProtectionException.ProtectedResources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" } ], "DocsId": "T:System.Security.HostProtectionException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostSecurityManager.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" }, { "DocsId": "M:System.Security.HostSecurityManager.DetermineApplicationTrust(System.Security.Policy.Evidence,System.Security.Policy.Evidence,System.Security.Policy.TrustManagerContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAppDomainEvidence(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAssemblyEvidence(System.Reflection.Assembly,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" }, { "DocsId": "M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAppDomainEvidence(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAssemblyEvidence(System.Type,System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAssemblyEvidenceTypes(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" }, { "DocsId": "P:System.Security.HostSecurityManager.DomainPolicy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" }, { "DocsId": "P:System.Security.HostSecurityManager.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" } ], "DocsId": "T:System.Security.HostSecurityManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" }, { "Members": [ { "DocsId": "F:System.Security.HostSecurityManagerOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.AllFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAppDomainEvidence", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAssemblyEvidence", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostDetermineApplicationTrust", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostPolicyLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostResolvePolicy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" } ], "DocsId": "T:System.Security.HostSecurityManagerOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "Members": [ { "DocsId": "P:System.Security.IEvidenceFactory.Evidence", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" } ], "DocsId": "T:System.Security.IEvidenceFactory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.ISecurityPolicyEncodable.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "DocsId": "M:System.Security.ISecurityPolicyEncodable.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" } ], "DocsId": "T:System.Security.ISecurityPolicyEncodable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "Members": [ { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" }, { "DocsId": "M:System.Security.NamedPermissionSet.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" }, { "DocsId": "M:System.Security.NamedPermissionSet.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" }, { "DocsId": "P:System.Security.NamedPermissionSet.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.NamedPermissionSet.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.NamedPermissionSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" }, { "Members": [ { "DocsId": "F:System.Security.PolicyLevelType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.AppDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Enterprise", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Machine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.User", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" } ], "DocsId": "T:System.Security.PolicyLevelType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityContext.Capture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" }, { "DocsId": "M:System.Security.SecurityContext.CreateCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" }, { "DocsId": "M:System.Security.SecurityContext.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" }, { "DocsId": "M:System.Security.SecurityContext.IsFlowSuppressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" }, { "DocsId": "M:System.Security.SecurityContext.IsWindowsIdentityFlowSuppressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" }, { "DocsId": "M:System.Security.SecurityContext.RestoreFlow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" }, { "DocsId": "M:System.Security.SecurityContext.Run(System.Security.SecurityContext,System.Threading.ContextCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlowWindowsIdentity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" } ], "DocsId": "T:System.Security.SecurityContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityContextSource.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAppDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAssembly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" } ], "DocsId": "T:System.Security.SecurityContextSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityManager.CurrentThreadRequiresSecurityContextCapture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" }, { "DocsId": "M:System.Security.SecurityManager.GetStandardSandbox(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" }, { "DocsId": "M:System.Security.SecurityManager.GetZoneAndOrigin(System.Collections.ArrayList@,System.Collections.ArrayList@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" }, { "DocsId": "M:System.Security.SecurityManager.IsGranted(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromFile(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromString(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" }, { "DocsId": "M:System.Security.SecurityManager.PolicyHierarchy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicyGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" }, { "DocsId": "M:System.Security.SecurityManager.ResolveSystemPolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicyLevel(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" }, { "DocsId": "P:System.Security.SecurityManager.CheckExecutionRights", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" }, { "DocsId": "P:System.Security.SecurityManager.SecurityEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" } ], "DocsId": "T:System.Security.SecurityManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityState.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" }, { "DocsId": "M:System.Security.SecurityState.EnsureState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "DocsId": "M:System.Security.SecurityState.IsStateAvailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" } ], "DocsId": "T:System.Security.SecurityState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityZone.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Internet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Intranet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.MyComputer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.NoZone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Trusted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Untrusted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" } ], "DocsId": "T:System.Security.SecurityZone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "Members": [ { "DocsId": "M:System.Security.XmlSyntaxException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" } ], "DocsId": "T:System.Security.XmlSyntaxException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.AllMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.AllMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" }, { "DocsId": "P:System.Security.Policy.ApplicationDirectory.Directory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectoryMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.ApplicationIdentity)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.Security.PermissionSet,System.Collections.Generic.IEnumerable{System.Security.Policy.StrongName})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.DefaultGrantSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ExtraInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.IsApplicationTrustedToRun", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.Persist", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" } ], "DocsId": "T:System.Security.Policy.ApplicationTrust", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Add(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.CopyTo(System.Security.Policy.ApplicationTrust[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Find(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchAllVersions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchExactVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" } ], "DocsId": "T:System.Security.Policy.ApplicationVersionMatch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeConnectAccess.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateAnySchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateOriginSchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.AnyScheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.DefaultPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginScheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Port", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Scheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" } ], "DocsId": "T:System.Security.Policy.CodeConnectAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" }, { "DocsId": "M:System.Security.Policy.CodeGroup.AddChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Security.Policy.CodeGroup,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" }, { "DocsId": "M:System.Security.Policy.CodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" }, { "DocsId": "M:System.Security.Policy.CodeGroup.RemoveChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" }, { "DocsId": "P:System.Security.Policy.CodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PolicyStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" } ], "DocsId": "T:System.Security.Policy.CodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FileCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" } ], "DocsId": "T:System.Security.Policy.FileCodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.FirstMatchCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.FirstMatchCodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacInstalled.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" }, { "DocsId": "M:System.Security.Policy.GacInstalled.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" } ], "DocsId": "T:System.Security.Policy.GacInstalled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.GacMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Hash.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Policy.Hash.CreateMD5(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA1(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA256(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" }, { "DocsId": "M:System.Security.Policy.Hash.GenerateHash(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" }, { "DocsId": "M:System.Security.Policy.Hash.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" }, { "DocsId": "M:System.Security.Policy.Hash.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" }, { "DocsId": "P:System.Security.Policy.Hash.MD5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" }, { "DocsId": "P:System.Security.Policy.Hash.SHA1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.Hash.SHA256", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" } ], "DocsId": "T:System.Security.Policy.Hash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.HashMembershipCondition.#ctor(System.Security.Cryptography.HashAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashAlgorithm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" } ], "DocsId": "T:System.Security.Policy.HashMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IIdentityPermissionFactory.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" } ], "DocsId": "T:System.Security.Policy.IIdentityPermissionFactory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" } ], "DocsId": "T:System.Security.Policy.IMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.NetCodeGroup.#ctor(System.Security.Policy.IMembershipCondition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.AddConnectAccess(System.String,System.Security.Policy.CodeConnectAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetConnectAccessRules", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResetConnectAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AbsentOriginScheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AnyOtherOriginScheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" } ], "DocsId": "T:System.Security.Policy.NetCodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.#ctor(System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.DeniedPermissions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.OptionalPermissions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.RequestedPermissions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" } ], "DocsId": "T:System.Security.Policy.PermissionRequestEvidence", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" } ], "DocsId": "T:System.Security.Policy.PolicyException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ChangeNamedPermissionSet(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.CreateAppDomainLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.GetNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Recover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.NamedPermissionSets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.RootCodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.StoreLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" } ], "DocsId": "T:System.Security.Policy.PolicyLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet,System.Security.Policy.PolicyStatementAttribute)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.Attributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.AttributeString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.PermissionSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" } ], "DocsId": "T:System.Security.Policy.PolicyStatement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Exclusive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.LevelFinal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Nothing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" } ], "DocsId": "T:System.Security.Policy.PolicyStatementAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Publisher.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" }, { "DocsId": "M:System.Security.Policy.Publisher.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" }, { "DocsId": "M:System.Security.Policy.Publisher.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" }, { "DocsId": "M:System.Security.Policy.Publisher.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.Publisher.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.Publisher.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" }, { "DocsId": "P:System.Security.Policy.Publisher.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" } ], "DocsId": "T:System.Security.Policy.Publisher", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" }, { "DocsId": "P:System.Security.Policy.PublisherMembershipCondition.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" } ], "DocsId": "T:System.Security.Policy.PublisherMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Site.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" }, { "DocsId": "M:System.Security.Policy.Site.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Site.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Site.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Site.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Site.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Site.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Site.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" } ], "DocsId": "T:System.Security.Policy.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.SiteMembershipCondition.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" } ], "DocsId": "T:System.Security.Policy.SiteMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongName.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" }, { "DocsId": "M:System.Security.Policy.StrongName.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" }, { "DocsId": "M:System.Security.Policy.StrongName.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" }, { "DocsId": "M:System.Security.Policy.StrongName.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongName.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" }, { "DocsId": "M:System.Security.Policy.StrongName.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" }, { "DocsId": "P:System.Security.Policy.StrongName.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.StrongName.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" }, { "DocsId": "P:System.Security.Policy.StrongName.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" } ], "DocsId": "T:System.Security.Policy.StrongName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" } ], "DocsId": "T:System.Security.Policy.StrongNameMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" }, { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor(System.Security.Policy.TrustManagerUIContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.IgnorePersistedDecision", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.KeepAlive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.NoPrompt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.Persist", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.UIContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.PreviousApplicationIdentity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" } ], "DocsId": "T:System.Security.Policy.TrustManagerContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Install", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Run", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Upgrade", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" } ], "DocsId": "T:System.Security.Policy.TrustManagerUIContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UnionCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.UnionCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.UnionCodeGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Url.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" }, { "DocsId": "M:System.Security.Policy.Url.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Url.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" }, { "DocsId": "M:System.Security.Policy.Url.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" }, { "DocsId": "M:System.Security.Policy.Url.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" }, { "DocsId": "M:System.Security.Policy.Url.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" }, { "DocsId": "P:System.Security.Policy.Url.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" } ], "DocsId": "T:System.Security.Policy.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.UrlMembershipCondition.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" } ], "DocsId": "T:System.Security.Policy.UrlMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Zone.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Policy.Zone.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Zone.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Zone.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Zone.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Zone.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Zone.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Zone.SecurityZone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" } ], "DocsId": "T:System.Security.Policy.Zone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.ZoneMembershipCondition.SecurityZone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" } ], "DocsId": "T:System.Security.Policy.ZoneMembershipCondition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.DataProtectionPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.AddPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.SetPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.FileDialogPermissionAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermission.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Open", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.OpenSave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Open", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Save", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.PathDiscovery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalThreading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Resources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SharedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Synchronization", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.UI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" } ], "DocsId": "T:System.Security.Permissions.HostProtectionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.HostProtectionResource.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalThreading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SharedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.Synchronization", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.UI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" } ], "DocsId": "T:System.Security.Permissions.HostProtectionResource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByMachine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByMachine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByMachine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AdministerIsolatedStorageByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.UnrestrictedIsolatedStorage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageContainment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UserQuota", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UsageAllowed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UserQuota", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UsageAllowed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IUnrestrictedPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" } ], "DocsId": "T:System.Security.Permissions.IUnrestrictedPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags,System.Security.Permissions.KeyContainerPermissionAccessEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.AccessEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.Security.Cryptography.CspParameters,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.String,System.Int32,System.String,System.Int32,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyContainerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeySpec", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Add(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IndexOf(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Remove(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Security.Permissions.KeyContainerPermissionAccessEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyContainerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeySpec", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Create", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Open", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Import", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Export", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Sign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Decrypt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ViewAcl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ChangeAcl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.NoAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SiteOfOriginAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SafeAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.AllAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.NoVideo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SiteOfOriginVideo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SafeVideo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.AllVideo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionVideo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.NoImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SiteOfOriginImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SafeImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.AllImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionVideo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio,System.Security.Permissions.MediaPermissionVideo,System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Audio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Video", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" }, { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Audio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Video", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermissionSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.File", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Hex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.UnicodeEncoded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.XML", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" } ], "DocsId": "T:System.Security.Permissions.PermissionSetAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Demand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L295C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L295C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L299C13-L299C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L299C13-L299C39" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Authenticated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermission.Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.CertFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.SignedFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.X509Certificate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.ReflectionPermissionFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.MemberAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.TypeInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.NoFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.TypeInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionFlag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.SetPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" } ], "DocsId": "T:System.Security.Permissions.RegistryPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Create", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" }, { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Create", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.GetPermissionEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Any", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Local", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.PermissionAccessType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.TagNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor(System.Int32,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccessPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBaseEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.SecurityPermissionFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.SecurityPermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" } ], "DocsId": "T:System.Security.Permissions.SecurityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermission.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermissionAttribute.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.StorePermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" }, { "DocsId": "M:System.Security.Permissions.StorePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" }, { "DocsId": "P:System.Security.Permissions.StorePermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" } ], "DocsId": "T:System.Security.Permissions.StorePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" }, { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.CreateStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.DeleteStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateStores", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.OpenStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.AddToStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" } ], "DocsId": "T:System.Security.Permissions.StorePermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.CreateStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.DeleteStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateStores", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.OpenStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AddToStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.StorePermissionFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.PublicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" } ], "DocsId": "T:System.Security.Permissions.StrongNamePublicKeyBlob", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.TypeDescriptorPermissionFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermission.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow,System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Security.Permissions.UIPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" }, { "DocsId": "M:System.Security.Permissions.UIPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Clipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" } ], "DocsId": "T:System.Security.Permissions.UIPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" }, { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Clipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" } ], "DocsId": "T:System.Security.Permissions.UIPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.AllClipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.NoClipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.OwnClipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionClipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.AllWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.NoWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeTopLevelWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermission.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermissionAttribute.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Safe", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.WebBrowserPermissionLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermission.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermission.SecurityZone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermissionAttribute.Zone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" }, { "DocsId": "M:System.Net.DnsPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.DnsPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Net.DnsPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.DnsPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.DnsPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.DnsPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.DnsPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.DnsPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.DnsPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.DnsPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.EndpointPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" }, { "DocsId": "M:System.Net.EndpointPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" }, { "DocsId": "P:System.Net.EndpointPermission.Hostname", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" }, { "DocsId": "P:System.Net.EndpointPermission.Port", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" }, { "DocsId": "P:System.Net.EndpointPermission.Transport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" } ], "DocsId": "T:System.Net.EndpointPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Accept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Connect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" } ], "DocsId": "T:System.Net.NetworkAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" }, { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" }, { "DocsId": "M:System.Net.SocketPermission.AddPermission(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" }, { "DocsId": "M:System.Net.SocketPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Net.SocketPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" }, { "DocsId": "M:System.Net.SocketPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" }, { "DocsId": "M:System.Net.SocketPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" }, { "DocsId": "M:System.Net.SocketPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" }, { "DocsId": "M:System.Net.SocketPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" }, { "DocsId": "M:System.Net.SocketPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" }, { "DocsId": "F:System.Net.SocketPermission.AllPorts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "DocsId": "P:System.Net.SocketPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" }, { "DocsId": "P:System.Net.SocketPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" } ], "DocsId": "T:System.Net.SocketPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" }, { "DocsId": "M:System.Net.SocketPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Host", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Port", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Transport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" } ], "DocsId": "T:System.Net.SocketPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.TransportType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Connectionless", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.ConnectionOriented", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Tcp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Udp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" } ], "DocsId": "T:System.Net.TransportType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" }, { "DocsId": "M:System.Net.WebPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" }, { "DocsId": "M:System.Net.WebPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" }, { "DocsId": "M:System.Net.WebPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" }, { "DocsId": "M:System.Net.WebPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" }, { "DocsId": "M:System.Net.WebPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" }, { "DocsId": "M:System.Net.WebPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" }, { "DocsId": "M:System.Net.WebPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" }, { "DocsId": "P:System.Net.WebPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" }, { "DocsId": "P:System.Net.WebPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" } ], "DocsId": "T:System.Net.WebPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.WebPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Accept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.WebPermissionAttribute.AcceptPattern", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Connect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" }, { "DocsId": "P:System.Net.WebPermissionAttribute.ConnectPattern", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" } ], "DocsId": "T:System.Net.WebPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.Global", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.LinkLocal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.SiteLocal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Ping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.AddPermission(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermission.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.Mail.SmtpAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.Connect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.ConnectToUnrestrictedPort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" } ], "DocsId": "T:System.Net.Mail.SmtpAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.AddPermission(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" }, { "DocsId": "P:System.Net.Mail.SmtpPermission.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" } ], "DocsId": "T:System.Net.Mail.SmtpPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" }, { "DocsId": "P:System.Net.Mail.SmtpPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" } ], "DocsId": "T:System.Net.Mail.SmtpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Drawing.Printing.PrintingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermission.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.AllPrinting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.DefaultPrinting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.NoPrinting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.SafePrinting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntry.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Add(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Contains(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.CopyTo(System.DirectoryServices.DirectoryServicesPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.IndexOf(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Insert(System.Int32,System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Remove(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" }, { "DocsId": "P:System.Diagnostics.EventLogPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" } ], "DocsId": "T:System.Diagnostics.EventLogPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Audit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntry.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Add(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Contains(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.CopyTo(System.Diagnostics.EventLogPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.IndexOf(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Remove(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.CategoryName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntry.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.CategoryName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Add(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Contains(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Remove(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" }, { "DocsId": "P:System.Data.OracleClient.OraclePermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" } ], "DocsId": "T:System.Data.OracleClient.OraclePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" } ], "DocsId": "T:System.Data.OracleClient.OraclePermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" }, { "DocsId": "P:System.Data.OleDb.OleDbPermission.Provider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" }, { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Data.OleDb.OleDbPermissionAttribute.Provider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" } ], "DocsId": "T:System.Data.Odbc.OdbcPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" }, { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.Odbc.OdbcPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermissionAttribute)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" }, { "DocsId": "M:System.Data.Common.DBDataPermission.CreateInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" }, { "DocsId": "M:System.Data.Common.DBDataPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" }, { "DocsId": "M:System.Data.Common.DBDataPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" }, { "DocsId": "P:System.Data.Common.DBDataPermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" } ], "DocsId": "T:System.Data.Common.DBDataPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" } ], "DocsId": "T:System.Data.Common.DBDataPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" } ], "DocsId": "T:System.Configuration.ConfigurationPermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" }, { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" } ], "DocsId": "T:System.Configuration.ConfigurationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Extensions.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Extensions.json index eba014ccc87..b9af8e9f204 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Extensions.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Extensions.json @@ -1,211 +1,211 @@ { "Assembly": "System.Windows.Extensions", - "GUID": "9A376695856041B1B430A74D75113EEBFFFFFFFF", + "GUID": "B8AF2297023946269880CA8E93BBF45EFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessToAssemblyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessToTypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" } ], "DocsId": "T:System.Xaml.Permissions.XamlAccessLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" }, { "Members": [ { "DocsId": "M:System.Media.SoundPlayer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" }, { "DocsId": "M:System.Media.SoundPlayer.LoadAsync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" }, { "DocsId": "M:System.Media.SoundPlayer.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" }, { "DocsId": "M:System.Media.SoundPlayer.Play", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L334C13-L335C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L334C13-L335C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlaySync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L339C13-L340C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L339C13-L340C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlayLooping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L344C13-L345C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L344C13-L345C10" }, { "DocsId": "M:System.Media.SoundPlayer.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L428C13-L429C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L428C13-L429C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L469C13-L470C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L469C13-L470C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnSoundLocationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L474C13-L475C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L474C13-L475C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnStreamChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L479C13-L480C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L479C13-L480C10" }, { "DocsId": "M:System.Media.SoundPlayer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L716C13-L716C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L716C13-L716C55" }, { "DocsId": "E:System.Media.SoundPlayer.LoadCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L435C17-L436C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L435C17-L436C14" }, { "DocsId": "E:System.Media.SoundPlayer.SoundLocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L447C17-L448C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L447C17-L448C14" }, { "DocsId": "E:System.Media.SoundPlayer.StreamChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L459C17-L460C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L459C17-L460C14" }, { "DocsId": "P:System.Media.SoundPlayer.LoadTimeout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" }, { "DocsId": "P:System.Media.SoundPlayer.SoundLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" }, { "DocsId": "P:System.Media.SoundPlayer.Stream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" }, { "DocsId": "P:System.Media.SoundPlayer.IsLoadCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" }, { "DocsId": "P:System.Media.SoundPlayer.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" } ], "DocsId": "T:System.Media.SoundPlayer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" }, { "Members": [ { "DocsId": "M:System.Media.SystemSound.Play", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" } ], "DocsId": "T:System.Media.SystemSound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" }, { "Members": [ { "DocsId": "P:System.Media.SystemSounds.Asterisk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L8C47-L8C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L8C47-L8C104" }, { "DocsId": "P:System.Media.SystemSounds.Beep", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L9C43-L9C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L9C43-L9C90" }, { "DocsId": "P:System.Media.SystemSounds.Exclamation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L10C50-L10C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L10C50-L10C110" }, { "DocsId": "P:System.Media.SystemSounds.Hand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L11C43-L11C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L11C43-L11C96" }, { "DocsId": "P:System.Media.SystemSounds.Question", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L12C47-L12C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L12C47-L12C104" } ], "DocsId": "T:System.Media.SystemSounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.SingleSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.MultiSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509SelectionFlag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509Certificate2UI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/runtime/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Design.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Design.json index 81a44841d0d..e81cc3a5613 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Design.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Design.json @@ -1,5999 +1,5999 @@ { "Assembly": "System.Windows.Forms.Design", - "GUID": "4A7A81BF5279401692859851432B58AFFFFFFFFF", + "GUID": "C7F2D2D6A6ED496591D85159279EFC9CFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfoCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.ComTypes.TYPEKIND@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.GetLibAttr(System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.IsName(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "DocsId": "M:System.Runtime.InteropServices.UCOMITypeLib.ReleaseTLibAttr(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" } ], "DocsId": "T:System.Runtime.InteropServices.UCOMITypeLib", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Runtime/InteropServices/UCOMITypeLib.cs" }, { "Members": [ { "DocsId": "M:System.Resources.Tools.ITargetAwareCodeDomProvider.SupportsProperty(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/ITargetAwareCodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/ITargetAwareCodeDomProvider.cs" } ], "DocsId": "T:System.Resources.Tools.ITargetAwareCodeDomProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/ITargetAwareCodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/ITargetAwareCodeDomProvider.cs" }, { "Members": [ { "DocsId": "M:System.Resources.Tools.StronglyTypedResourceBuilder.Create(System.Collections.IDictionary,System.String,System.String,System.CodeDom.Compiler.CodeDomProvider,System.Boolean,System.String[]@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L109C12-L116C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L109C12-L116C29" }, { "DocsId": "M:System.Resources.Tools.StronglyTypedResourceBuilder.Create(System.Collections.IDictionary,System.String,System.String,System.String,System.CodeDom.Compiler.CodeDomProvider,System.Boolean,System.String[]@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L163C9-L203C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L163C9-L203C30" }, { "DocsId": "M:System.Resources.Tools.StronglyTypedResourceBuilder.Create(System.String,System.String,System.String,System.CodeDom.Compiler.CodeDomProvider,System.Boolean,System.String[]@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L231C12-L238C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L231C12-L238C29" }, { "DocsId": "M:System.Resources.Tools.StronglyTypedResourceBuilder.Create(System.String,System.String,System.String,System.String,System.CodeDom.Compiler.CodeDomProvider,System.Boolean,System.String[]@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L268C9-L295C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L268C9-L295C30" }, { "DocsId": "M:System.Resources.Tools.StronglyTypedResourceBuilder.VerifyResourceName(System.String,System.CodeDom.Compiler.CodeDomProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L825C12-L825C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs#L825C12-L825C65" } ], "DocsId": "T:System.Resources.Tools.StronglyTypedResourceBuilder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Resources/Tools/StronglyTypedResourceBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.BitmapEditor.GetFileDialogDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L15C61-L15C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L15C61-L15C85" }, { "DocsId": "M:System.Drawing.Design.BitmapEditor.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L17C52-L17C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L17C52-L17C73" }, { "DocsId": "M:System.Drawing.Design.BitmapEditor.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L19C63-L19C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs#L19C63-L19C81" }, { "DocsId": "M:System.Drawing.Design.BitmapEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" }, { "DocsId": "F:System.Drawing.Design.BitmapEditor.BitmapExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" } ], "DocsId": "T:System.Drawing.Design.BitmapEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/BitmapEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ColorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L21C9-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L21C9-L38C6" }, { "DocsId": "M:System.Drawing.Design.ColorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L41C92-L41C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L41C92-L41C122" }, { "DocsId": "M:System.Drawing.Design.ColorEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L44C85-L44C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L44C85-L44C89" }, { "DocsId": "M:System.Drawing.Design.ColorEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L49C9-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs#L49C9-L54C6" }, { "DocsId": "M:System.Drawing.Design.ColorEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs" } ], "DocsId": "T:System.Drawing.Design.ColorEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ColorEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ContentAlignmentEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs#L21C9-L33C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs#L21C9-L33C22" }, { "DocsId": "M:System.Drawing.Design.ContentAlignmentEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs#L38C12-L38C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs#L38C12-L38C42" }, { "DocsId": "M:System.Drawing.Design.ContentAlignmentEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs" } ], "DocsId": "T:System.Drawing.Design.ContentAlignmentEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ContentAlignmentEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.CursorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L24C9-L36C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L24C9-L36C22" }, { "DocsId": "M:System.Drawing.Design.CursorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L40C92-L40C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L40C92-L40C122" }, { "DocsId": "M:System.Drawing.Design.CursorEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs" }, { "DocsId": "P:System.Drawing.Design.CursorEditor.IsDropDownResizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L20C49-L20C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs#L20C49-L20C53" } ], "DocsId": "T:System.Drawing.Design.CursorEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/CursorEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs#L21C9-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs#L21C9-L55C6" }, { "DocsId": "M:System.Drawing.Design.FontEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs#L57C92-L57C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs#L57C92-L57C119" }, { "DocsId": "M:System.Drawing.Design.FontEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs" } ], "DocsId": "T:System.Drawing.Design.FontEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.FontNameEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs#L27C85-L27C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs#L27C85-L27C89" }, { "DocsId": "M:System.Drawing.Design.FontNameEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs#L32C9-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs#L32C9-L64C6" }, { "DocsId": "M:System.Drawing.Design.FontNameEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs" } ], "DocsId": "T:System.Drawing.Design.FontNameEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/FontNameEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.IconEditor.CreateExtensionsString(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L24C9-L44C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L24C9-L44C21" }, { "DocsId": "M:System.Drawing.Design.IconEditor.CreateFilterEntry(System.Drawing.Design.IconEditor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L49C9-L52C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L49C9-L52C74" }, { "DocsId": "M:System.Drawing.Design.IconEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L58C9-L90C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L58C9-L90C22" }, { "DocsId": "M:System.Drawing.Design.IconEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L98C12-L98C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L98C12-L98C39" }, { "DocsId": "M:System.Drawing.Design.IconEditor.GetFileDialogDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L100C60-L100C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L100C60-L100C82" }, { "DocsId": "M:System.Drawing.Design.IconEditor.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L102C51-L102C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L102C51-L102C72" }, { "DocsId": "M:System.Drawing.Design.IconEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L105C85-L105C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L105C85-L105C89" }, { "DocsId": "M:System.Drawing.Design.IconEditor.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L107C61-L107C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L107C61-L107C72" }, { "DocsId": "M:System.Drawing.Design.IconEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L112C9-L133C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs#L112C9-L133C6" }, { "DocsId": "M:System.Drawing.Design.IconEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs" } ], "DocsId": "T:System.Drawing.Design.IconEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IconEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ImageEditor.GetImageExtenders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L23C53-L23C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L23C53-L23C69" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.CreateExtensionsString(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L27C9-L49C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L27C9-L49C32" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.CreateFilterEntry(System.Drawing.Design.ImageEditor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L54C9-L60C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L54C9-L60C74" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L65C9-L119C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L65C9-L119C22" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L122C92-L122C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L122C92-L122C119" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.GetFileDialogDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L124C60-L124C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L124C60-L124C83" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L128C9-L154C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L128C9-L154C26" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L158C85-L158C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L158C85-L158C89" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L162C9-L168C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L162C9-L168C47" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L174C9-L182C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs#L174C9-L182C6" }, { "DocsId": "M:System.Drawing.Design.ImageEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs" } ], "DocsId": "T:System.Drawing.Design.ImageEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ImageEditor.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Design.IToolboxItemProvider.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxItemProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxItemProvider.cs" } ], "DocsId": "T:System.Drawing.Design.IToolboxItemProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxItemProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxItemProvider.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.IToolboxService.AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.String,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.AddToolboxItem(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.AddToolboxItem(System.Drawing.Design.ToolboxItem,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.DeserializeToolboxItem(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.DeserializeToolboxItem(System.Object,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetSelectedToolboxItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetSelectedToolboxItem(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetToolboxItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetToolboxItems(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetToolboxItems(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.GetToolboxItems(System.String,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.IsSupported(System.Object,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.IsSupported(System.Object,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.IsToolboxItem(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.IsToolboxItem(System.Object,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.RemoveCreator(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.RemoveCreator(System.String,System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.RemoveToolboxItem(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.RemoveToolboxItem(System.Drawing.Design.ToolboxItem,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.SelectedToolboxItemUsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.SerializeToolboxItem(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.SetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxService.SetSelectedToolboxItem(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "P:System.Drawing.Design.IToolboxService.CategoryNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "DocsId": "P:System.Drawing.Design.IToolboxService.SelectedCategory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" } ], "DocsId": "T:System.Drawing.Design.IToolboxService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxService.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.IToolboxUser.GetToolSupported(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" }, { "DocsId": "M:System.Drawing.Design.IToolboxUser.ToolPicked(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" } ], "DocsId": "T:System.Drawing.Design.IToolboxUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/IToolboxUser.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.MetafileEditor.GetFileDialogDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L14C61-L14C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L14C61-L14C87" }, { "DocsId": "M:System.Drawing.Design.MetafileEditor.GetExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L16C52-L16C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L16C52-L16C66" }, { "DocsId": "M:System.Drawing.Design.MetafileEditor.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L18C63-L18C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs#L18C63-L18C83" }, { "DocsId": "M:System.Drawing.Design.MetafileEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs" } ], "DocsId": "T:System.Drawing.Design.MetafileEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/MetafileEditor.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatedEventArgs.#ctor(System.ComponentModel.IComponent[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs#L19C5-L22C6" }, { "DocsId": "P:System.Drawing.Design.ToolboxComponentsCreatedEventArgs.Components", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs#L27C40-L27C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs#L27C40-L27C75" } ], "DocsId": "T:System.Drawing.Design.ToolboxComponentsCreatedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatedEventHandler.Invoke(System.Object,System.Drawing.Design.ToolboxComponentsCreatedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatedEventHandler.BeginInvoke(System.Object,System.Drawing.Design.ToolboxComponentsCreatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" } ], "DocsId": "T:System.Drawing.Design.ToolboxComponentsCreatedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatingEventArgs.#ctor(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs#L17C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs#L17C5-L20C6" }, { "DocsId": "P:System.Drawing.Design.ToolboxComponentsCreatingEventArgs.DesignerHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs#L26C42-L26C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs#L26C42-L26C46" } ], "DocsId": "T:System.Drawing.Design.ToolboxComponentsCreatingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatingEventHandler.Invoke(System.Object,System.Drawing.Design.ToolboxComponentsCreatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatingEventHandler.BeginInvoke(System.Object,System.Drawing.Design.ToolboxComponentsCreatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxComponentsCreatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" } ], "DocsId": "T:System.Drawing.Design.ToolboxComponentsCreatingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxComponentsCreatingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L31C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L31C5-L39C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L44C42-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L44C42-L47C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CheckUnlocked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L206C9-L210C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L206C9-L210C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CreateComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L216C48-L216C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L216C48-L216C70" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CreateComponents(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L224C9-L231C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L224C9-L231C22" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CreateComponents(System.ComponentModel.Design.IDesignerHost,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L241C9-L248C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L241C9-L248C22" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L257C9-L271C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L257C9-L271C27" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L280C9-L309C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L280C9-L309C27" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L320C9-L362C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L320C9-L362C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L366C9-L385C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L366C9-L385C52" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L394C42-L394C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L394C42-L394C81" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.FilterPropertyValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L405C17-L429C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L405C17-L429C22" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.GetType(System.ComponentModel.Design.IDesignerHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L437C50-L437C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L437C50-L437C94" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.GetType(System.ComponentModel.Design.IDesignerHost,System.Reflection.AssemblyName,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L448C9-L540C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L448C9-L540C21" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.Initialize(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L548C9-L637C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L548C9-L637C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.Lock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L700C9-L701C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L700C9-L701C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L708C9-L717C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L708C9-L717C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.OnComponentsCreated(System.Drawing.Design.ToolboxComponentsCreatedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L725C9-L726C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L725C9-L726C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.OnComponentsCreating(System.Drawing.Design.ToolboxComponentsCreatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L734C9-L735C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L734C9-L735C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L737C42-L737C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L737C42-L737C69" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.ValidatePropertyType(System.String,System.Object,System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L745C9-L754C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L745C9-L754C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.ValidatePropertyValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L767C17-L797C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L767C17-L797C22" }, { "DocsId": "M:System.Drawing.Design.ToolboxItem.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L802C9-L802C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L802C9-L802C51" }, { "DocsId": "E:System.Drawing.Design.ToolboxItem.ComponentsCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L187C16-L187C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L187C16-L187C48" }, { "DocsId": "E:System.Drawing.Design.ToolboxItem.ComponentsCreating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L196C16-L196C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L196C16-L196C49" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.AssemblyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L55C16-L55C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L55C16-L55C57" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.DependentAssemblies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L67C13-L68C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L67C13-L68C52" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Bitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L79C16-L79C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L79C16-L79C45" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.OriginalBitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L89C16-L89C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L89C16-L89C53" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Company", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L99C16-L99C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L99C16-L99C46" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.ComponentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L106C44-L106C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L106C44-L106C67" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L114C16-L114C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L114C16-L114C50" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L124C16-L124C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L124C16-L124C50" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Filter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L135C16-L135C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L135C16-L135C50" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.IsTransient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L146C16-L146C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L146C16-L146C48" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Locked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L154C35-L154C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L154C35-L154C42" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L163C38-L163C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L163C38-L163C115" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L171C16-L171C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L171C16-L171C47" }, { "DocsId": "P:System.Drawing.Design.ToolboxItem.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L180C38-L180C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs#L180C38-L180C87" } ], "DocsId": "T:System.Drawing.Design.ToolboxItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxItemCollection.#ctor(System.Drawing.Design.ToolboxItemCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L16C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L16C5-L19C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCollection.#ctor(System.Drawing.Design.ToolboxItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L24C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L24C5-L27C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCollection.Contains(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L38C48-L38C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L38C48-L38C73" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCollection.CopyTo(System.Drawing.Design.ToolboxItem[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L46C9-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L46C9-L47C6" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCollection.IndexOf(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L53C46-L53C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L53C46-L53C70" }, { "DocsId": "P:System.Drawing.Design.ToolboxItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L32C43-L32C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs#L32C43-L32C73" } ], "DocsId": "T:System.Drawing.Design.ToolboxItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.ToolboxItemCreatorCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCreatorCallback.Invoke(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCreatorCallback.BeginInvoke(System.Object,System.String,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" }, { "DocsId": "M:System.Drawing.Design.ToolboxItemCreatorCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" } ], "DocsId": "T:System.Drawing.Design.ToolboxItemCreatorCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Drawing/Design/ToolboxItemCreatorCallback.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs.#ctor(System.ComponentModel.Design.DesignSurface,System.ComponentModel.Design.DesignSurface)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L14C5-L18C6" }, { "DocsId": "P:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs.OldSurface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L23C40-L23C44" }, { "DocsId": "P:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs.NewSurface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L28C40-L28C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs#L28C40-L28C44" } ], "DocsId": "T:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler.Invoke(System.Object,System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" } ], "DocsId": "T:System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ActiveDesignSurfaceChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ArrayEditor.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L15C37-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L15C37-L17C6" }, { "DocsId": "M:System.ComponentModel.Design.ArrayEditor.CreateCollectionItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L24C9-L26C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L24C9-L26C76" }, { "DocsId": "M:System.ComponentModel.Design.ArrayEditor.GetItems(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L34C9-L41C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L34C9-L41C19" }, { "DocsId": "M:System.ComponentModel.Design.ArrayEditor.SetItems(System.Object,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L49C9-L61C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs#L49C9-L61C25" } ], "DocsId": "T:System.ComponentModel.Design.ArrayEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ArrayEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs#L97C9-L120C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs#L97C9-L120C22" }, { "DocsId": "M:System.ComponentModel.Design.BinaryEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs#L124C92-L124C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs#L124C92-L124C119" }, { "DocsId": "M:System.ComponentModel.Design.BinaryEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs" } ], "DocsId": "T:System.ComponentModel.Design.BinaryEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/BinaryEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ByteViewer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L44C5-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L44C5-L76C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.GetBytes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L367C41-L367C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L367C41-L367C49" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.GetDisplayMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L372C52-L372C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L372C52-L372C64" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L509C9-L510C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L509C9-L510C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L517C9-L539C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L517C9-L539C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L547C9-L585C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L547C9-L585C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.SaveToFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L592C9-L594C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L592C9-L594C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.ScrollChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L601C9-L604C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L601C9-L604C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.SetBytes(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L611C9-L616C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L611C9-L616C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.SetDisplayMode(System.ComponentModel.Design.DisplayMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L623C9-L665C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L623C9-L665C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.SetFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L672C9-L673C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L672C9-L673C6" }, { "DocsId": "M:System.ComponentModel.Design.ByteViewer.SetStartLine(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L680C9-L688C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs#L680C9-L688C6" } ], "DocsId": "T:System.ComponentModel.Design.ByteViewer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ByteViewer.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L26C5-L26C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L26C5-L26C80" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CanRemoveInstance(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L58C9-L68C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L58C9-L68C21" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CancelChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L76C5-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L76C5-L76C6" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CanSelectMultipleInstances", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L81C60-L81C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L81C60-L81C64" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CreateCollectionForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L86C64-L86C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L86C64-L86C104" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CreateInstance(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L93C9-L126C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L93C9-L126C33" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.GetObjectsFromInstance(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L133C73-L133C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L133C73-L133C99" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.GetDisplayText(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L140C9-L168C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L140C9-L168C21" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CreateCollectionItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L176C9-L186C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L176C9-L186C31" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CreateNewItemTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L192C54-L192C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L192C54-L192C74" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.DestroyInstance(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L199C9-L214C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L199C9-L214C6" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L221C9-L290C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L221C9-L290C6" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L293C92-L293C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L293C92-L293C119" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.GetItems(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L333C9-L340C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L333C9-L340C19" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L346C55-L346C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L346C55-L346C87" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.SetItems(System.Object,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L387C9-L399C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L387C9-L399C26" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L407C9-L411C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L407C9-L411C6" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L31C42-L31C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L31C42-L31C92" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L36C37-L36C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L36C37-L36C41" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L41C49-L41C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L41C49-L41C53" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.NewItemTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L46C38-L46C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L46C38-L46C76" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.HelpTopic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L51C43-L51C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs#L51C43-L51C80" }, { "DocsId": "T:System.ComponentModel.Design.CollectionEditor.CollectionForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" } ], "DocsId": "T:System.ComponentModel.Design.CollectionEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.InitializeExistingComponent(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L132C12-L132C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L132C12-L132C72" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.InitializeNewComponent(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L145C9-L155C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L145C9-L155C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PostFilterAttributes(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L157C74-L157C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L157C74-L157C106" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PostFilterEvents(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L159C66-L159C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L159C66-L159C90" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PostFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L161C74-L161C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L161C74-L161C106" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PreFilterAttributes(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L163C73-L163C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L163C73-L163C104" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PreFilterEvents(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L165C65-L165C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L165C65-L165C88" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#IDesignerFilter#PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L167C73-L167C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L167C73-L167C104" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#ITreeDesigner#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L195C13-L216C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L195C13-L216C42" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#ITreeDesigner#get_Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L224C13-L230C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L224C13-L230C25" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L239C9-L241C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L239C9-L241C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L250C9-L358C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L250C9-L358C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.Initialize(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L377C9-L400C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L377C9-L400C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.InvokeGetInheritanceAttribute(System.ComponentModel.Design.ComponentDesigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L447C12-L447C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L447C12-L447C42" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L454C9-L464C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L454C9-L464C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.InitializeNonDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L552C5-L552C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L552C5-L552C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L557C63-L557C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L557C63-L557C104" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.OnSetComponentDefaults", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L580C9-L581C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L580C9-L581C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PostFilterAttributes(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L598C9-L614C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L598C9-L614C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PostFilterEvents(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L622C9-L643C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L622C9-L643C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PostFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L651C9-L686C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L651C9-L686C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PreFilterAttributes(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L694C5-L694C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L694C5-L694C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PreFilterEvents(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L702C5-L702C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L702C5-L702C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L710C9-L718C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L710C9-L718C6" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.RaiseComponentChanged(System.ComponentModel.MemberDescriptor,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L726C12-L726C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L726C12-L726C108" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.RaiseComponentChanging(System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L734C12-L734C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L734C12-L734C89" }, { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.ActionLists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L28C64-L28C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L28C64-L28C83" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.AssociatedComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L34C56-L34C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L34C56-L34C81" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.Inherited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L63C13-L64C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L63C13-L64C120" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.ParentComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L82C13-L83C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L82C13-L83C52" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.InheritanceAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L94C13-L107C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L94C13-L107C42" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.ShadowProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L116C60-L116C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L116C60-L116C116" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L172C36-L172C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L172C36-L172C116" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.Verbs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L183C52-L183C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L183C52-L183C65" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.SetTextualDefaultProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L189C57-L189C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L189C57-L189C61" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#ITreeDesigner#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L195C13-L216C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L195C13-L216C42" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.System#ComponentModel#Design#ITreeDesigner#Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L224C13-L230C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs#L224C13-L230C25" }, { "DocsId": "T:System.ComponentModel.Design.ComponentDesigner.ShadowPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs" } ], "DocsId": "T:System.ComponentModel.Design.ComponentDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceDescriptor.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceDescriptor.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceDescriptor.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceDescriptor.IsDesignable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" } ], "DocsId": "T:System.ComponentModel.Design.DataSourceDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L10C47-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L10C47-L12C6" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.Add(System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L14C51-L14C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L14C51-L14C66" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.IndexOf(System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L16C55-L16C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L16C55-L16C74" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.Insert(System.Int32,System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L18C66-L18C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L18C66-L18C91" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.Contains(System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L20C57-L20C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L20C57-L20C77" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.CopyTo(System.ComponentModel.Design.DataSourceDescriptor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L22C68-L22C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L22C68-L22C93" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceDescriptorCollection.Remove(System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L24C55-L24C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L24C55-L24C73" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceDescriptorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L28C16-L28C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs#L28C16-L28C51" } ], "DocsId": "T:System.ComponentModel.Design.DataSourceDescriptorCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceDescriptorCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DataSourceGroup.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceGroup.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceGroup.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceGroup.DataSources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceGroup.IsDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" } ], "DocsId": "T:System.ComponentModel.Design.DataSourceGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroup.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L10C42-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L10C42-L12C6" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.Add(System.ComponentModel.Design.DataSourceGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L14C46-L14C61" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.IndexOf(System.ComponentModel.Design.DataSourceGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L16C50-L16C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L16C50-L16C69" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.Insert(System.Int32,System.ComponentModel.Design.DataSourceGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L18C61-L18C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L18C61-L18C86" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.Contains(System.ComponentModel.Design.DataSourceGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L20C52-L20C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L20C52-L20C72" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.CopyTo(System.ComponentModel.Design.DataSourceGroup[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L22C63-L22C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L22C63-L22C88" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceGroupCollection.Remove(System.ComponentModel.Design.DataSourceGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L24C50-L24C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L24C50-L24C68" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceGroupCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L28C16-L28C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs#L28C16-L28C46" } ], "DocsId": "T:System.ComponentModel.Design.DataSourceGroupCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceGroupCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.GetDataSources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.InvokeAddNewDataSource(System.Windows.Forms.IWin32Window,System.Windows.Forms.FormStartPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.InvokeConfigureDataSource(System.Windows.Forms.IWin32Window,System.Windows.Forms.FormStartPosition,System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.AddDataSourceInstance(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.DataSourceDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.NotifyDataSourceComponentAdded(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "M:System.ComponentModel.Design.DataSourceProviderService.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceProviderService.SupportsAddNewDataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "DocsId": "P:System.ComponentModel.Design.DataSourceProviderService.SupportsConfigureDataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" } ], "DocsId": "T:System.ComponentModel.Design.DataSourceProviderService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DataSourceProviderService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DateTimeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs#L17C9-L28C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs#L17C9-L28C22" }, { "DocsId": "M:System.ComponentModel.Design.DateTimeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs#L32C92-L32C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs#L32C92-L32C122" }, { "DocsId": "M:System.ComponentModel.Design.DateTimeEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs" } ], "DocsId": "T:System.ComponentModel.Design.DateTimeEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DateTimeEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionHeaderItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs#L8C59-L10C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs#L8C59-L10C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionHeaderItem.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs#L12C76-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs#L12C76-L14C6" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionHeaderItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionHeaderItem.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionItem.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L39C50-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L39C50-L24C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.AllowAssociate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L29C34-L29C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L29C34-L29C38" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L31C39-L31C43" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L33C42-L33C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L33C42-L33C46" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L35C42-L35C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L35C42-L35C46" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L37C38-L37C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L37C38-L37C76" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItem.ShowInSourceView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L39C36-L39C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs#L39C36-L39C40" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItem.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.Add(System.ComponentModel.Design.DesignerActionItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L16C49-L16C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L16C49-L16C64" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.Contains(System.ComponentModel.Design.DesignerActionItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L18C55-L18C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L18C55-L18C75" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.CopyTo(System.ComponentModel.Design.DesignerActionItem[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L20C66-L20C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L20C66-L20C91" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.IndexOf(System.ComponentModel.Design.DesignerActionItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L22C53-L22C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L22C53-L22C72" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.Insert(System.Int32,System.ComponentModel.Design.DesignerActionItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L24C64-L24C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L24C64-L24C89" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.Remove(System.ComponentModel.Design.DesignerActionItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L26C53-L26C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L26C53-L26C71" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionItemCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L12C16-L12C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs#L12C16-L12C48" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionList.#ctor(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L16C5-L16C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L16C5-L16C78" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionList.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L22C52-L22C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L22C52-L22C92" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionList.GetSortedActionItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L26C9-L66C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L26C9-L66C28" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionList.AutoShow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L18C36-L18C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L18C36-L18C40" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionList.Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L20C36-L20C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs#L20C36-L20C40" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionList.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L10C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L10C5-L12C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.#ctor(System.ComponentModel.Design.DesignerActionList[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L14C5-L17C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.Add(System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L25C50-L25C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L25C50-L25C65" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.AddRange(System.ComponentModel.Design.DesignerActionList[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L29C9-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L29C9-L35C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.AddRange(System.ComponentModel.Design.DesignerActionListCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L39C9-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L39C9-L46C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.Insert(System.Int32,System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L48C65-L48C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L48C65-L48C90" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.IndexOf(System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L50C54-L50C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L50C54-L50C73" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.Contains(System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L52C56-L52C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L52C56-L52C76" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.Remove(System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L54C54-L54C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L54C54-L54C72" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.CopyTo(System.ComponentModel.Design.DesignerActionList[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L56C67-L56C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L56C67-L56C92" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L61C5-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L61C5-L61C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionListCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L21C16-L21C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs#L21C16-L21C48" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionListCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionListsChangedEventArgs.#ctor(System.Object,System.ComponentModel.Design.DesignerActionListsChangedType,System.ComponentModel.Design.DesignerActionListCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L24C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L24C5-L29C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionListsChangedEventArgs.RelatedObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L35C36-L35C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L35C36-L35C40" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionListsChangedEventArgs.ChangeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L41C56-L41C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L41C56-L41C60" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionListsChangedEventArgs.ActionLists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L47C56-L47C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs#L47C56-L47C60" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionListsChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionListsChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListsChangedEventHandler.Invoke(System.Object,System.ComponentModel.Design.DesignerActionListsChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListsChangedEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.DesignerActionListsChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionListsChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionListsChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.DesignerActionListsChangedType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" }, { "DocsId": "F:System.ComponentModel.Design.DesignerActionListsChangedType.ActionListsAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" }, { "DocsId": "F:System.ComponentModel.Design.DesignerActionListsChangedType.ActionListsRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionListsChangedType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionListsChangedType.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L20C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L20C11-L25C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L31C11-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L31C11-L39C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L46C11-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L46C11-L54C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L61C11-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L61C11-L69C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L77C11-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L77C11-L85C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.#ctor(System.ComponentModel.Design.DesignerActionList,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L93C11-L101C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L93C11-L101C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionMethodItem.Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L111C9-L124C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L111C9-L124C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionMethodItem.MemberName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L103C41-L103C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L103C41-L103C45" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionMethodItem.RelatedComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L105C43-L105C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L105C43-L105C47" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionMethodItem.IncludeAsDesignerVerb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L107C49-L107C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs#L107C49-L107C53" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionMethodItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionMethodItem.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionPropertyItem.#ctor(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L9C11-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L9C11-L12C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionPropertyItem.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L15C11-L17C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionPropertyItem.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L20C11-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L20C11-L22C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionPropertyItem.MemberName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L24C32-L24C36" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionPropertyItem.RelatedComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L26C43-L26C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs#L26C43-L26C47" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionPropertyItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPropertyItem.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L31C5-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L31C5-L49C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Add(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerActionListCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L65C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L65C9-L79C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Add(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L86C9-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L86C9-L87C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L94C9-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L94C9-L110C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Contains(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L117C9-L118C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L117C9-L118C55" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L126C9-L127C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L126C9-L127C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L131C9-L141C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L131C9-L141C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.GetComponentActions(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L145C9-L145C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L145C9-L145C73" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.GetComponentActions(System.ComponentModel.IComponent,System.Windows.Forms.Design.ComponentActionsType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L150C9-L167C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L150C9-L167C23" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.GetComponentDesignerActions(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerActionListCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L172C9-L235C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L172C9-L235C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.GetComponentServiceActions(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerActionListCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L266C9-L284C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L266C9-L284C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Remove(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L308C9-L314C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L308C9-L314C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Remove(System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L322C9-L333C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L322C9-L333C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionService.Remove(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerActionList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L341C9-L368C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L341C9-L368C6" }, { "DocsId": "E:System.ComponentModel.Design.DesignerActionService.DesignerActionListsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L56C16-L56C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs#L56C16-L56C52" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionTextItem.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionTextItem.cs#L8C76-L10C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionTextItem.cs#L8C76-L10C6" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionTextItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionTextItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionTextItem.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIService.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L32C9-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L32C9-L37C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIService.HideUI(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L49C9-L50C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L49C9-L50C103" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIService.ShowUI(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L53C9-L54C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L53C9-L54C103" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIService.Refresh(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L61C9-L62C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L61C9-L62C106" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIService.ShouldAutoShow(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L73C9-L100C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L73C9-L100C22" }, { "DocsId": "E:System.ComponentModel.Design.DesignerActionUIService.DesignerActionUIStateChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L44C16-L44C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs#L44C16-L44C66" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionUIService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs.#ctor(System.Object,System.ComponentModel.Design.DesignerActionUIStateChangeType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L16C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L16C5-L20C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs.RelatedObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L25C36-L25C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L25C36-L25C40" }, { "DocsId": "P:System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs.ChangeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L30C57-L30C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs#L30C57-L30C61" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler.Invoke(System.Object,System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.DesignerActionUIStateChangeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.DesignerActionUIStateChangeType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" }, { "DocsId": "F:System.ComponentModel.Design.DesignerActionUIStateChangeType.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" }, { "DocsId": "F:System.ComponentModel.Design.DesignerActionUIStateChangeType.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" }, { "DocsId": "F:System.ComponentModel.Design.DesignerActionUIStateChangeType.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" } ], "DocsId": "T:System.ComponentModel.Design.DesignerActionUIStateChangeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionUIStateChangeType.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignerCommandSet.GetCommands(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L13C61-L13C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L13C61-L13C65" }, { "DocsId": "M:System.ComponentModel.Design.DesignerCommandSet.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs" }, { "DocsId": "P:System.ComponentModel.Design.DesignerCommandSet.Verbs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L15C45-L15C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L15C45-L15C95" }, { "DocsId": "P:System.ComponentModel.Design.DesignerCommandSet.ActionLists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L17C57-L17C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs#L17C57-L17C119" } ], "DocsId": "T:System.ComponentModel.Design.DesignerCommandSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerCommandSet.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignSurface.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L22C30-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L22C30-L24C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L32C5-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L32C5-L46C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L51C52-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L51C52-L53C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.#ctor(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L61C86-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L61C86-L66C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.BeginLoad(System.ComponentModel.Design.Serialization.DesignerLoader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L225C9-L231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L225C9-L231C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.BeginLoad(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L240C9-L243C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L240C9-L243C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.CreateComponent(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L251C9-L251C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L251C9-L251C60" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.CreateDesigner(System.ComponentModel.IComponent,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L259C9-L264C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L259C9-L264C75" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.CreateInstance(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L273C9-L297C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L273C9-L297C25" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.CreateNestedContainer(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L308C9-L308C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L308C9-L308C61" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.CreateNestedContainer(System.ComponentModel.IComponent,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L319C9-L321C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L319C9-L321C79" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L329C9-L330C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L329C9-L330C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L338C9-L369C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L338C9-L369C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L376C9-L379C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L376C9-L379C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L388C9-L388C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L388C9-L388C59" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.OnLoaded(System.ComponentModel.Design.LoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L473C9-L474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L473C9-L474C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.OnLoading(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L489C9-L490C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L489C9-L490C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.OnUnloaded(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L505C9-L506C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L505C9-L506C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.OnUnloading(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L524C9-L525C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L524C9-L525C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurface.OnViewActivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L533C9-L534C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L533C9-L534C6" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Disposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Flushed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Loaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Loading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Unloaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.Unloading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurface.ViewActivated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.ComponentContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L75C13-L76C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L75C13-L76C53" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.IsLoaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L85C28-L85C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L85C28-L85C32" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.LoadErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L90C38-L90C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L90C38-L90C74" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.DtelLoading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L97C9-L97C13" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L97C9-L97C13" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.ServiceContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L108C13-L109C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L108C13-L109C38" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurface.View", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L128C13-L174C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs#L128C13-L174C59" } ], "DocsId": "T:System.ComponentModel.Design.DesignSurface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurface.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L48C43-L48C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L48C43-L48C98" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L50C30-L50C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L50C30-L50C35" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L52C40-L52C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L52C40-L52C45" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L54C36-L54C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L54C36-L54C41" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L58C43-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L58C43-L62C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.CopyTo(System.ComponentModel.Design.DesignSurface[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L64C61-L64C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L64C61-L64C101" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L66C48-L66C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L66C48-L66C63" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L26C25-L26C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L26C25-L26C41" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L35C13-L41C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L35C13-L41C47" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L50C30-L50C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L50C30-L50C35" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L52C40-L52C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L52C40-L52C45" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L54C36-L54C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs#L54C36-L54C41" } ], "DocsId": "T:System.ComponentModel.Design.DesignSurfaceCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceEventHandler.Invoke(System.Object,System.ComponentModel.Design.DesignSurfaceEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.DesignSurfaceEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" } ], "DocsId": "T:System.ComponentModel.Design.DesignSurfaceEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceEventArgs.#ctor(System.ComponentModel.Design.DesignSurface)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs#L19C5-L22C6" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceEventArgs.Surface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs#L27C36-L27C40" } ], "DocsId": "T:System.ComponentModel.Design.DesignSurfaceEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceEvent.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L23C11-L25C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L31C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L31C5-L37C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.CreateDesignSurface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L205C9-L216C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L205C9-L216C24" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.CreateDesignSurface(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L230C9-L243C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L230C9-L243C24" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.CreateDesignSurfaceCore(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L250C97-L250C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L250C97-L250C116" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L257C9-L258C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L257C9-L258C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L265C9-L272C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L265C9-L272C6" }, { "DocsId": "M:System.ComponentModel.Design.DesignSurfaceManager.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L278C52-L278C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L278C52-L278C94" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurfaceManager.ActiveDesignSurfaceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L91C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L91C13-L98C10" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurfaceManager.DesignSurfaceCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L120C13-L127C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L120C13-L127C10" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurfaceManager.DesignSurfaceDisposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L149C13-L156C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L149C13-L156C10" }, { "DocsId": "E:System.ComponentModel.Design.DesignSurfaceManager.SelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L179C13-L186C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L179C13-L186C10" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceManager.ActiveDesignSurface", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L50C16-L50C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L50C16-L50C73" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceManager.DesignSurfaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L69C54-L69C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L69C54-L69C82" }, { "DocsId": "P:System.ComponentModel.Design.DesignSurfaceManager.ServiceContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L81C52-L81C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs#L81C52-L81C111" } ], "DocsId": "T:System.ComponentModel.Design.DesignSurfaceManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignSurfaceManager.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.DisplayMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" }, { "DocsId": "F:System.ComponentModel.Design.DisplayMode.Hexdump", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" }, { "DocsId": "F:System.ComponentModel.Design.DisplayMode.Ansi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" }, { "DocsId": "F:System.ComponentModel.Design.DisplayMode.Unicode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" }, { "DocsId": "F:System.ComponentModel.Design.DisplayMode.Auto", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" } ], "DocsId": "T:System.ComponentModel.Design.DisplayMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DisplayMode.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.EventBindingService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L25C5-L28C6" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.CreateUniqueMethodName(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.FreeMethod(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L46C7-L46C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L46C7-L46C8" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.GetCompatibleMethods(System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L60C55-L60C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L60C55-L60C88" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.ShowCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.ShowCode(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.ShowCode(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.UseMethod(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L92C7-L92C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L92C7-L92C8" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.ValidateMethodName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L101C7-L101C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L101C7-L101C8" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#CreateUniqueMethodName(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L110C9-L113C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L110C9-L113C53" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#GetCompatibleMethods(System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L122C9-L124C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L122C9-L124C40" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#GetEvent(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L133C9-L133C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L133C9-L133C61" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#GetEventProperties(System.ComponentModel.EventDescriptorCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L174C9-L191C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L174C9-L191C61" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#GetEventProperty(System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L199C9-L203C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L199C9-L203C21" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#ShowCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L212C9-L212C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L212C9-L212C27" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#ShowCode(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L221C9-L221C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L221C9-L221C37" }, { "DocsId": "M:System.ComponentModel.Design.EventBindingService.System#ComponentModel#Design#IEventBindingService#ShowCode(System.ComponentModel.IComponent,System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L230C9-L247C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs#L230C9-L247C21" } ], "DocsId": "T:System.ComponentModel.Design.EventBindingService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/EventBindingService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ExceptionCollection.#ctor(System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L13C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L13C5-L26C6" }, { "DocsId": "M:System.ComponentModel.Design.ExceptionCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L38C9-L38C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L38C9-L38C51" }, { "DocsId": "P:System.ComponentModel.Design.ExceptionCollection.Exceptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L33C37-L33C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs#L33C37-L33C92" } ], "DocsId": "T:System.ComponentModel.Design.ExceptionCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ExceptionCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.IMultitargetHelperService.GetAssemblyQualifiedName(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/IMultitargetHelperService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/IMultitargetHelperService.cs" } ], "DocsId": "T:System.ComponentModel.Design.IMultitargetHelperService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/IMultitargetHelperService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/IMultitargetHelperService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.InheritanceService.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L28C5-L31C6" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L38C9-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L38C9-L39C6" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L43C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L43C9-L48C6" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.AddInheritedComponents(System.ComponentModel.IComponent,System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L55C9-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L55C9-L56C6" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.AddInheritedComponents(System.Type,System.ComponentModel.IComponent,System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L64C9-L225C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L64C9-L225C6" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.IgnoreInheritedMember(System.Reflection.MemberInfo,System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L233C9-L243C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L233C9-L243C21" }, { "DocsId": "M:System.ComponentModel.Design.InheritanceService.GetInheritanceAttribute(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L250C12-L252C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs#L250C12-L252C43" } ], "DocsId": "T:System.ComponentModel.Design.InheritanceService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/InheritanceService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.LoadedEventArgs.#ctor(System.Boolean,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L16C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L16C5-L20C6" }, { "DocsId": "P:System.ComponentModel.Design.LoadedEventArgs.HasSucceeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L26C32-L26C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L26C32-L26C36" }, { "DocsId": "P:System.ComponentModel.Design.LoadedEventArgs.Errors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L31C33-L31C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs#L31C33-L31C37" } ], "DocsId": "T:System.ComponentModel.Design.LoadedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.LoadedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.LoadedEventHandler.Invoke(System.Object,System.ComponentModel.Design.LoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.LoadedEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.LoadedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.LoadedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" } ], "DocsId": "T:System.ComponentModel.Design.LoadedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/LoadedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.MenuCommandsChangedEventArgs.#ctor(System.ComponentModel.Design.MenuCommandsChangedType,System.ComponentModel.Design.MenuCommand)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L18C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L18C5-L22C6" }, { "DocsId": "P:System.ComponentModel.Design.MenuCommandsChangedEventArgs.ChangeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L28C49-L28C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L28C49-L28C53" }, { "DocsId": "P:System.ComponentModel.Design.MenuCommandsChangedEventArgs.Command", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L33C35-L33C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs#L33C35-L33C39" } ], "DocsId": "T:System.ComponentModel.Design.MenuCommandsChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.MenuCommandsChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandsChangedEventHandler.Invoke(System.Object,System.ComponentModel.Design.MenuCommandsChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandsChangedEventHandler.BeginInvoke(System.Object,System.ComponentModel.Design.MenuCommandsChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandsChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" } ], "DocsId": "T:System.ComponentModel.Design.MenuCommandsChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.MenuCommandsChangedType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" }, { "DocsId": "F:System.ComponentModel.Design.MenuCommandsChangedType.CommandAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" }, { "DocsId": "F:System.ComponentModel.Design.MenuCommandsChangedType.CommandRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" }, { "DocsId": "F:System.ComponentModel.Design.MenuCommandsChangedType.CommandChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" } ], "DocsId": "T:System.ComponentModel.Design.MenuCommandsChangedType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandsChangedType.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L20C5-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L20C5-L44C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.AddCommand(System.ComponentModel.Design.MenuCommand)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L75C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L75C9-L107C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.AddVerb(System.ComponentModel.Design.DesignerVerb)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L118C9-L128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L118C9-L128C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L135C9-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L135C9-L136C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L143C9-L168C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L143C9-L168C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.EnsureVerbs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L178C9-L306C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L178C9-L306C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.FindCommand(System.ComponentModel.Design.CommandID)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L314C9-L314C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L314C9-L314C58" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.FindCommand(System.Guid,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L322C5-L373C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L322C5-L373C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.GetCommandList(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L379C5-L386C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L379C5-L386C25" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L391C9-L392C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L391C9-L392C58" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.GlobalInvoke(System.ComponentModel.Design.CommandID)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L410C9-L417C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L410C9-L417C22" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.GlobalInvoke(System.ComponentModel.Design.CommandID,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L429C9-L436C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L429C9-L436C22" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.OnCommandsChanged(System.ComponentModel.Design.MenuCommandsChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L449C9-L450C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L449C9-L450C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.RemoveCommand(System.ComponentModel.Design.MenuCommand)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L482C9-L504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L482C9-L504C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.RemoveVerb(System.ComponentModel.Design.DesignerVerb)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L511C9-L526C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L511C9-L526C6" }, { "DocsId": "M:System.ComponentModel.Design.MenuCommandService.ShowContextMenu(System.ComponentModel.Design.CommandID,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L533C5-L533C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L533C5-L533C6" }, { "DocsId": "E:System.ComponentModel.Design.MenuCommandService.MenuCommandsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L51C16-L51C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L51C16-L51C48" }, { "DocsId": "P:System.ComponentModel.Design.MenuCommandService.Verbs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L64C13-L65C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs#L64C13-L65C35" } ], "DocsId": "T:System.ComponentModel.Design.MenuCommandService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MenuCommandService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.MultilineStringEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L19C9-L30C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L19C9-L30C55" }, { "DocsId": "M:System.ComponentModel.Design.MultilineStringEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L36C92-L36C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L36C92-L36C122" }, { "DocsId": "M:System.ComponentModel.Design.MultilineStringEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L41C85-L41C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs#L41C85-L41C90" }, { "DocsId": "M:System.ComponentModel.Design.MultilineStringEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs" } ], "DocsId": "T:System.ComponentModel.Design.MultilineStringEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/MultilineStringEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L17C5-L19C6" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L21C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L21C5-L24C6" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L29C9-L53C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L29C9-L53C22" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.ApplyTreeViewThemeStyles(System.Windows.Forms.TreeView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L62C9-L71C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L62C9-L71C6" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L73C92-L73C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L73C92-L73C122" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.EqualsToValue(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L75C61-L75C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L75C61-L75C79" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.FillTreeWithData(System.ComponentModel.Design.ObjectSelectorEditor.Selector,System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L78C12-L78C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L78C12-L78C28" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.SetValue(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L81C52-L81C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs#L81C52-L81C69" }, { "DocsId": "F:System.ComponentModel.Design.ObjectSelectorEditor.SubObjectSelector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" }, { "DocsId": "F:System.ComponentModel.Design.ObjectSelectorEditor.prevValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" }, { "DocsId": "F:System.ComponentModel.Design.ObjectSelectorEditor.currValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" }, { "DocsId": "T:System.ComponentModel.Design.ObjectSelectorEditor.Selector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" }, { "DocsId": "T:System.ComponentModel.Design.ObjectSelectorEditor.SelectorNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" } ], "DocsId": "T:System.ComponentModel.Design.ObjectSelectorEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ProjectTargetFrameworkAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs#L9C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs#L9C5-L12C6" }, { "DocsId": "P:System.ComponentModel.Design.ProjectTargetFrameworkAttribute.TargetFrameworkMoniker", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs#L14C44-L14C48" } ], "DocsId": "T:System.ComponentModel.Design.ProjectTargetFrameworkAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ProjectTargetFrameworkAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.UndoEngine.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L36C5-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L36C5-L58C6" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.AddUndoUnit(System.ComponentModel.Design.UndoEngine.UndoUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.CreateUndoUnit(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L202C9-L202C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L202C9-L202C41" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.DiscardUndoUnit(System.ComponentModel.Design.UndoEngine.UndoUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L215C5-L215C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L215C5-L215C6" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L222C9-L223C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L222C9-L223C6" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L230C9-L245C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L230C9-L245C6" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.GetRequiredService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L285C9-L295C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L285C9-L295C24" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L305C9-L307C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L305C9-L307C51" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.OnUndoing(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L538C9-L539C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L538C9-L539C6" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.OnUndone(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L546C9-L547C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L546C9-L547C6" }, { "DocsId": "E:System.ComponentModel.Design.UndoEngine.Undoing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L87C16-L87C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L87C16-L87C38" }, { "DocsId": "E:System.ComponentModel.Design.UndoEngine.Undone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L96C16-L96C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L96C16-L96C37" }, { "DocsId": "P:System.ComponentModel.Design.UndoEngine.UndoInProgress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L63C35-L63C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L63C35-L63C61" }, { "DocsId": "P:System.ComponentModel.Design.UndoEngine.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L80C27-L80C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs#L80C27-L80C31" }, { "DocsId": "T:System.ComponentModel.Design.UndoEngine.UndoUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs" } ], "DocsId": "T:System.ComponentModel.Design.UndoEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L48C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L48C5-L55C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L140C9-L232C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L140C9-L232C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L244C9-L269C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L244C9-L269C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L283C9-L338C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L283C9-L338C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L345C9-L352C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L345C9-L352C24" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Initialize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L385C44-L385C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L385C44-L385C95" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.IsReloadNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L396C48-L396C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L396C48-L396C52" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.OnBeginLoad", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L412C9-L431C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L412C9-L431C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.EnableComponentNotification(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L438C9-L449C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L438C9-L449C34" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.OnBeginUnload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L460C7-L460C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L460C7-L460C8" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.OnEndLoad(System.Boolean,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L628C9-L704C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L628C9-L704C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.OnModifying", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L713C7-L713C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L713C7-L713C8" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.PerformFlush(System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.PerformLoad(System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Reload(System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L809C9-L835C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L809C9-L835C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReportFlushErrors(System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L846C9-L864C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L846C9-L864C18" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.SetBaseComponentClassName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L876C9-L879C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L876C9-L879C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.System#ComponentModel#Design#Serialization#IDesignerLoaderService#AddLoadDependency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L900C9-L909C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L900C9-L909C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.System#ComponentModel#Design#Serialization#IDesignerLoaderService#DependentLoadComplete(System.Boolean,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L920C9-L949C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L920C9-L949C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.BasicDesignerLoader.System#ComponentModel#Design#Serialization#IDesignerLoaderService#Reload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L962C9-L969C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L962C9-L969C21" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Modified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L69C16-L69C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L69C16-L69C39" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.BasicDesignerLoader.LoaderHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L81C13-L87C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L81C13-L87C87" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.BasicDesignerLoader.Loading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L97C37-L97C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L97C37-L97C73" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.BasicDesignerLoader.PropertyProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L107C13-L112C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L107C13-L112C59" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadPending", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L129C37-L129C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs#L129C37-L129C64" }, { "DocsId": "T:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.BasicDesignerLoader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L26C53-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L26C53-L28C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L33C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L33C5-L36C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.CreateStore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L42C57-L42C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L42C57-L42C97" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.LoadStore(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L52C68-L52C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L52C68-L52C109" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.Serialize(System.ComponentModel.Design.Serialization.SerializationStore,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L60C9-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L60C9-L69C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.SerializeAbsolute(System.ComponentModel.Design.Serialization.SerializationStore,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L77C9-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L77C9-L86C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.SerializeMember(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L95C9-L105C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L95C9-L105C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L119C9-L129C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L119C9-L129C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.Deserialize(System.ComponentModel.Design.Serialization.SerializationStore)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L137C9-L144C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L137C9-L144C47" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.Deserialize(System.ComponentModel.Design.Serialization.SerializationStore,System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L153C9-L161C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L153C9-L161C58" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService.DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore,System.ComponentModel.IContainer,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L174C9-L183C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs#L174C9-L183C6" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomComponentSerializationService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomComponentSerializationService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L91C9-L119C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L91C9-L119C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.Initialize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L583C9-L614C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L583C9-L614C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.IsReloadNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L624C9-L669C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L624C9-L669C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.OnBeginLoad", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L688C9-L695C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L688C9-L695C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.OnBeginUnload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L706C9-L708C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L706C9-L708C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.OnEndLoad(System.Boolean,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L758C9-L774C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L758C9-L774C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.Parse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformFlush(System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L788C9-L811C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L788C9-L811C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L821C9-L839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L821C9-L839C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.OnComponentRename(System.Object,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L847C9-L870C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L847C9-L870C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.Write(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.System#ComponentModel#Design#Serialization#IDesignerSerializationService#Deserialize(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L960C9-L971C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L960C9-L971C60" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.System#ComponentModel#Design#Serialization#IDesignerSerializationService#Serialize(System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L981C9-L994C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L981C9-L994C22" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.System#ComponentModel#Design#Serialization#INameCreationService#CreateName(System.ComponentModel.IContainer,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1005C9-L1089C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1005C9-L1089C26" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.System#ComponentModel#Design#Serialization#INameCreationService#IsValidName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1100C9-L1159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1100C9-L1159C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.System#ComponentModel#Design#Serialization#INameCreationService#ValidateName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1172C9-L1259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs#L1172C9-L1259C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.CodeDomProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.TypeResolutionService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomDesignerLoader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomDesignerLoader.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.Serialization.CodeDomLocalizationModel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.CodeDomLocalizationModel.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.CodeDomLocalizationModel.PropertyAssignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.CodeDomLocalizationModel.PropertyReflection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomLocalizationModel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationModel.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider.#ctor(System.IServiceProvider,System.ComponentModel.Design.Serialization.CodeDomLocalizationModel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L31C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L31C5-L37C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider.#ctor(System.IServiceProvider,System.ComponentModel.Design.Serialization.CodeDomLocalizationModel,System.Globalization.CultureInfo[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L46C5-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L46C5-L53C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L60C9-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L60C9-L66C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider.System#ComponentModel#Design#Serialization#IDesignerSerializationProvider#GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L196C9-L205C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs#L196C9-L205C21" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomLocalizationProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.GetTargetComponentName(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L31C9-L35C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L31C9-L35C22" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.Deserialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L46C9-L91C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L46C9-L91C25" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.DeserializeStatementToInstance(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L102C9-L128C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L102C9-L128C25" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.Serialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L136C9-L200C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L136C9-L200C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.SerializeAbsolute(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L209C9-L221C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L209C9-L221C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.SerializeMember(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L229C9-L257C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L229C9-L257C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L265C9-L283C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L265C9-L283C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.SerializeToReferenceExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L297C9-L338C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs#L297C9-L338C65" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomSerializer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializer.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeInstance(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Type,System.Object[],System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L35C9-L38C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L35C9-L38C79" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetTargetFrameworkProvider(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L102C9-L107C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L102C9-L107C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetReflectionTypeFromTypeHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L143C9-L159C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L143C9-L159C55" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetReflectionTypeHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L193C9-L204C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L193C9-L204C59" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetPropertiesHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L212C9-L236C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L212C9-L236C67" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetEventsHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L244C9-L268C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L244C9-L268C63" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetAttributesHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L276C9-L290C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L276C9-L290C55" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetAttributesFromTypeHelper(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L298C9-L322C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L298C9-L322C51" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializePropertiesFromResources(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L336C9-L397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L336C9-L397C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L407C9-L468C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L407C9-L468C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L656C9-L1170C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L656C9-L1170C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1654C9-L1741C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1654C9-L1741C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1752C9-L1829C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1752C9-L1829C60" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1840C9-L1840C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1840C9-L1840C68" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.IsSerialized(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1845C9-L1845C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1845C9-L1845C52" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.IsSerialized(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1855C9-L1865C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1855C9-L1865C30" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeCreationExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1875C9-L1929C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L1875C9-L1929C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetUniqueName(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2056C9-L2091C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2056C9-L2091C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeEvent(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatementCollection,System.Object,System.ComponentModel.EventDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2099C9-L2122C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2099C9-L2122C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeEvents(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatementCollection,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2129C9-L2134C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2129C9-L2134C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeProperties(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatementCollection,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2141C9-L2162C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2141C9-L2162C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializePropertiesToResources(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatementCollection,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2193C9-L2238C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2193C9-L2238C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeProperty(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeStatementCollection,System.Object,System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2245C9-L2267C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2245C9-L2267C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeResource(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2275C9-L2276C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2275C9-L2276C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeResourceInvariant(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2284C9-L2285C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2284C9-L2285C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeToExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2304C9-L2424C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2304C9-L2424C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeToResourceExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2524C9-L2524C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2524C9-L2524C68" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SerializeToResourceExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2537C9-L2570C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2537C9-L2570C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SetExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2575C9-L2576C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2575C9-L2576C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerBase.SetExpression(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.CodeDom.CodeExpression,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2586C9-L2597C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs#L2586C9-L2597C6" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomSerializerBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerBase.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerException.#ctor(System.String,System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L14C86-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L14C86-L17C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerException.#ctor(System.Exception,System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L19C84-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L19C84-L22C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerException.#ctor(System.String,System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L24C97-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L24C97-L27C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerException.#ctor(System.Exception,System.ComponentModel.Design.Serialization.IDesignerSerializationManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L29C95-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L29C95-L32C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CodeDomSerializerException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L42C9-L42C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L42C9-L42C51" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.CodeDomSerializerException.LinePragma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L37C41-L37C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs#L37C41-L37C45" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CodeDomSerializerException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CodeDomSerializerException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.CollectionCodeDomSerializer.MethodSupportsSerialization(System.Reflection.MethodInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L111C9-L123C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L111C9-L123C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CollectionCodeDomSerializer.Serialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L131C9-L222C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L131C9-L222C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CollectionCodeDomSerializer.SerializeCollection(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeExpression,System.Type,System.Collections.ICollection,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L298C9-L380C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs#L298C9-L380C23" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.CollectionCodeDomSerializer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.CollectionCodeDomSerializer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/CollectionCodeDomSerializer.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L42C5-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L42C5-L46C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L51C5-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L51C5-L56C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.CreateInstance(System.Type,System.Collections.ICollection,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L221C9-L384C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L221C9-L384C80" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.CreateSession", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L409C9-L416C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L409C9-L416C25" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.GetSerializer(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L426C9-L533C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L426C9-L533C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L540C12-L540C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L540C12-L540C94" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.GetType(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L547C9-L560C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L547C9-L560C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.GetRuntimeType(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L569C9-L575C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L569C9-L575C99" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.OnResolveName(System.ComponentModel.Design.Serialization.ResolveNameEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L583C9-L584C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L583C9-L584C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.OnSessionCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L591C9-L592C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L591C9-L592C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.OnSessionDisposed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L603C17-L621C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L603C17-L621C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#get_Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L644C13-L650C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L644C13-L650C34" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#get_Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L662C13-L683C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L662C13-L683C32" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#add_ResolveName(System.ComponentModel.Design.Serialization.ResolveNameEventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L698C13-L700C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L698C13-L700C10" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#remove_ResolveName(System.ComponentModel.Design.Serialization.ResolveNameEventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L701C19-L701C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L701C19-L701C52" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#add_SerializationComplete(System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L720C13-L722C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L720C13-L722C10" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#remove_SerializationComplete(System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L723C19-L723C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L723C19-L723C62" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L733C9-L735C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L733C9-L735C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#CreateInstance(System.Type,System.Collections.ICollection,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L743C9-L787C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L743C9-L787C25" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#GetInstance(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L795C9-L817C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L795C9-L817C25" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#GetName(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L825C9-L840C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L825C9-L840C103" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#GetSerializer(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L848C9-L848C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L848C9-L848C58" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#GetType(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L856C9-L879C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L856C9-L879C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L887C9-L888C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L887C9-L888C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#ReportError(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L898C9-L903C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L898C9-L903C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#SetName(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L919C9-L941C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L919C9-L941C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#IServiceProvider#GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L948C9-L948C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L948C9-L948C40" }, { "DocsId": "E:System.ComponentModel.Design.Serialization.DesignerSerializationManager.SessionCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L176C16-L176C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L176C16-L176C52" }, { "DocsId": "E:System.ComponentModel.Design.Serialization.DesignerSerializationManager.SessionDisposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L185C16-L185C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L185C16-L185C53" }, { "DocsId": "E:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#ResolveName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L698C13-L700C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L698C13-L700C10" }, { "DocsId": "E:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#SerializationComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L720C13-L722C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L720C13-L722C10" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L66C13-L74C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L66C13-L74C31" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.Errors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L91C13-L93C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L91C13-L93C31" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.PreserveNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L108C16-L108C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L108C16-L108C30" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.PropertyProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L123C16-L123C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L123C16-L123C33" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.RecycleInstances", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L145C16-L145C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L145C16-L145C33" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.ValidateRecycledTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L163C16-L163C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L163C16-L163C38" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L644C13-L650C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L644C13-L650C34" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.DesignerSerializationManager.System#ComponentModel#Design#Serialization#IDesignerSerializationManager#Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L662C13-L683C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs#L662C13-L683C32" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.DesignerSerializationManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/DesignerSerializationManager.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.ExpressionContext.#ctor(System.CodeDom.CodeExpression,System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L26C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L26C5-L32C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.ExpressionContext.#ctor(System.CodeDom.CodeExpression,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L34C94-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L34C94-L36C6" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.ExpressionContext.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L41C40-L41C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L41C40-L41C44" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.ExpressionContext.ExpressionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L47C34-L47C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L47C34-L47C38" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.ExpressionContext.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L54C27-L54C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L54C27-L54C31" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.ExpressionContext.PresetValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L77C34-L77C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs#L77C34-L77C38" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.ExpressionContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ExpressionContext.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.ICodeDomDesignerReload.ShouldReloadDesigner(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ICodeDomDesignerReload.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ICodeDomDesignerReload.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.ICodeDomDesignerReload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ICodeDomDesignerReload.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/ICodeDomDesignerReload.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.MemberCodeDomSerializer.Serialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.ComponentModel.MemberDescriptor,System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.MemberCodeDomSerializer.ShouldSerialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.MemberCodeDomSerializer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.MemberCodeDomSerializer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/MemberCodeDomSerializer.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.RootContext.#ctor(System.CodeDom.CodeExpression,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L20C5-L24C6" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.RootContext.Expression", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L29C40-L29C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L29C40-L29C44" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.RootContext.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L34C27-L34C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs#L34C27-L34C31" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.RootContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/RootContext.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.SerializeAbsoluteContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L24C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L24C5-L26C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.SerializeAbsoluteContext.#ctor(System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L32C5-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L32C5-L35C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.SerializeAbsoluteContext.ShouldSerialize(System.ComponentModel.MemberDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L48C9-L48C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L48C9-L48C51" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.SerializeAbsoluteContext.Member", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L41C39-L41C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs#L41C39-L41C43" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.SerializeAbsoluteContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/SerializeAbsoluteContext.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.StatementContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.StatementContext.StatementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L28C61-L28C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L28C61-L28C108" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.StatementContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.ObjectStatementCollection.ContainsKey(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L127C9-L134C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L127C9-L134C22" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.ObjectStatementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L143C9-L143C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L143C9-L143C42" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.ObjectStatementCollection.Populate(System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L153C9-L159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L153C9-L159C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.ObjectStatementCollection.Populate(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L168C9-L171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L168C9-L171C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.ObjectStatementCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L179C9-L179C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L179C9-L179C32" }, { "DocsId": "P:System.ComponentModel.Design.Serialization.ObjectStatementCollection.Item(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L92C13-L119C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs#L92C13-L119C10" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.ObjectStatementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/StatementContext.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Deserialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L40C9-L207C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L40C9-L207C27" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.GetInitializeMethod(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeTypeDeclaration,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L336C9-L346C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L336C9-L346C21" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.GetInitializeMethods(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L355C9-L367C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L355C9-L367C6" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Serialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object,System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L410C9-L471C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs#L410C9-L471C24" }, { "DocsId": "M:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.TypeCodeDomSerializer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/TypeCodeDomSerializer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.AnchorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs#L19C9-L31C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs#L19C9-L31C22" }, { "DocsId": "M:System.Windows.Forms.Design.AnchorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs#L35C92-L35C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs#L35C92-L35C122" }, { "DocsId": "M:System.Windows.Forms.Design.AnchorEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.AnchorEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AnchorEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.AxImporter.#ctor(System.Windows.Forms.Design.AxImporter.Options)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.cs#L11C5-L13C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.cs#L11C5-L13C70" }, { "DocsId": "T:System.Windows.Forms.Design.AxImporter.IReferenceResolver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" }, { "DocsId": "T:System.Windows.Forms.Design.AxImporter.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" } ], "DocsId": "T:System.Windows.Forms.Design.AxImporter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.BorderSidesEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs#L19C9-L35C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs#L19C9-L35C22" }, { "DocsId": "M:System.Windows.Forms.Design.BorderSidesEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs#L39C92-L39C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs#L39C92-L39C122" }, { "DocsId": "M:System.Windows.Forms.Design.BorderSidesEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.BorderSidesEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/BorderSidesEditor.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.ComponentActionsType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ComponentActionsType.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ComponentActionsType.Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ComponentActionsType.Service", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ComponentActionsType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentActionsType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#get_CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L42C16-L42C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L42C16-L42C76" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#AddComponent(System.ComponentModel.IComponent,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L47C9-L47C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L47C9-L47C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#IsDropOk(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L52C9-L52C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L52C9-L52C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#GetDesignerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L57C9-L57C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L57C9-L57C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#GetControlForComponent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L62C9-L62C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L62C9-L62C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#IRootDesigner#get_SupportedTechnologies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L65C61-L65C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L65C61-L65C96" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.Initialize(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L72C9-L72C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L72C9-L72C70" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#IRootDesigner#GetView(System.ComponentModel.Design.ViewTechnology)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L85C9-L85C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L85C9-L85C70" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Drawing#Design#IToolboxUser#GetToolSupported(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L90C9-L90C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L90C9-L90C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Drawing#Design#IToolboxUser#ToolPicked(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L95C9-L95C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L95C9-L95C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#ITypeDescriptorFilterService#FilterAttributes(System.ComponentModel.IComponent,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L100C9-L100C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L100C9-L100C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#ITypeDescriptorFilterService#FilterEvents(System.ComponentModel.IComponent,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L105C9-L105C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L105C9-L105C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#ITypeDescriptorFilterService#FilterProperties(System.ComponentModel.IComponent,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L110C9-L110C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L110C9-L110C45" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L119C9-L119C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L119C9-L119C70" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.GetToolSupported(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L129C9-L129C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L129C9-L129C70" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L140C9-L140C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L140C9-L140C70" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentDocumentDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentDocumentDesigner.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L20C31-L20C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L20C31-L20C91" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentDocumentDesigner.TrayAutoArrange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L27C16-L27C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L27C16-L27C76" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentDocumentDesigner.TrayLargeIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L36C16-L36C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L36C16-L36C76" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentDocumentDesigner.System#Windows#Forms#Design#IOleDragClient#CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L42C16-L42C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L42C16-L42C76" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentDocumentDesigner.System#ComponentModel#Design#IRootDesigner#SupportedTechnologies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L65C61-L65C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs#L65C61-L65C96" } ], "DocsId": "T:System.Windows.Forms.Design.ComponentDocumentDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentDocumentDesigner.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.#ctor(System.ComponentModel.Design.IDesigner,System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L29C5-L170C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L29C5-L170C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L477C9-L477C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L477C9-L477C95" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#get_Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L482C16-L482C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L482C16-L482C39" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#get_CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L487C16-L487C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L487C16-L487C20" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#AddComponent(System.ComponentModel.IComponent,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L493C9-L530C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L493C9-L530C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#IsDropOk(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L532C59-L532C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L532C59-L532C63" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#GetDesignerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L534C52-L534C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L534C52-L534C56" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#GetControlForComponent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L538C9-L544C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L538C9-L544C21" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#BeginDrag(System.Object[],System.Windows.Forms.Design.SelectionRules,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L549C9-L563C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L549C9-L563C23" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#DragMoved(System.Object[],System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L583C82-L583C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L583C82-L583C123" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#EndDrag(System.Object[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L587C9-L604C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L587C9-L604C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#GetComponentBounds(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L607C75-L607C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L607C75-L607C90" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#GetComponentRules(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L609C79-L609C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L609C79-L609C127" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#GetSelectionClipRect(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L613C9-L618C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L613C9-L618C32" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#OnSelectionDoubleClick(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L623C9-L630C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L623C9-L630C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#QueryBeginDrag(System.Object[],System.Windows.Forms.Design.SelectionRules,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L633C12-L633C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L633C12-L633C50" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#ShowContextMenu(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L635C71-L635C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L635C71-L635C99" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#OleDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L663C64-L663C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L663C64-L663C102" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#OleDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L665C63-L665C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L665C63-L665C100" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#OleDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L667C63-L667C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L667C63-L667C100" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#ISelectionUIHandler#OleDragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L669C48-L669C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L669C48-L669C84" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.AddComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L676C9-L740C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L676C9-L740C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.CanCreateComponentFromTool(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L745C9-L760C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L745C9-L760C74" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.CanDisplayComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L807C9-L807C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L807C9-L807C97" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.CreateComponentFromTool(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L813C9-L820C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L813C9-L820C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.DisplayError(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L827C9-L842C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L827C9-L842C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L849C9-L895C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L849C9-L895C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.GetNextComponent(System.ComponentModel.IComponent,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L905C14-L928C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L905C14-L928C21" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.GetLocation(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L943C9-L955C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L943C9-L955C46" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.GetTrayLocation(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L970C9-L979C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L970C9-L979C76" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L987C9-L994C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L987C9-L994C24" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.IsTrayComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1002C9-L1016C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1002C9-L1016C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1021C9-L1034C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1021C9-L1034C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1042C9-L1044C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1042C9-L1044C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1054C9-L1092C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1054C9-L1092C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1099C9-L1129C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1099C9-L1129C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1136C9-L1139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1136C9-L1139C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1146C9-L1155C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1146C9-L1155C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1162C9-L1166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1162C9-L1166C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnLostCapture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1175C9-L1186C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1175C9-L1186C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1205C9-L1267C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1205C9-L1267C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1276C9-L1300C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1276C9-L1300C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1309C9-L1357C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1309C9-L1357C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1378C9-L1469C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1378C9-L1469C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.OnSetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1477C9-L1483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1477C9-L1483C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.RemoveComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1490C9-L1508C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1490C9-L1508C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.SetLocation(System.ComponentModel.IComponent,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1517C9-L1542C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1517C9-L1542C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.SetTrayLocation(System.ComponentModel.IComponent,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1550C9-L1571C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1550C9-L1571C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentTray.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1578C9-L1633C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L1578C9-L1633C6" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentTray.AutoArrange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L417C16-L417C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L417C16-L417C28" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentTray.ComponentCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L438C16-L438C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L438C16-L438C30" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentTray.ShowLargeIcons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L461C16-L461C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L461C16-L461C31" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L482C16-L482C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L482C16-L482C39" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentTray.System#Windows#Forms#Design#IOleDragClient#CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L487C16-L487C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs#L487C16-L487C20" } ], "DocsId": "T:System.Windows.Forms.Design.ComponentTray", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.NumberOfInternalControlDesigners", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L384C62-L384C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L384C62-L384C63" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.InternalControlDesigner(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L391C90-L391C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L391C90-L391C94" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.BaseWndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L399C12-L399C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L399C12-L399C121" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.CanBeParentedTo(System.ComponentModel.Design.IDesigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L408C12-L408C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L408C12-L408C85" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.DefWndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L414C49-L414C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L414C49-L414C82" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.DisplayError(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L421C9-L442C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L421C9-L442C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L449C9-L491C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L449C9-L491C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.EnableDesignMode(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L581C9-L599C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L581C9-L599C21" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.EnableDragDrop(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L607C9-L644C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L607C9-L644C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.GetControlGlyph(System.Windows.Forms.Design.Behavior.GlyphSelectionType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L693C9-L732C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L693C9-L732C18" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.GetGlyphs(System.Windows.Forms.Design.Behavior.GlyphSelectionType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L744C9-L852C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L744C9-L852C23" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.GetHitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L869C55-L869C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L869C55-L869C60" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.HookChildControls(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L877C35-L907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L877C35-L907C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.Initialize(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L930C9-L1010C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L930C9-L1010C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.InitializeExistingComponent(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1128C9-L1142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1128C9-L1142C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.InitializeNewComponent(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1153C9-L1203C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1153C9-L1203C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnSetComponentDefaults", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1213C9-L1222C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1213C9-L1222C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnContextMenu(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1227C59-L1227C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1227C59-L1227C80" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnCreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1234C9-L1239C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1234C9-L1239C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1247C9-L1252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1247C9-L1252C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnDragComplete(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1260C5-L1260C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1260C5-L1260C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1268C9-L1274C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1268C9-L1274C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1282C9-L1287C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1282C9-L1287C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1295C9-L1300C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1295C9-L1300C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1308C5-L1308C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1308C5-L1308C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseDragBegin(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1316C9-L1331C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1316C9-L1331C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseDragEnd(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1338C9-L1383C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1338C9-L1383C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseDragMove(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1391C9-L1460C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1391C9-L1460C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1468C9-L1489C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1468C9-L1489C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1497C9-L1518C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1497C9-L1518C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnMouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1526C9-L1547C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1526C9-L1547C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnPaintAdornments(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1556C9-L1560C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1556C9-L1560C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.OnSetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1592C9-L1630C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1592C9-L1630C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1639C9-L1680C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1639C9-L1680C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.UnhookChildControls(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1688C9-L1706C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1688C9-L1706C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1714C9-L2240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L1714C9-L2240C6" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L46C5-L75C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L46C5-L75C52" }, { "DocsId": "F:System.Windows.Forms.Design.ControlDesigner.InvalidPoint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ControlDesigner.accessibilityObj", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.BehaviorService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L73C51-L73C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L73C51-L73C101" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.AssociatedComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L114C13-L124C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L114C13-L124C63" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.AccessibilityObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L131C12-L131C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L131C12-L131C83" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L136C39-L136C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L136C39-L136C57" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.EnableDragRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L141C46-L141C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L141C46-L141C51" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ParentComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L178C9-L178C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L178C9-L178C89" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ParticipatesWithSnapLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L185C54-L185C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L185C54-L185C58" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.AutoResizeHandles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L187C37-L187C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L187C37-L187C41" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.SelectionRules", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L202C13-L279C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L202C13-L279C26" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.SnapLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L339C39-L339C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L339C39-L339C72" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.InheritanceAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L368C12-L368C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs#L368C12-L368C87" }, { "DocsId": "T:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ControlDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.DesignerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L16C5-L107C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L16C5-L107C65" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.GridSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L26C16-L26C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L26C16-L26C25" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.ShowGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L60C36-L60C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L60C36-L60C40" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.SnapToGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L68C38-L68C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L68C38-L68C42" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.UseSnapLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L75C40-L75C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L75C40-L75C44" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.UseSmartTags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L82C40-L82C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L82C40-L82C44" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.ObjectBoundSmartTagAutoShow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L90C55-L90C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L90C55-L90C59" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.UseOptimizedCodeGeneration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L98C54-L98C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L98C54-L98C58" }, { "DocsId": "P:System.Windows.Forms.Design.DesignerOptions.EnableInSituEditing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L107C47-L107C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs#L107C47-L107C51" } ], "DocsId": "T:System.Windows.Forms.Design.DesignerOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerOptions.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.DockEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs#L19C9-L31C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs#L19C9-L31C22" }, { "DocsId": "M:System.Windows.Forms.Design.DockEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs#L34C92-L34C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs#L34C92-L34C122" }, { "DocsId": "M:System.Windows.Forms.Design.DockEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.DockEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DockEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.System#Windows#Forms#Design#IOleDragClient#GetControlForComponent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L232C9-L233C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L232C9-L233C126" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L327C9-L455C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L327C9-L455C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.GetGlyphs(System.Windows.Forms.Design.Behavior.GlyphSelectionType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L466C9-L535C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L466C9-L535C23" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.GetToolSupported(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L617C9-L617C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L617C9-L617C21" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.Initialize(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L626C9-L744C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L626C9-L744C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.OnContextMenu(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L927C9-L963C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L927C9-L963C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.OnCreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L971C9-L975C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L971C9-L975C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1195C9-L1262C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1195C9-L1262C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.ToolPicked(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1324C9-L1357C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1324C9-L1357C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.System#ComponentModel#Design#IRootDesigner#get_SupportedTechnologies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1371C13-L1371C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1371C13-L1371C64" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.System#ComponentModel#Design#IRootDesigner#GetView(System.ComponentModel.Design.ViewTechnology)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1380C9-L1382C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1380C9-L1382C29" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.System#Drawing#Design#IToolboxUser#GetToolSupported(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1393C9-L1393C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1393C9-L1393C39" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.System#Drawing#Design#IToolboxUser#ToolPicked(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1402C9-L1406C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1402C9-L1406C6" }, { "DocsId": "M:System.Windows.Forms.Design.DocumentDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L47C5-L47C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L47C5-L47C34" }, { "DocsId": "P:System.Windows.Forms.Design.DocumentDesigner.SelectionRules", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L165C13-L168C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L165C13-L168C26" }, { "DocsId": "P:System.Windows.Forms.Design.DocumentDesigner.System#ComponentModel#Design#IRootDesigner#SupportedTechnologies", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1371C13-L1371C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs#L1371C13-L1371C64" } ], "DocsId": "T:System.Windows.Forms.Design.DocumentDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DocumentDesigner.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.EventHandlerService.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L16C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L16C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.Design.EventHandlerService.GetHandler(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L43C9-L65C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L43C9-L65C24" }, { "DocsId": "M:System.Windows.Forms.Design.EventHandlerService.PopHandler(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L73C9-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L73C9-L81C6" }, { "DocsId": "M:System.Windows.Forms.Design.EventHandlerService.PushHandler(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L88C9-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L88C9-L95C6" }, { "DocsId": "E:System.Windows.Forms.Design.EventHandlerService.EventHandlerChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L32C16-L32C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L32C16-L32C38" }, { "DocsId": "P:System.Windows.Forms.Design.EventHandlerService.FocusWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L36C35-L36C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs#L36C35-L36C39" } ], "DocsId": "T:System.Windows.Forms.Design.EventHandlerService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/EventHandlerService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.FileNameEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L19C9-L40C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L19C9-L40C22" }, { "DocsId": "M:System.Windows.Forms.Design.FileNameEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L44C92-L44C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L44C92-L44C119" }, { "DocsId": "M:System.Windows.Forms.Design.FileNameEditor.InitializeDialog(System.Windows.Forms.OpenFileDialog)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L53C9-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs#L53C9-L57C6" }, { "DocsId": "M:System.Windows.Forms.Design.FileNameEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.FileNameEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FileNameEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L19C9-L30C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L19C9-L30C22" }, { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L34C92-L34C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L34C92-L34C119" }, { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.InitializeDialog(System.Windows.Forms.Design.FolderNameEditor.FolderBrowser)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L42C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs#L42C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs" }, { "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs" }, { "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" } ], "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.IContainsThemedScrollbarWindows.ThemedScrollbarWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/IContainsThemedScrollbarWindows.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/IContainsThemedScrollbarWindows.cs" } ], "DocsId": "T:System.Windows.Forms.Design.IContainsThemedScrollbarWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/IContainsThemedScrollbarWindows.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/IContainsThemedScrollbarWindows.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ImageListCodeDomSerializer.Deserialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs#L23C9-L34C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs#L23C9-L34C60" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListCodeDomSerializer.Serialize(System.ComponentModel.Design.Serialization.IDesignerSerializationManager,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs#L42C9-L75C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs#L42C9-L75C27" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListCodeDomSerializer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ImageListCodeDomSerializer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageCollectionCodeDomSerializer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.GetImageExtenders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L22C54-L22C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L22C54-L22C70" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L26C9-L89C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L26C9-L89C23" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.GetFileDialogDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L92C61-L92C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L92C61-L92C84" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L97C85-L97C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L97C85-L97C89" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L116C9-L122C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs#L116C9-L122C6" }, { "DocsId": "M:System.Windows.Forms.Design.ImageListImageEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ImageListImageEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ImageListImageEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.IsValidMaskDescriptor(System.Windows.Forms.Design.MaskDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L56C9-L56C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L56C9-L56C68" }, { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.IsValidMaskDescriptor(System.Windows.Forms.Design.MaskDescriptor,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L61C9-L105C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L61C9-L105C55" }, { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L134C9-L141C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L134C9-L141C93" }, { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L146C9-L147C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L146C9-L147C35" }, { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L152C9-L152C160" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L152C9-L152C160" }, { "DocsId": "M:System.Windows.Forms.Design.MaskDescriptor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "DocsId": "P:System.Windows.Forms.Design.MaskDescriptor.Mask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "DocsId": "P:System.Windows.Forms.Design.MaskDescriptor.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "DocsId": "P:System.Windows.Forms.Design.MaskDescriptor.Sample", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "DocsId": "P:System.Windows.Forms.Design.MaskDescriptor.ValidatingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "DocsId": "P:System.Windows.Forms.Design.MaskDescriptor.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L41C43-L41C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs#L41C43-L41C78" } ], "DocsId": "T:System.Windows.Forms.Design.MaskDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MaskDescriptor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.MenuCommands.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.SelectionMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.ContainerMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.TraySelectionMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.ComponentTrayMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.DesignerProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyReverseCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyInvokeSmartTag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyMoveUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyMoveDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyMoveLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyMoveRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySizeWidthIncrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySizeHeightIncrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySizeWidthDecrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySizeHeightDecrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeWidthIncrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeHeightIncrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeWidthDecrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyNudgeHeightDecrease", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySelectNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeySelectPrevious", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyTabOrderSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.EditLabel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyHome", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyShiftHome", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.KeyShiftEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.SetStatusText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "DocsId": "F:System.Windows.Forms.Design.MenuCommands.SetStatusRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" } ], "DocsId": "T:System.Windows.Forms.Design.MenuCommands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/MenuCommands.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CanAddComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L97C78-L97C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L97C78-L97C82" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.GetParentForComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L293C78-L293C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L293C78-L293C85" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.AddPaddingSnapLines(System.Collections.ArrayList@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L298C12-L298C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L298C12-L298C79" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L674C9-L700C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L674C9-L700C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.InvokeCreateTool(System.Windows.Forms.Design.ParentControlDesigner,System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L763C9-L764C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L763C9-L764C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CanParent(System.Windows.Forms.Design.ControlDesigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L773C9-L773C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L773C9-L773C51" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CanParent(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L783C9-L783C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L783C9-L783C43" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CreateTool(System.Drawing.Design.ToolboxItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L792C9-L793C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L792C9-L793C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CreateTool(System.Drawing.Design.ToolboxItem,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L802C9-L803C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L802C9-L803C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CreateTool(System.Drawing.Design.ToolboxItem,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L812C9-L813C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L812C9-L813C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.CreateToolCore(System.Drawing.Design.ToolboxItem,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L822C9-L836C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L822C9-L836C21" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.GetControl(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L893C9-L907C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L893C9-L907C21" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.GetControlGlyph(System.Windows.Forms.Design.Behavior.GlyphSelectionType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L994C9-L1025C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L994C9-L1025C81" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.GetGlyphs(System.Windows.Forms.Design.Behavior.GlyphSelectionType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1033C9-L1058C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1033C9-L1058C23" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.GetUpdatedRect(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1136C9-L1188C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1136C9-L1188C28" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.Initialize(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1197C9-L1222C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1197C9-L1222C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.InitializeNewComponent(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1228C9-L1278C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1228C9-L1278C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnDragComplete(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1370C9-L1372C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1370C9-L1372C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1383C9-L1443C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1383C9-L1443C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1451C9-L1609C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1451C9-L1609C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1643C9-L1650C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1643C9-L1650C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1657C9-L1692C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1657C9-L1692C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnMouseDragBegin(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1707C9-L1750C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1707C9-L1750C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnMouseDragEnd(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1760C9-L1887C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1760C9-L1887C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnMouseDragMove(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1898C9-L2012C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L1898C9-L2012C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnPaintAdornments(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2019C9-L2042C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2019C9-L2042C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.OnSetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2061C9-L2075C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2061C9-L2075C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.PreFilterProperties(System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2088C9-L2118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2088C9-L2118C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#get_Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2292C13-L2292C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2292C13-L2292C30" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#AddComponent(System.ComponentModel.IComponent,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2303C9-L2446C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2303C9-L2446C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#get_CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2457C13-L2457C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2457C13-L2457C91" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#IsDropOk(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2467C9-L2515C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2467C9-L2515C6" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#GetDesignerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2524C9-L2524C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2524C9-L2524C24" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#GetControlForComponent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2534C9-L2534C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2534C9-L2534C38" }, { "DocsId": "M:System.Windows.Forms.Design.ParentControlDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L22C5-L59C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L22C5-L59C45" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.AllowControlLasso", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L70C49-L70C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L70C49-L70C53" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.AllowGenericDragBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L76C51-L76C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L76C51-L76C55" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.AllowSetChildIndexOnDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L89C65-L89C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L89C65-L89C69" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.DefaultControlLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L111C55-L111C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L111C55-L111C64" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.DrawGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L136C13-L162C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L136C13-L162C30" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.EnableDragRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L205C47-L205C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L205C47-L205C51" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.GridSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L216C13-L238C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L216C13-L238C30" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.MouseDragTool", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L284C44-L284C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L284C44-L284C58" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.SnapLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L335C13-L344C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L335C13-L344C39" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2292C13-L2292C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2292C13-L2292C30" }, { "DocsId": "P:System.Windows.Forms.Design.ParentControlDesigner.System#Windows#Forms#Design#IOleDragClient#CanModifyComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2457C13-L2457C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs#L2457C13-L2457C91" } ], "DocsId": "T:System.Windows.Forms.Design.ParentControlDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ParentControlDesigner.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ScrollableControlDesigner.GetHitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs#L24C9-L40C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs#L24C9-L40C22" }, { "DocsId": "M:System.Windows.Forms.Design.ScrollableControlDesigner.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs#L48C9-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs#L48C9-L69C6" }, { "DocsId": "M:System.Windows.Forms.Design.ScrollableControlDesigner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ScrollableControlDesigner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ScrollableControlDesigner.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.Moveable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.Locked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.TopSizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.BottomSizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.LeftSizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.RightSizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "DocsId": "F:System.Windows.Forms.Design.SelectionRules.AllSizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" } ], "DocsId": "T:System.Windows.Forms.Design.SelectionRules", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SelectionRules.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ShortcutKeysEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs#L23C9-L42C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs#L23C9-L42C22" }, { "DocsId": "M:System.Windows.Forms.Design.ShortcutKeysEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs#L46C92-L46C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs#L46C92-L46C122" }, { "DocsId": "M:System.Windows.Forms.Design.ShortcutKeysEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ShortcutKeysEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ShortcutKeysEditor.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarMode.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarMode.OnlyTopLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ThemedScrollbarMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarWindow.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ThemedScrollbarWindow.Mode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ThemedScrollbarWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ThemedScrollbarWindow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsDesignerOptionService.PopulateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs#L23C9-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs#L23C9-L32C6" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsDesignerOptionService.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs" }, { "DocsId": "P:System.Windows.Forms.Design.WindowsFormsDesignerOptionService.CompatibilityOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs#L15C60-L15C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs#L15C60-L15C94" } ], "DocsId": "T:System.Windows.Forms.Design.WindowsFormsDesignerOptionService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/WindowsFormsDesignerOptionService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.Adorner.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L22C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L22C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Adorner.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L70C9-L71C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L70C9-L71C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Adorner.Invalidate(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L78C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L78C9-L79C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Adorner.Invalidate(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L86C9-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L86C9-L87C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Adorner.BehaviorService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L34C16-L34C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L34C16-L34C32" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Adorner.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L44C16-L44C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L44C16-L44C31" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Adorner.Glyphs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L62C16-L62C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs#L62C16-L62C23" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.Adorner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Adorner.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.#ctor(System.Windows.Forms.Design.Behavior.BehaviorService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L19C5-L22C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.#ctor(System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L28C5-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L28C5-L31C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.#ctor(System.Windows.Forms.Design.Behavior.Adorner[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L40C5-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L40C5-L43C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.Add(System.Windows.Forms.Design.Behavior.Adorner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L80C9-L81C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L80C9-L81C32" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.AddRange(System.Windows.Forms.Design.Behavior.Adorner[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L98C14-L102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L98C14-L102C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.AddRange(System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L119C14-L123C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L119C14-L123C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.Contains(System.Windows.Forms.Design.Behavior.Adorner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L137C9-L137C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L137C9-L137C37" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.CopyTo(System.Windows.Forms.Design.Behavior.Adorner[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L168C9-L169C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L168C9-L169C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.IndexOf(System.Windows.Forms.Design.Behavior.Adorner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L184C9-L184C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L184C9-L184C36" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.Insert(System.Int32,System.Windows.Forms.Design.Behavior.Adorner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L199C9-L200C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L199C9-L200C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L212C9-L212C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L212C9-L212C69" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.Remove(System.Windows.Forms.Design.Behavior.Adorner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L229C9-L230C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L229C9-L230C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L61C13-L61C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs#L61C13-L61C46" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/AdornerCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L19C5-L21C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.#ctor(System.Boolean,System.Windows.Forms.Design.Behavior.BehaviorService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L27C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L27C5-L36C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.FindCommand(System.ComponentModel.Design.CommandID)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L72C13-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L72C13-L85C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnLoseCapture(System.Windows.Forms.Design.Behavior.Glyph,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L110C9-L118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L110C9-L118C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseDoubleClick(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.MouseButtons,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L128C9-L138C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L128C9-L138C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseDown(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.MouseButtons,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L150C9-L160C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L150C9-L160C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseEnter(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L170C9-L180C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L170C9-L180C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseHover(System.Windows.Forms.Design.Behavior.Glyph,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L191C9-L201C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L191C9-L201C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseLeave(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L210C9-L220C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L210C9-L220C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseMove(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.MouseButtons,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L231C9-L241C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L231C9-L241C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnMouseUp(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.MouseButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L254C9-L264C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L254C9-L264C26" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnDragDrop(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L275C9-L283C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L275C9-L283C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnDragEnter(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L290C9-L298C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L290C9-L298C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnDragLeave(System.Windows.Forms.Design.Behavior.Glyph,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L305C9-L313C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L305C9-L313C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnDragOver(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L320C9-L332C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L320C9-L332C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnGiveFeedback(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L339C9-L347C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L339C9-L347C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Behavior.OnQueryContinueDrag(System.Windows.Forms.Design.Behavior.Glyph,System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L354C9-L362C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L354C9-L362C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Behavior.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L43C37-L43C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L43C37-L43C52" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Behavior.DisableAllCommands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L53C13-L59C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs#L53C13-L59C30" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.Behavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Behavior.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs.#ctor(System.Collections.ICollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs#L13C5-L13C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs#L13C5-L13C100" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs.DragComponents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs#L18C41-L18C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs#L18C41-L18C45" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler.Invoke(System.Object,System.Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler.BeginInvoke(System.Object,System.Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorDragDropEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L167C9-L180C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L167C9-L180C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.AdornerWindowPointToScreen(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L255C57-L255C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L255C57-L255C88" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.AdornerWindowToScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L260C45-L260C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L260C45-L260C88" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.ControlToAdornerWindow(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L267C9-L279C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L267C9-L279C19" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.MapAdornerWindowPoint(System.IntPtr,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L287C9-L288C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L287C9-L288C19" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.ControlRectInAdornerWindow(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L296C9-L302C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L296C9-L302C43" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.GetNextBehavior(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L339C9-L348C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L339C9-L348C21" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L365C33-L365C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L365C33-L365C73" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.Invalidate(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L371C47-L371C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L371C47-L371C91" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.Invalidate(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L377C41-L377C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L377C41-L377C82" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.SyncSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L382C36-L382C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L382C36-L382C91" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.PopBehavior(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L389C9-L414C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L389C9-L414C25" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.PushBehavior(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L429C9-L439C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L429C9-L439C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.PushCaptureBehavior(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L448C9-L460C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L448C9-L460C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorService.ScreenToAdornerWindow(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L465C52-L465C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L465C52-L465C83" }, { "DocsId": "E:System.Windows.Forms.Design.Behavior.BehaviorService.BeginDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L311C16-L311C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L311C16-L311C42" }, { "DocsId": "E:System.Windows.Forms.Design.Behavior.BehaviorService.EndDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L320C16-L320C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L320C16-L320C40" }, { "DocsId": "E:System.Windows.Forms.Design.Behavior.BehaviorService.Synchronize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L329C16-L329C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L329C16-L329C49" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorService.Adorners", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L101C56-L101C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L101C56-L101C60" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorService.AdornerWindowGraphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L138C13-L140C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L138C13-L140C27" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorService.CurrentBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L144C41-L144C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs#L144C41-L144C92" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.BehaviorService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.#ctor(System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L12C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L12C5-L15C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L20C35-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L20C35-L20C58" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L25C9-L25C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L25C9-L25C43" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.System#Collections#IEnumerator#MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L30C9-L30C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L30C9-L30C43" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L35C9-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L35C9-L36C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.System#Collections#IEnumerator#Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L40C9-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L40C9-L41C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L18C31-L18C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L18C31-L18C63" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L20C35-L20C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs#L20C35-L20C58" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/BehaviorServiceAdornerCollectionEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.ComponentGlyph.#ctor(System.ComponentModel.IComponent,System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L23C11-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L23C11-L26C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.ComponentGlyph.#ctor(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L29C11-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L29C11-L32C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.ComponentGlyph.GetHitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L42C52-L42C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L42C52-L42C56" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.ComponentGlyph.Paint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L49C5-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L49C5-L49C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.ComponentGlyph.RelatedComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L37C44-L37C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs#L37C44-L37C61" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.ComponentGlyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ComponentGlyph.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.ControlBodyGlyph.#ctor(System.Drawing.Rectangle,System.Windows.Forms.Cursor,System.ComponentModel.IComponent,System.Windows.Forms.Design.ControlDesigner)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L28C11-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L28C11-L33C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.ControlBodyGlyph.#ctor(System.Drawing.Rectangle,System.Windows.Forms.Cursor,System.ComponentModel.IComponent,System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L36C11-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L36C11-L41C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.ControlBodyGlyph.GetHitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L56C9-L63C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L56C9-L63C21" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.ControlBodyGlyph.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L46C41-L46C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs#L46C41-L46C48" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.ControlBodyGlyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ControlBodyGlyph.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.Glyph.#ctor(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L23C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L23C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Glyph.GetHitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Glyph.Paint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.Glyph.SetBehavior(System.Windows.Forms.Design.Behavior.Behavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L63C9-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L63C9-L64C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Glyph.Behavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L32C42-L32C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L32C42-L32C51" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.Glyph.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L38C40-L38C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs#L38C40-L38C55" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.Glyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/Glyph.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L16C5-L18C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.#ctor(System.Windows.Forms.Design.Behavior.GlyphCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L23C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L23C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.#ctor(System.Windows.Forms.Design.Behavior.Glyph[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L31C5-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L31C5-L34C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.Add(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L51C9-L51C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L51C9-L51C32" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.AddRange(System.Windows.Forms.Design.Behavior.Glyph[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L59C14-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L59C14-L63C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.AddRange(System.Windows.Forms.Design.Behavior.GlyphCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L70C14-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L70C14-L74C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.Contains(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L82C9-L82C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L82C9-L82C37" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.CopyTo(System.Windows.Forms.Design.Behavior.Glyph[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L91C9-L92C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L91C9-L92C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.IndexOf(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L100C9-L100C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L100C9-L100C36" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.Insert(System.Int32,System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L108C9-L109C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L108C9-L109C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.GlyphCollection.Remove(System.Windows.Forms.Design.Behavior.Glyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L118C9-L122C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L118C9-L122C6" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.GlyphCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L41C16-L41C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs#L41C16-L41C35" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.GlyphCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.Behavior.GlyphSelectionType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.GlyphSelectionType.NotSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.GlyphSelectionType.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.GlyphSelectionType.SelectedPrimary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.GlyphSelectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/GlyphSelectionType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.#ctor(System.Windows.Forms.Design.Behavior.SnapLineType,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L38C11-L40C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L38C11-L40C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.#ctor(System.Windows.Forms.Design.Behavior.SnapLineType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L46C11-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L46C11-L48C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.#ctor(System.Windows.Forms.Design.Behavior.SnapLineType,System.Int32,System.Windows.Forms.Design.Behavior.SnapLinePriority)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L54C11-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L54C11-L56C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.#ctor(System.Windows.Forms.Design.Behavior.SnapLineType,System.Int32,System.String,System.Windows.Forms.Design.Behavior.SnapLinePriority)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L61C5-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L61C5-L67C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.AdjustOffset(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L111C9-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L111C9-L112C6" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.ShouldSnap(System.Windows.Forms.Design.Behavior.SnapLine,System.Windows.Forms.Design.Behavior.SnapLine)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L120C9-L173C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L120C9-L173C22" }, { "DocsId": "M:System.Windows.Forms.Design.Behavior.SnapLine.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L181C9-L181C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L181C9-L181C128" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.Filter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L74C29-L74C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L74C29-L74C33" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.IsHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L79C33-L82C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L79C33-L82C33" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.IsVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L87C31-L89C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L87C31-L89C33" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.Offset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L94C25-L94C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L94C25-L94C29" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.Priority", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L99C40-L99C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L99C40-L99C44" }, { "DocsId": "P:System.Windows.Forms.Design.Behavior.SnapLine.SnapLineType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L104C40-L104C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs#L104C40-L104C44" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.SnapLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLine.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLinePriority.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLinePriority.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLinePriority.Medium", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLinePriority.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLinePriority.Always", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.SnapLinePriority", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLinePriority.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "DocsId": "F:System.Windows.Forms.Design.Behavior.SnapLineType.Baseline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" } ], "DocsId": "T:System.Windows.Forms.Design.Behavior.SnapLineType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/SnapLineType.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.#ctor(System.ComponentModel.Design.CollectionEditor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L28C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L28C9-L31C10" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.CanRemoveInstance(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L129C59-L129C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L129C59-L129C91" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.CanSelectMultipleInstances", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L134C64-L134C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L134C64-L134C100" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.CreateInstance(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L139C59-L139C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L139C59-L139C91" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.DestroyInstance(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L144C60-L144C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L144C60-L144C93" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.DisplayError(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L151C13-L172C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L151C13-L172C10" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L177C68-L177C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L177C68-L177C99" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.ShowEditorDialog(System.Windows.Forms.Design.IWindowsFormsEditorService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L184C13-L186C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L184C13-L186C43" }, { "DocsId": "M:System.ComponentModel.Design.CollectionEditor.CollectionForm.OnEditValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.CollectionItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L36C46-L36C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L36C46-L36C72" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.CollectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L41C42-L41C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L41C42-L41C64" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L70C54-L70C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L70C54-L70C69" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.EditValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L77C20-L77C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L77C20-L77C26" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L91C20-L91C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L91C20-L91C47" }, { "DocsId": "P:System.ComponentModel.Design.CollectionEditor.CollectionForm.NewItemTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L124C42-L124C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs#L124C42-L124C62" } ], "DocsId": "T:System.ComponentModel.Design.CollectionEditor.CollectionForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/CollectionEditor.CollectionForm.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ComponentDesigner.ShadowPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs#L51C54-L51C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs#L51C54-L51C118" }, { "DocsId": "P:System.ComponentModel.Design.ComponentDesigner.ShadowPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs#L27C17-L39C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs#L27C17-L39C63" } ], "DocsId": "T:System.ComponentModel.Design.ComponentDesigner.ShadowPropertyCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.ShadowPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.#ctor(System.ComponentModel.Design.ObjectSelectorEditor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L20C9-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L20C9-L34C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.AddNode(System.String,System.Object,System.ComponentModel.Design.ObjectSelectorEditor.SelectorNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L42C13-L53C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L42C13-L53C28" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L79C13-L81C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L79C13-L81C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.OnAfterSelect(System.Object,System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L85C13-L90C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L85C13-L90C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L94C13-L113C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L94C13-L113C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L117C13-L125C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L117C13-L125C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.OnNodeMouseClick(System.Windows.Forms.TreeNodeMouseClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L130C13-L136C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L130C13-L136C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.SetSelection(System.Object,System.Windows.Forms.TreeNodeCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L140C13-L171C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L140C13-L171C26" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.Start(System.Windows.Forms.Design.IWindowsFormsEditorService,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L179C13-L182C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L179C13-L182C10" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L187C31-L187C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L187C31-L187C52" }, { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.Selector.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L191C13-L214C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs#L191C13-L214C10" }, { "DocsId": "F:System.ComponentModel.Design.ObjectSelectorEditor.Selector.clickSeen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" } ], "DocsId": "T:System.ComponentModel.Design.ObjectSelectorEditor.Selector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.Selector.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.ObjectSelectorEditor.SelectorNode.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs#L17C61-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs#L17C61-L20C10" }, { "DocsId": "F:System.ComponentModel.Design.ObjectSelectorEditor.SelectorNode.value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" } ], "DocsId": "T:System.ComponentModel.Design.ObjectSelectorEditor.SelectorNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ObjectSelectorEditor.SelectorNode.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.#ctor(System.ComponentModel.Design.UndoEngine,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L26C9-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L26C9-L46C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L72C13-L93C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L72C13-L93C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentAdded(System.ComponentModel.Design.ComponentEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L100C13-L114C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L100C13-L114C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentAdding(System.ComponentModel.Design.ComponentEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L121C13-L124C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L121C13-L124C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentChanged(System.ComponentModel.Design.ComponentChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L167C13-L187C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L167C13-L187C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentChanging(System.ComponentModel.Design.ComponentChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L198C13-L272C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L198C13-L272C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentRemoved(System.ComponentModel.Design.ComponentEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L284C13-L328C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L284C13-L328C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentRemoving(System.ComponentModel.Design.ComponentEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L335C13-L349C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L335C13-L349C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ComponentRename(System.ComponentModel.Design.ComponentRenameEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L355C13-L355C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L355C13-L355C64" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L360C59-L360C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L360C59-L360C93" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L365C46-L365C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L365C46-L365C50" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.Undo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L374C13-L405C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L374C13-L405C10" }, { "DocsId": "M:System.ComponentModel.Design.UndoEngine.UndoUnit.UndoCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L415C13-L522C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L415C13-L522C10" }, { "DocsId": "P:System.ComponentModel.Design.UndoEngine.UndoUnit.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L48C30-L48C34" }, { "DocsId": "P:System.ComponentModel.Design.UndoEngine.UndoUnit.IsEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L53C40-L53C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L53C40-L53C77" }, { "DocsId": "P:System.ComponentModel.Design.UndoEngine.UndoUnit.UndoEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L55C43-L55C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs#L55C43-L55C47" } ], "DocsId": "T:System.ComponentModel.Design.UndoEngine.UndoUnit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/UndoEngine.UndoUnit.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions.ModifyOnError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions.Force", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" }, { "DocsId": "F:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions.NoFlush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" } ], "DocsId": "T:System.ComponentModel.Design.Serialization.BasicDesignerLoader.ReloadOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/Serialization/BasicDesignerLoader.ReloadOptions.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.AxImporter.IReferenceResolver.ResolveManagedReference(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" }, { "DocsId": "M:System.Windows.Forms.Design.AxImporter.IReferenceResolver.ResolveComReference(System.Runtime.InteropServices.UCOMITypeLib)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" }, { "DocsId": "M:System.Windows.Forms.Design.AxImporter.IReferenceResolver.ResolveComReference(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" }, { "DocsId": "M:System.Windows.Forms.Design.AxImporter.IReferenceResolver.ResolveActiveXReference(System.Runtime.InteropServices.UCOMITypeLib)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" } ], "DocsId": "T:System.Windows.Forms.Design.AxImporter.IReferenceResolver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.IReferenceResolver.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.AxImporter.Options.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.delaySign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.genSources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.ignoreRegisteredOcx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.keyContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.keyFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.keyPair", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.msBuildErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.noLogo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.outputDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.outputName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.overwriteRCW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.publicKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.references", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.silentMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "DocsId": "F:System.Windows.Forms.Design.AxImporter.Options.verboseMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" } ], "DocsId": "T:System.Windows.Forms.Design.AxImporter.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/AxImporter.Options.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.#ctor(System.Windows.Forms.Design.ControlDesigner,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L18C9-L22C10" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L67C13-L76C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L67C13-L76C65" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L79C48-L79C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L79C48-L79C92" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.GetFocused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L97C16-L97C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L97C16-L97C82" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.GetSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L100C16-L100C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L100C16-L100C83" }, { "DocsId": "M:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L102C68-L102C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L102C68-L102C110" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L24C45-L24C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L24C45-L24C80" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L26C48-L26C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L26C48-L26C88" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L30C49-L30C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L30C49-L30C61" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L32C40-L32C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L32C40-L32C53" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L34C53-L34C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L34C53-L34C88" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L36C48-L36C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L36C48-L36C81" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L44C17-L59C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L44C17-L59C30" }, { "DocsId": "P:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L63C42-L63C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs#L63C42-L63C76" } ], "DocsId": "T:System.Windows.Forms.Design.ControlDesigner.ControlDesignerAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.ControlDesignerAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.ShowDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L46C45-L46C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L46C45-L46C61" }, { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.ShowDialog(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L53C13-L73C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L53C13-L73C40" }, { "DocsId": "M:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L13C9-L25C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L13C9-L25C73" }, { "DocsId": "P:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L20C44-L20C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L20C44-L20C48" }, { "DocsId": "P:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.DirectoryPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L25C39-L25C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L25C39-L25C43" }, { "DocsId": "P:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.StartLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L30C52-L30C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L30C52-L30C56" }, { "DocsId": "P:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L39C20-L39C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs#L39C20-L39C36" } ], "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.Desktop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.Favorites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.MyComputer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.MyDocuments", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.MyPictures", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.NetAndDialUpConnections", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.NetworkNeighborhood", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.Printers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.Recent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.SendTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.StartMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder.Templates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" } ], "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserFolder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserFolder.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.BrowseForComputer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.BrowseForEverything", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.BrowseForPrinter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.RestrictToDomain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.RestrictToFilesystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.RestrictToSubfolders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" }, { "DocsId": "F:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles.ShowTextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" } ], "DocsId": "T:System.Windows.Forms.Design.FolderNameEditor.FolderBrowserStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowserStyles.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Primitives.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Primitives.json index e6782325d75..ff05ab6a10a 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Primitives.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.Primitives.json @@ -1,617 +1,617 @@ { "Assembly": "System.Windows.Forms.Primitives", - "GUID": "FFEA3CE21CB34032AA779F4BB98CAB73FFFFFFFF", + "GUID": "6908C9AC89354B1AA67FE837D0AA5CF7FFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlace.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L19C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L19C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlace.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L19C5-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L19C5-L30C6" }, { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlace.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L55C9-L55C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L55C9-L55C85" }, { "DocsId": "P:System.Windows.Forms.FileDialogCustomPlace.Path", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L35C16-L35C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L35C16-L35C37" }, { "DocsId": "P:System.Windows.Forms.FileDialogCustomPlace.KnownFolderGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L45C16-L45C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs#L45C16-L45C32" } ], "DocsId": "T:System.Windows.Forms.FileDialogCustomPlace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlace.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlacesCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs#L23C38-L23C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs#L23C38-L23C74" }, { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlacesCollection.Add(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs#L25C46-L25C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs#L25C46-L25C93" }, { "DocsId": "M:System.Windows.Forms.FileDialogCustomPlacesCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs" } ], "DocsId": "T:System.Windows.Forms.FileDialogCustomPlacesCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/FileDialogCustomPlacesCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.HighDpiMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "DocsId": "F:System.Windows.Forms.HighDpiMode.DpiUnaware", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "DocsId": "F:System.Windows.Forms.HighDpiMode.SystemAware", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "DocsId": "F:System.Windows.Forms.HighDpiMode.PerMonitor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "DocsId": "F:System.Windows.Forms.HighDpiMode.PerMonitorV2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "DocsId": "F:System.Windows.Forms.HighDpiMode.DpiUnawareGdiScaled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" } ], "DocsId": "T:System.Windows.Forms.HighDpiMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/HighDpiMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Message.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L82C43-L82C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L82C43-L82C47" }, { "DocsId": "M:System.Windows.Forms.Message.GetLParam(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L89C22-L89C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L89C22-L89C65" }, { "DocsId": "M:System.Windows.Forms.Message.Create(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L102C9-L111C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L102C9-L111C18" }, { "DocsId": "M:System.Windows.Forms.Message.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L116C9-L121C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L116C9-L121C26" }, { "DocsId": "M:System.Windows.Forms.Message.Equals(System.Windows.Forms.Message)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L125C12-L129C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L125C12-L129C54" }, { "DocsId": "M:System.Windows.Forms.Message.op_Equality(System.Windows.Forms.Message,System.Windows.Forms.Message)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L131C61-L131C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L131C61-L131C72" }, { "DocsId": "M:System.Windows.Forms.Message.op_Inequality(System.Windows.Forms.Message,System.Windows.Forms.Message)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L133C61-L133C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L133C61-L133C73" }, { "DocsId": "M:System.Windows.Forms.Message.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L135C51-L135C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L135C51-L135C78" }, { "DocsId": "M:System.Windows.Forms.Message.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L137C51-L137C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L137C51-L137C80" }, { "DocsId": "P:System.Windows.Forms.Message.HWnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L17C26-L17C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L17C26-L17C30" }, { "DocsId": "P:System.Windows.Forms.Message.Msg", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L30C25-L30C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L30C25-L30C41" }, { "DocsId": "P:System.Windows.Forms.Message.WParam", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L56C25-L56C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L56C25-L56C52" }, { "DocsId": "P:System.Windows.Forms.Message.LParam", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L67C25-L67C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L67C25-L67C39" }, { "DocsId": "P:System.Windows.Forms.Message.Result", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L78C25-L78C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L78C25-L78C39" }, { "DocsId": "P:System.Windows.Forms.Message.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L82C43-L82C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs#L82C43-L82C47" } ], "DocsId": "T:System.Windows.Forms.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Message.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Padding.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L26C9-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L26C9-L29C6" }, { "DocsId": "M:System.Windows.Forms.Padding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L33C9-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L33C9-L39C6" }, { "DocsId": "M:System.Windows.Forms.Padding.Add(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L130C58-L130C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L130C58-L130C65" }, { "DocsId": "M:System.Windows.Forms.Padding.Subtract(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L132C63-L132C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L132C63-L132C70" }, { "DocsId": "M:System.Windows.Forms.Padding.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L135C60-L135C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L135C60-L135C113" }, { "DocsId": "M:System.Windows.Forms.Padding.Equals(System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L139C9-L142C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L139C9-L142C38" }, { "DocsId": "M:System.Windows.Forms.Padding.op_Addition(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L148C9-L148C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L148C9-L148C92" }, { "DocsId": "M:System.Windows.Forms.Padding.op_Subtraction(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L154C9-L154C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L154C9-L154C92" }, { "DocsId": "M:System.Windows.Forms.Padding.op_Equality(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L160C9-L160C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L160C9-L160C97" }, { "DocsId": "M:System.Windows.Forms.Padding.op_Inequality(System.Windows.Forms.Padding,System.Windows.Forms.Padding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L165C63-L165C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L165C63-L165C74" }, { "DocsId": "M:System.Windows.Forms.Padding.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L167C51-L167C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L167C51-L167C93" }, { "DocsId": "M:System.Windows.Forms.Padding.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L169C51-L169C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L169C51-L169C109" }, { "DocsId": "F:System.Windows.Forms.Padding.Empty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs" }, { "DocsId": "P:System.Windows.Forms.Padding.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L44C25-L44C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L44C25-L44C41" }, { "DocsId": "P:System.Windows.Forms.Padding.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L60C25-L60C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L60C25-L60C46" }, { "DocsId": "P:System.Windows.Forms.Padding.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L76C25-L76C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L76C25-L76C44" }, { "DocsId": "P:System.Windows.Forms.Padding.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L92C25-L92C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L92C25-L92C45" }, { "DocsId": "P:System.Windows.Forms.Padding.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L108C25-L108C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L108C25-L108C29" }, { "DocsId": "P:System.Windows.Forms.Padding.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L122C39-L122C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L122C39-L122C51" }, { "DocsId": "P:System.Windows.Forms.Padding.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L125C37-L125C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L125C37-L125C49" }, { "DocsId": "P:System.Windows.Forms.Padding.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L128C34-L128C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs#L128C34-L128C59" } ], "DocsId": "T:System.Windows.Forms.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Padding.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PaddingConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L15C9-L15C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L15C9-L15C81" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L18C9-L18C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L18C9-L18C101" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L22C9-L40C140" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L22C9-L40C140" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L45C9-L66C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L45C9-L66C73" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L71C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L71C9-L107C6" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L109C89-L109C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L109C89-L109C93" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L114C9-L115C145" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L114C9-L115C145" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L118C85-L118C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs#L118C85-L118C89" }, { "DocsId": "M:System.Windows.Forms.PaddingConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs" } ], "DocsId": "T:System.Windows.Forms.PaddingConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/PaddingConverter.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScreenOrientation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenOrientation.Angle0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenOrientation.Angle90", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenOrientation.Angle180", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenOrientation.Angle270", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" } ], "DocsId": "T:System.Windows.Forms.ScreenOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/ScreenOrientation.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L8C25-L8C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L8C25-L8C29" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Ascent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L10C25-L10C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L10C25-L10C29" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Descent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L12C26-L12C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L12C26-L12C30" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.InternalLeading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L14C34-L14C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L14C34-L14C38" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.ExternalLeading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L16C34-L16C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L16C34-L16C38" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.AverageCharWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L18C35-L18C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L18C35-L18C39" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.MaxCharWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L20C31-L20C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L20C31-L20C35" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Weight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L22C25-L22C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L22C25-L22C29" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Overhang", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L24C27-L24C31" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.DigitizedAspectX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L26C35-L26C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L26C35-L26C39" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.DigitizedAspectY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L28C35-L28C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L28C35-L28C39" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.FirstChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L30C29-L30C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L30C29-L30C33" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.LastChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L32C28-L32C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L32C28-L32C32" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.DefaultChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L34C31-L34C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L34C31-L34C35" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.BreakChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L36C29-L36C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L36C29-L36C33" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Italic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L38C26-L38C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L38C26-L38C30" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.Underlined", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L40C30-L40C34" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.StruckOut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L42C29-L42C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L42C29-L42C33" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.PitchAndFamily", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L44C61-L44C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L44C61-L44C65" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.TextMetrics.CharSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L46C46-L46C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs#L46C46-L46C50" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TextMetrics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetrics.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Ansi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Baltic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.ChineseBig5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.EastEurope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Gb2312", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Greek", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Hangul", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Mac", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Oem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Russian", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.ShiftJis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Symbol", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Turkish", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Vietnamese", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Johab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Arabic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Hebrew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet.Thai", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TextMetricsCharacterSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsCharacterSet.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues.FixedPitch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues.Vector", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues.TrueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues.Device", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TextMetricsPitchAndFamilyValues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/TextMetricsPitchAndFamilyValues.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ThemeSizeType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ThemeSizeType.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ThemeSizeType.True", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ThemeSizeType.Draw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ThemeSizeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/VisualStyles/ThemeSizeType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Automation.AutomationLiveSetting.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationLiveSetting.Off", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationLiveSetting.Polite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationLiveSetting.Assertive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" } ], "DocsId": "T:System.Windows.Forms.Automation.AutomationLiveSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationLiveSetting.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.ItemAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.ItemRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.ActionCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.ActionAborted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationKind.Other", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" } ], "DocsId": "T:System.Windows.Forms.Automation.AutomationNotificationKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationKind.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.ImportantAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.ImportantMostRecent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.MostRecent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "DocsId": "F:System.Windows.Forms.Automation.AutomationNotificationProcessing.CurrentThenMostRecent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" } ], "DocsId": "T:System.Windows.Forms.Automation.AutomationNotificationProcessing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/AutomationNotificationProcessing.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.Automation.IAutomationLiveRegion.LiveSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/IAutomationLiveRegion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/IAutomationLiveRegion.cs" } ], "DocsId": "T:System.Windows.Forms.Automation.IAutomationLiveRegion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/IAutomationLiveRegion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms.Primitives/src/System/Windows/Forms/Automation/IAutomationLiveRegion.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.json b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.json index 15023a5ca2e..58e5a10bb55 100644 --- a/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.json +++ b/xml/SourceLinkInformation/windowsdesktop-11.0/System.Windows.Forms.json @@ -1,61237 +1,61749 @@ { "Assembly": "System.Windows.Forms", - "GUID": "A191C041D43845FEB113388583FB424DFFFFFFFF", + "GUID": "5EFD9F4ACE4647C9A45BBCDF83F2445AFFFFFFFF", "Tag": "jePnxf5I+uU6BmQgNQl1w6+2f354wx4eFL9uonOi2D8=", "Types": [ { "Members": [ { "DocsId": "M:System.Drawing.Design.IPropertyValueUIService.AddPropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" }, { "DocsId": "M:System.Drawing.Design.IPropertyValueUIService.GetPropertyUIValueItems(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" }, { "DocsId": "M:System.Drawing.Design.IPropertyValueUIService.NotifyPropertyValueUIItemsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" }, { "DocsId": "M:System.Drawing.Design.IPropertyValueUIService.RemovePropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" }, { "DocsId": "E:System.Drawing.Design.IPropertyValueUIService.PropertyUIValueItemsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" } ], "DocsId": "T:System.Drawing.Design.IPropertyValueUIService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/IPropertyValueUIService.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.PaintValueEventArgs.#ctor(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L21C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L21C5-L27C6" }, { "DocsId": "P:System.Drawing.Design.PaintValueEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L32C31-L32C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L32C31-L32C35" }, { "DocsId": "P:System.Drawing.Design.PaintValueEventArgs.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L37C46-L37C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L37C46-L37C50" }, { "DocsId": "P:System.Drawing.Design.PaintValueEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L42C32-L42C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L42C32-L42C36" }, { "DocsId": "P:System.Drawing.Design.PaintValueEventArgs.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L47C28-L47C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs#L47C28-L47C32" } ], "DocsId": "T:System.Drawing.Design.PaintValueEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PaintValueEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.PropertyValueUIHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIHandler.Invoke(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor,System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIHandler.BeginInvoke(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor,System.Collections.ArrayList,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" } ], "DocsId": "T:System.Drawing.Design.PropertyValueUIHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.PropertyValueUIItem.#ctor(System.Drawing.Image,System.Drawing.Design.PropertyValueUIItemInvokeHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L15C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L15C5-L20C6" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIItem.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L32C35-L32C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L32C35-L32C36" }, { "DocsId": "P:System.Drawing.Design.PropertyValueUIItem.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L23C34-L23C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L23C34-L23C38" }, { "DocsId": "P:System.Drawing.Design.PropertyValueUIItem.InvokeHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L26C69-L26C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L26C69-L26C73" }, { "DocsId": "P:System.Drawing.Design.PropertyValueUIItem.ToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs#L29C38-L29C42" } ], "DocsId": "T:System.Drawing.Design.PropertyValueUIItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.PropertyValueUIItemInvokeHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIItemInvokeHandler.Invoke(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor,System.Drawing.Design.PropertyValueUIItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIItemInvokeHandler.BeginInvoke(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor,System.Drawing.Design.PropertyValueUIItem,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" }, { "DocsId": "M:System.Drawing.Design.PropertyValueUIItemInvokeHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" } ], "DocsId": "T:System.Drawing.Design.PropertyValueUIItemInvokeHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/PropertyValueUIItemInvokeHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.UITypeEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L66C5-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L66C5-L72C6" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L84C75-L84C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L84C75-L84C107" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L94C116-L94C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L94C116-L94C121" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.GetEditStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L99C52-L99C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L99C52-L99C70" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.GetPaintValueSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L104C45-L104C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L104C45-L104C73" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L112C84-L112C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L112C84-L112C89" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L120C91-L120C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L120C91-L120C117" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.PaintValue(System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L129C12-L129C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L129C12-L129C79" }, { "DocsId": "M:System.Drawing.Design.UITypeEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L135C61-L135C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L135C61-L135C62" }, { "DocsId": "P:System.Drawing.Design.UITypeEditor.IsDropDownResizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L77C48-L77C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs#L77C48-L77C53" } ], "DocsId": "T:System.Drawing.Design.UITypeEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditor.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Design.UITypeEditorEditStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" }, { "DocsId": "F:System.Drawing.Design.UITypeEditorEditStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" }, { "DocsId": "F:System.Drawing.Design.UITypeEditorEditStyle.Modal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" }, { "DocsId": "F:System.Drawing.Design.UITypeEditorEditStyle.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" } ], "DocsId": "T:System.Drawing.Design.UITypeEditorEditStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Drawing/Design/UITypeEditorEditStyle.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXDataNode.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L72C55-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L72C55-L74C6" }, { "DocsId": "M:System.Resources.ResXDataNode.#ctor(System.String,System.Object,System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L76C5-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L76C5-L99C6" }, { "DocsId": "M:System.Resources.ResXDataNode.#ctor(System.String,System.Resources.ResXFileRef)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L101C61-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L101C61-L103C6" }, { "DocsId": "M:System.Resources.ResXDataNode.#ctor(System.String,System.Resources.ResXFileRef,System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L105C5-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L105C5-L110C6" }, { "DocsId": "M:System.Resources.ResXDataNode.GetNodePosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L512C39-L512C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L512C39-L512C75" }, { "DocsId": "M:System.Resources.ResXDataNode.GetValueTypeName(System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L520C9-L588C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L520C9-L588C25" }, { "DocsId": "M:System.Resources.ResXDataNode.GetValueTypeName(System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L595C12-L595C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L595C12-L595C75" }, { "DocsId": "M:System.Resources.ResXDataNode.GetValue(System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L602C9-L631C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L602C9-L631C21" }, { "DocsId": "M:System.Resources.ResXDataNode.GetValue(System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L637C55-L637C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L637C55-L637C110" }, { "DocsId": "M:System.Resources.ResXDataNode.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L690C12-L690C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L690C12-L690C53" }, { "DocsId": "P:System.Resources.ResXDataNode.Comment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L149C16-L149C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L149C16-L149C62" }, { "DocsId": "P:System.Resources.ResXDataNode.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L158C13-L158C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L158C13-L158C61" }, { "DocsId": "P:System.Resources.ResXDataNode.FileRef", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L171C13-L180C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs#L171C13-L180C109" } ], "DocsId": "T:System.Resources.ResXDataNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXDataNode.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXFileRef.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L23C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L23C5-L27C6" }, { "DocsId": "M:System.Resources.ResXFileRef.#ctor(System.String,System.String,System.Text.Encoding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L34C87-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L34C87-L37C6" }, { "DocsId": "M:System.Resources.ResXFileRef.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L112C9-L126C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L112C9-L126C23" }, { "DocsId": "P:System.Resources.ResXFileRef.FileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L42C30-L42C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L42C30-L42C34" }, { "DocsId": "P:System.Resources.ResXFileRef.TypeName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L44C30-L44C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L44C30-L44C34" }, { "DocsId": "P:System.Resources.ResXFileRef.TextFileEncoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L46C41-L46C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs#L46C41-L46C45" }, { "DocsId": "T:System.Resources.ResXFileRef.Converter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" } ], "DocsId": "T:System.Resources.ResXFileRef", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXFileRef.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L50C50-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L50C50-L52C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.String,System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L55C11-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L55C11-L57C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L66C52-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L66C52-L68C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader,System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L71C11-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L71C11-L73C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L82C48-L84C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L82C48-L84C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream,System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L87C11-L89C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L87C11-L89C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream,System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L99C11-L101C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L99C11-L101C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader,System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L110C82-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L110C82-L112C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.#ctor(System.String,System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L122C11-L124C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L122C11-L124C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L135C9-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L135C9-L136C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L180C9-L181C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L180C9-L181C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L185C9-L187C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L185C9-L187C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L191C9-L202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L191C9-L202C6" }, { "DocsId": "M:System.Resources.ResXResourceReader.FromFileContents(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L282C12-L282C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L282C12-L282C73" }, { "DocsId": "M:System.Resources.ResXResourceReader.FromFileContents(System.String,System.ComponentModel.Design.ITypeResolutionService)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L288C12-L291C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L288C12-L291C10" }, { "DocsId": "M:System.Resources.ResXResourceReader.FromFileContents(System.String,System.Reflection.AssemblyName[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L297C12-L300C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L297C12-L300C10" }, { "DocsId": "M:System.Resources.ResXResourceReader.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L302C48-L302C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L302C48-L302C63" }, { "DocsId": "M:System.Resources.ResXResourceReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L306C9-L308C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L306C9-L308C56" }, { "DocsId": "M:System.Resources.ResXResourceReader.GetMetadataEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L316C9-L317C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L316C9-L317C60" }, { "DocsId": "P:System.Resources.ResXResourceReader.BasePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L143C16-L143C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L143C16-L143C25" }, { "DocsId": "P:System.Resources.ResXResourceReader.UseResXDataNodes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L163C16-L163C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs#L163C16-L163C33" } ], "DocsId": "T:System.Resources.ResXResourceReader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceReader.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXResourceSet.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L14C47-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L14C47-L16C6" }, { "DocsId": "M:System.Resources.ResXResourceSet.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L21C45-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L21C45-L23C6" }, { "DocsId": "M:System.Resources.ResXResourceSet.GetDefaultReader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L28C48-L28C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L28C48-L28C74" }, { "DocsId": "M:System.Resources.ResXResourceSet.GetDefaultWriter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L33C48-L33C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs#L33C48-L33C74" } ], "DocsId": "T:System.Resources.ResXResourceSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceSet.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L106C5-L106C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L106C5-L106C71" }, { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.String,System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L108C5-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L108C5-L112C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L117C5-L117C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L117C5-L117C65" }, { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.IO.Stream,System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L119C5-L123C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L119C5-L123C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L129C5-L129C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L129C5-L129C81" }, { "DocsId": "M:System.Resources.ResXResourceWriter.#ctor(System.IO.TextWriter,System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L131C5-L135C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L131C5-L135C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L139C9-L140C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L139C9-L140C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddAlias(System.String,System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L251C9-L254C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L251C9-L254C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L260C59-L260C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L260C59-L260C95" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L266C60-L266C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L266C60-L266C96" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L272C60-L272C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L272C60-L272C96" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddResource(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L277C60-L277C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L277C60-L277C92" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddResource(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L285C9-L293C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L285C9-L293C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddResource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L298C60-L298C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L298C60-L298C92" }, { "DocsId": "M:System.Resources.ResXResourceWriter.AddResource(System.Resources.ResXDataNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L306C9-L320C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L306C9-L320C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L509C28-L509C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L509C28-L509C37" }, { "DocsId": "M:System.Resources.ResXResourceWriter.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L513C9-L515C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L513C9-L515C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L519C9-L535C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L519C9-L535C6" }, { "DocsId": "M:System.Resources.ResXResourceWriter.Generate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L582C9-L591C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L582C9-L591C6" }, { "DocsId": "F:System.Resources.ResXResourceWriter.BinSerializedObjectMimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.SoapSerializedObjectMimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.DefaultSerializedObjectMimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.ByteArraySerializedObjectMimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.ResMimeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "F:System.Resources.ResXResourceWriter.ResourceSchema", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "DocsId": "P:System.Resources.ResXResourceWriter.BasePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L101C31-L101C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs#L101C31-L101C35" } ], "DocsId": "T:System.Resources.ResXResourceWriter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResXResourceWriter.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AccessibleEvents.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemSound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemAlert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemForeground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMenuStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMenuEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMenuPopupStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMenuPopupEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemCaptureStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemCaptureEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMoveSizeStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMoveSizeEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemContextHelpStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemContextHelpEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemDragDropStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemDragDropEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemDialogStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemDialogEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemScrollingStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemScrollingEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemSwitchStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemSwitchEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMinimizeStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SystemMinimizeEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Create", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Destroy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Reorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.Selection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SelectionAdd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SelectionRemove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.SelectionWithin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.StateChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.LocationChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.NameChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.DescriptionChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.ValueChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.ParentChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.HelpChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.DefaultActionChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleEvents.AcceleratorChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" } ], "DocsId": "T:System.Windows.Forms.AccessibleEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleEvents.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.FirstChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.LastChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Next", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Previous", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleNavigation.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" } ], "DocsId": "T:System.Windows.Forms.AccessibleNavigation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleNavigation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AccessibleObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2706C53-L125C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2706C53-L125C62" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L376C61-L376C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L376C61-L376C65" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L384C43-L384C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L384C43-L384C45" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.GetFocused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L428C9-L444C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L428C9-L444C68" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.GetHelpTopic(System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L470C9-L472C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L470C9-L472C22" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.GetSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L496C9-L512C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L496C9-L512C75" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L539C9-L563C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L539C9-L563C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Com#IServiceProvider#Interface#QueryService(System.Guid*,System.Guid*,System.Void**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L882C9-L904C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L882C9-L904C38" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessibleEx#Interface#GetObjectForChild(System.Int32,Windows.Win32.UI.Accessibility.IAccessibleEx**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L909C9-L915C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L909C9-L915C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessibleEx#Interface#GetIAccessiblePair(Windows.Win32.UI.Accessibility.IAccessible**,System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L920C9-L933C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L920C9-L933C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessibleEx#Interface#GetRuntimeId(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L938C9-L954C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L938C9-L954C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessibleEx#Interface#ConvertReturnedElement(Windows.Win32.UI.Accessibility.IRawElementProviderSimple*,Windows.Win32.UI.Accessibility.IAccessibleEx**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L958C9-L965C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L958C9-L965C34" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderSimple#Interface#get_ProviderOptions(Windows.Win32.UI.Accessibility.ProviderOptions*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L970C9-L976C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L970C9-L976C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderSimple#Interface#get_HostRawElementProvider(Windows.Win32.UI.Accessibility.IRawElementProviderSimple**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L981C9-L987C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L981C9-L987C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderSimple#Interface#GetPatternProvider(Windows.Win32.UI.Accessibility.UIA_PATTERN_ID,Windows.Win32.System.Com.IUnknown**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L992C9-L1004C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L992C9-L1004C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderSimple#Interface#GetPropertyValue(Windows.Win32.UI.Accessibility.UIA_PROPERTY_ID,Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1009C9-L1024C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1009C9-L1024C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#Navigate(Windows.Win32.UI.Accessibility.NavigateDirection,Windows.Win32.UI.Accessibility.IRawElementProviderFragment**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1029C9-L1036C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1029C9-L1036C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#GetRuntimeId(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1041C9-L1047C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1041C9-L1047C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#get_BoundingRectangle(Windows.Win32.UI.Accessibility.UiaRect*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1052C9-L1065C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1052C9-L1065C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#GetEmbeddedFragmentRoots(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1070C9-L1080C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1070C9-L1080C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#SetFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1085C9-L1086C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1085C9-L1086C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragment#Interface#get_FragmentRoot(Windows.Win32.UI.Accessibility.IRawElementProviderFragmentRoot**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1096C9-L1104C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1096C9-L1104C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragmentRoot#Interface#ElementProviderFromPoint(System.Double,System.Double,Windows.Win32.UI.Accessibility.IRawElementProviderFragment**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1109C9-L1115C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1109C9-L1115C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderFragmentRoot#Interface#GetFocus(Windows.Win32.UI.Accessibility.IRawElementProviderFragment**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1120C9-L1126C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1120C9-L1126C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#Select(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1131C9-L1132C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1131C9-L1132C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1137C9-L1138C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1137C9-L1138C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#SetValue(Windows.Win32.Foundation.PCWSTR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1143C9-L1144C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1143C9-L1144C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#GetIAccessible(Windows.Win32.UI.Accessibility.IAccessible**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1149C9-L1170C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1149C9-L1170C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_ChildId(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1175C9-L1181C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1175C9-L1181C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_Name(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1186C9-L1194C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1186C9-L1194C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_Value(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1200C13-L1208C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1200C13-L1208C33" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_Description(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1214C9-L1222C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1214C9-L1222C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_Role(System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1227C9-L1233C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1227C9-L1233C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_State(System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1238C9-L1244C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1238C9-L1244C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_Help(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1249C9-L1257C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1249C9-L1257C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_KeyboardShortcut(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1262C9-L1268C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1262C9-L1268C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#GetSelection(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1273C9-L1291C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1273C9-L1291C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ILegacyIAccessibleProvider#Interface#get_DefaultAction(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1296C9-L1302C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1296C9-L1302C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IExpandCollapseProvider#Interface#Expand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1307C9-L1308C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1307C9-L1308C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IExpandCollapseProvider#Interface#Collapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1313C9-L1314C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1313C9-L1314C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IExpandCollapseProvider#Interface#get_ExpandCollapseState(Windows.Win32.UI.Accessibility.ExpandCollapseState*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1319C9-L1325C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1319C9-L1325C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IInvokeProvider#Interface#Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1330C9-L1331C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1330C9-L1331C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#get_DocumentRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1334C66-L1334C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1334C66-L1334C87" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#GetSelection(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1336C74-L1336C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1336C74-L1336C99" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#GetVisibleRanges(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1338C78-L1338C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1338C78-L1338C107" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#RangeFromChild(Windows.Win32.UI.Accessibility.IRawElementProviderSimple*,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1341C12-L1341C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1341C12-L1341C56" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#RangeFromPoint(Windows.Win32.UI.Accessibility.UiaPoint,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1344C12-L1344C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1344C12-L1344C49" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#get_SupportedTextSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1346C78-L1346C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1346C78-L1346C108" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#get_DocumentRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1348C67-L1348C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1348C67-L1348C88" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#GetSelection(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1350C75-L1350C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1350C75-L1350C100" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#GetVisibleRanges(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1352C79-L1352C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1352C79-L1352C108" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#RangeFromChild(Windows.Win32.UI.Accessibility.IRawElementProviderSimple*,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1355C12-L1355C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1355C12-L1355C56" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#RangeFromPoint(Windows.Win32.UI.Accessibility.UiaPoint,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1358C12-L1358C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1358C12-L1358C49" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#get_SupportedTextSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1360C79-L1360C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1360C79-L1360C109" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#GetCaretRange(Windows.Win32.Foundation.BOOL*,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1362C101-L1362C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1362C101-L1362C137" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#RangeFromAnnotation(Windows.Win32.UI.Accessibility.IRawElementProviderSimple*,Windows.Win32.UI.Accessibility.ITextRangeProvider**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1365C12-L1365C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1365C12-L1365C62" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IValueProvider#Interface#SetValue(Windows.Win32.Foundation.PCWSTR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1369C9-L1370C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1369C9-L1370C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IValueProvider#Interface#get_Value(Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1375C9-L1381C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1375C9-L1381C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IValueProvider#Interface#get_IsReadOnly(Windows.Win32.Foundation.BOOL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1386C9-L1392C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1386C9-L1392C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IToggleProvider#Interface#Toggle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1397C9-L1398C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1397C9-L1398C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IToggleProvider#Interface#get_ToggleState(Windows.Win32.UI.Accessibility.ToggleState*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1403C9-L1409C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1403C9-L1409C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITableProvider#Interface#GetRowHeaders(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1414C9-L1424C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1414C9-L1424C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITableProvider#Interface#GetColumnHeaders(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1429C9-L1439C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1429C9-L1439C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITableProvider#Interface#get_RowOrColumnMajor(Windows.Win32.UI.Accessibility.RowOrColumnMajor*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1444C9-L1450C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1444C9-L1450C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITableItemProvider#Interface#GetRowHeaderItems(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1455C9-L1465C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1455C9-L1465C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITableItemProvider#Interface#GetColumnHeaderItems(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1470C9-L1480C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1470C9-L1480C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridProvider#Interface#GetItem(System.Int32,System.Int32,Windows.Win32.UI.Accessibility.IRawElementProviderSimple**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1485C9-L1491C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1485C9-L1491C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridProvider#Interface#get_RowCount(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1496C9-L1502C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1496C9-L1502C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridProvider#Interface#get_ColumnCount(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1507C9-L1513C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1507C9-L1513C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridItemProvider#Interface#get_Row(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1518C9-L1524C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1518C9-L1524C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridItemProvider#Interface#get_Column(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1529C9-L1535C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1529C9-L1535C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridItemProvider#Interface#get_RowSpan(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1540C9-L1546C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1540C9-L1546C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridItemProvider#Interface#get_ColumnSpan(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1551C9-L1557C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1551C9-L1557C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IGridItemProvider#Interface#get_ContainingGrid(Windows.Win32.UI.Accessibility.IRawElementProviderSimple**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1562C9-L1568C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1562C9-L1568C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accDoDefaultAction(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1572C9-L1572C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1572C9-L1572C88" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#accDoDefaultAction(Windows.Win32.System.Variant.VARIANT)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1576C9-L1601C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1576C9-L1601C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accHitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1630C9-L1632C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1630C9-L1632C34" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#accHitTest(System.Int32,System.Int32,Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1637C9-L1676C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1637C9-L1676C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accLocation(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1683C28-L1683C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1683C28-L1683C123" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#accLocation(System.Int32*,System.Int32*,System.Int32*,System.Int32*,Windows.Win32.System.Variant.VARIANT)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1687C9-L1728C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1687C9-L1728C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accNavigate(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1732C9-L1735C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1732C9-L1735C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#accNavigate(System.Int32,Windows.Win32.System.Variant.VARIANT,Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1739C9-L1780C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1739C9-L1780C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accSelect(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1786C9-L1786C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1786C9-L1786C92" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#accSelect(System.Int32,Windows.Win32.System.Variant.VARIANT)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1790C9-L1815C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1790C9-L1815C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1823C9-L1830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1823C9-L1830C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accChild(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1834C9-L1836C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1834C9-L1836C77" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accChild(Windows.Win32.System.Variant.VARIANT,Windows.Win32.System.Com.IDispatch**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1841C9-L1890C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1841C9-L1890C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1896C13-L1898C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1896C13-L1898C31" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accChildCount(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1904C9-L1929C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1904C9-L1929C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accDefaultAction(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1934C9-L1937C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1934C9-L1937C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accDefaultAction(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1941C9-L1969C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1941C9-L1969C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accDescription(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1974C9-L1977C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1974C9-L1977C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accDescription(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1981C9-L2009C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1981C9-L2009C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2045C9-L2049C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2045C9-L2049C62" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accFocus(Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2055C9-L2061C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2055C9-L2061C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accHelp(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2066C9-L2069C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2066C9-L2069C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accHelp(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2073C9-L2100C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2073C9-L2100C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accHelpTopic(System.String@,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2105C9-L2110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2105C9-L2110C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accHelpTopic(Windows.Win32.Foundation.BSTR*,Windows.Win32.System.Variant.VARIANT,System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2114C9-L2151C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2114C9-L2151C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accKeyboardShortcut(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2156C9-L2159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2156C9-L2159C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accKeyboardShortcut(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2163C9-L2185C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2163C9-L2185C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accName(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2190C9-L2193C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2190C9-L2193C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accName(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2197C9-L2234C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2197C9-L2234C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2241C13-L2243C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2241C13-L2243C87" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accParent(Windows.Win32.System.Com.IDispatch**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2249C9-L2277C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2249C9-L2277C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accRole(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2281C9-L2284C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2281C9-L2284C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accRole(Windows.Win32.System.Variant.VARIANT,Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2288C9-L2315C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2288C9-L2315C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2322C13-L2324C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2322C13-L2324C38" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accSelection(Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2330C9-L2353C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2330C9-L2353C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accState(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2357C9-L2360C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2357C9-L2360C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accState(Windows.Win32.System.Variant.VARIANT,Windows.Win32.System.Variant.VARIANT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2364C9-L2389C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2364C9-L2389C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#get_accValue(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2394C9-L2397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2394C9-L2397C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#get_accValue(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2401C9-L2429C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2401C9-L2429C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#set_accName(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2433C9-L2433C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2433C9-L2433C95" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#put_accName(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2437C9-L2469C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2437C9-L2469C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#set_accValue(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2473C9-L2473C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2473C9-L2473C97" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IAccessible#Interface#put_accValue(Windows.Win32.System.Variant.VARIANT,Windows.Win32.Foundation.BSTR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2477C9-L2509C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2477C9-L2509C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IOleWindow#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2534C9-L2556C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2534C9-L2556C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IOleWindow#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2565C9-L2580C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2565C9-L2580C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IEnumVARIANT#Interface#Clone(Windows.Win32.System.Ole.IEnumVARIANT**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2582C68-L2582C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2582C68-L2582C93" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IEnumVARIANT#Interface#Next(System.UInt32,Windows.Win32.System.Variant.VARIANT*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2585C12-L2585C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2585C12-L2585C55" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IEnumVARIANT#Interface#Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2587C47-L2587C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2587C47-L2587C66" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IEnumVARIANT#Interface#Skip(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2589C55-L2589C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2589C55-L2589C77" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2597C9-L2641C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2597C9-L2641C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2648C9-L2653C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2648C9-L2653C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2722C9-L2723C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2722C9-L2723C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2727C9-L2772C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2727C9-L2772C6" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2906C12-L2906C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2906C12-L2906C86" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethod(System.String,System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2910C12-L2910C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2910C12-L2910C60" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethods(System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2914C12-L2914C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2914C12-L2914C55" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetField(System.String,System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2918C12-L2918C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2918C12-L2918C59" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetFields(System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2922C12-L2922C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2922C12-L2922C54" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperty(System.String,System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2926C12-L2926C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2926C12-L2926C62" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2936C12-L2936C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2936C12-L2936C100" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperties(System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2940C12-L2940C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2940C12-L2940C58" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMember(System.String,System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2949C12-L2949C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2949C12-L2949C60" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMembers(System.Reflection.BindingFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2958C12-L2958C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2958C12-L2958C55" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2988C9-L2993C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2988C9-L2993C126" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#get_UnderlyingSystemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2996C43-L2996C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2996C43-L2996C62" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRawElementProviderHwndOverride#Interface#GetOverrideProviderForHwnd(Windows.Win32.Foundation.HWND,Windows.Win32.UI.Accessibility.IRawElementProviderSimple**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3000C9-L3006C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3000C9-L3006C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IMultipleViewProvider#Interface#get_CurrentView(System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3011C9-L3017C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3011C9-L3017C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IMultipleViewProvider#Interface#GetSupportedViews(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3022C9-L3031C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3022C9-L3031C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IMultipleViewProvider#Interface#GetViewName(System.Int32,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3036C9-L3042C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3036C9-L3042C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IMultipleViewProvider#Interface#SetCurrentView(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3047C9-L3048C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3047C9-L3048C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#SetValue(System.Double)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3053C9-L3054C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3053C9-L3054C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_Value(System.Double*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3059C9-L3065C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3059C9-L3065C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_IsReadOnly(Windows.Win32.Foundation.BOOL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3070C9-L3076C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3070C9-L3076C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_Maximum(System.Double*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3081C9-L3087C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3081C9-L3087C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_Minimum(System.Double*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3092C9-L3098C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3092C9-L3098C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_LargeChange(System.Double*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3103C9-L3109C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3103C9-L3109C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IRangeValueProvider#Interface#get_SmallChange(System.Double*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3114C9-L3120C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3114C9-L3120C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionProvider#Interface#GetSelection(Windows.Win32.System.Com.SAFEARRAY**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3125C9-L3135C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3125C9-L3135C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionProvider#Interface#get_CanSelectMultiple(Windows.Win32.Foundation.BOOL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3140C9-L3146C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3140C9-L3146C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionProvider#Interface#get_IsSelectionRequired(Windows.Win32.Foundation.BOOL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3151C9-L3157C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3151C9-L3157C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionItemProvider#Interface#Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3162C9-L3163C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3162C9-L3163C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionItemProvider#Interface#AddToSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3168C9-L3169C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3168C9-L3169C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionItemProvider#Interface#RemoveFromSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3174C9-L3175C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3174C9-L3175C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionItemProvider#Interface#get_IsSelected(Windows.Win32.Foundation.BOOL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3180C9-L3186C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3180C9-L3186C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ISelectionItemProvider#Interface#get_SelectionContainer(Windows.Win32.UI.Accessibility.IRawElementProviderSimple**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3191C9-L3197C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3191C9-L3197C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.RaiseAutomationNotification(System.Windows.Forms.Automation.AutomationNotificationKind,System.Windows.Forms.Automation.AutomationNotificationProcessing,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3216C12-L3221C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3216C12-L3221C44" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.RaiseLiveRegionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3230C9-L3230C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3230C9-L3230C84" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#IScrollItemProvider#Interface#ScrollIntoView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3292C9-L3293C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3292C9-L3293C29" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Com#IDispatch#Interface#GetTypeInfoCount(System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3310C12-L3310C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3310C12-L3310C77" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Com#IDispatch#Interface#GetTypeInfo(System.UInt32,System.UInt32,Windows.Win32.System.Com.ITypeInfo**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3313C12-L3313C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3313C12-L3313C86" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Com#IDispatch#Interface#GetIDsOfNames(System.Guid*,Windows.Win32.Foundation.PWSTR*,System.UInt32,System.UInt32,System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3316C12-L3316C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3316C12-L3316C106" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Com#IDispatch#Interface#Invoke(System.Int32,System.Guid*,System.UInt32,Windows.Win32.System.Com.DISPATCH_FLAGS,Windows.Win32.System.Com.DISPPARAMS*,Windows.Win32.System.Variant.VARIANT*,Windows.Win32.System.Com.EXCEPINFO*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3327C12-L3327C139" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3327C12-L3327C139" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#GetDispID(Windows.Win32.Foundation.BSTR,System.UInt32,System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3330C12-L3330C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3330C12-L3330C86" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#InvokeEx(System.Int32,System.UInt32,System.UInt16,Windows.Win32.System.Com.DISPPARAMS*,Windows.Win32.System.Variant.VARIANT*,Windows.Win32.System.Com.EXCEPINFO*,Windows.Win32.System.Com.IServiceProvider*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3340C12-L3340C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3340C12-L3340C110" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#DeleteMemberByName(Windows.Win32.Foundation.BSTR,System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3343C12-L3343C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3343C12-L3343C90" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#DeleteMemberByDispID(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3346C12-L3346C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3346C12-L3346C78" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#GetMemberProperties(System.Int32,System.UInt32,Windows.Win32.System.Ole.FDEX_PROP_FLAGS*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3349C12-L3349C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3349C12-L3349C99" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#GetMemberName(System.Int32,Windows.Win32.Foundation.BSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3352C12-L3352C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3352C12-L3352C82" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#GetNextDispID(System.UInt32,System.Int32,System.Int32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3355C12-L3355C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3355C12-L3355C84" }, { "DocsId": "M:System.Windows.Forms.AccessibleObject.Windows#Win32#System#Ole#IDispatchEx#Interface#GetNameSpaceParent(Windows.Win32.System.Com.IUnknown**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3358C12-L3358C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L3358C12-L3358C79" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L143C40-L143C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L143C40-L143C86" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L148C45-L148C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L148C45-L148C97" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L168C43-L168C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L168C43-L168C93" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L190C36-L190C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L190C36-L190C79" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L210C48-L210C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L210C48-L210C115" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L232C16-L232C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L232C16-L232C59" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L290C9-L290C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L290C9-L290C103" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L324C43-L324C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L324C43-L324C85" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L329C46-L329C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L329C46-L329C89" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L337C16-L337C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L337C16-L337C60" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#DocumentRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1334C66-L1334C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1334C66-L1334C87" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider#Interface#SupportedTextSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1346C78-L1346C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1346C78-L1346C108" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#DocumentRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1348C67-L1348C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1348C67-L1348C88" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Windows#Win32#UI#Accessibility#ITextProvider2#Interface#SupportedTextSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1360C79-L1360C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1360C79-L1360C109" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1896C13-L1898C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L1896C13-L1898C31" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2045C9-L2049C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2045C9-L2049C62" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2241C13-L2243C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2241C13-L2243C87" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2322C13-L2324C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2322C13-L2324C38" }, { "DocsId": "P:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#UnderlyingSystemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2996C43-L2996C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs#L2996C43-L2996C62" } ], "DocsId": "T:System.Windows.Forms.AccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleObject.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AccessibleRole.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.TitleBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.MenuBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Grip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Sound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Caret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Alert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Client", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.MenuPopup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.MenuItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Application", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Pane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Chart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Dialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Border", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Grouping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ToolBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.StatusBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Table", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.RowHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Cell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.HelpBalloon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Character", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ListItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Outline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.OutlineItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.PageTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.PropertyPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Indicator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Graphic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.StaticText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.PushButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.CheckButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.RadioButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.DropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Dial", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.HotkeyField", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Slider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.SpinButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Diagram", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Animation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Equation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ButtonDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ButtonMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.ButtonDropDownGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.WhiteSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.PageTabList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.Clock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.SplitButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.IpAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleRole.OutlineButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" } ], "DocsId": "T:System.Windows.Forms.AccessibleRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleRoles.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AccessibleSelection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.TakeFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.TakeSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.ExtendSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.AddSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleSelection.RemoveSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" } ], "DocsId": "T:System.Windows.Forms.AccessibleSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleSelection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AccessibleStates.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Unavailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Mixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Indeterminate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.HotTracked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Expanded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Collapsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Busy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Floating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Marqueed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Animated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Invisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Offscreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Sizeable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Moveable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.SelfVoicing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Focusable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Selectable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Linked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Traversed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.MultiSelectable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.ExtSelectable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.AlertLow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.AlertMedium", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.AlertHigh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Protected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.HasPopup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "DocsId": "F:System.Windows.Forms.AccessibleStates.Valid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" } ], "DocsId": "T:System.Windows.Forms.AccessibleStates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/AccessibleStates.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleControl#Interface#GetControlInfo(Windows.Win32.System.Ole.CONTROLINFO*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L31C9-L51C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L31C9-L51C52" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleControl#Interface#OnMnemonic(Windows.Win32.UI.WindowsAndMessaging.MSG*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L57C9-L65C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L57C9-L65C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleControl#Interface#OnAmbientPropertyChange(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L71C9-L72C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L71C9-L72C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleControl#Interface#FreezeEvents(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L78C9-L80C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L78C9-L80C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L85C12-L85C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L85C12-L85C64" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L89C12-L89C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L89C12-L89C80" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#TranslateAccelerator(Windows.Win32.UI.WindowsAndMessaging.MSG*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L93C12-L93C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L93C12-L93C55" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#OnFrameWindowActivate(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L98C9-L99C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L98C9-L99C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#OnDocWindowActivate(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L105C9-L106C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L105C9-L106C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#ResizeBorder(Windows.Win32.Foundation.RECT*,Windows.Win32.System.Ole.IOleInPlaceUIWindow*,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L111C9-L111C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L111C9-L111C21" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceActiveObject#Interface#EnableModeless(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L114C79-L114C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L114C79-L114C96" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L117C67-L117C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L117C67-L117C99" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L122C9-L127C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L122C9-L127C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#InPlaceDeactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L131C64-L131C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L131C64-L131C99" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#UIDeactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L134C59-L134C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L134C59-L134C89" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#SetObjectRects(Windows.Win32.Foundation.RECT*,Windows.Win32.Foundation.RECT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L138C9-L138C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L138C9-L138C66" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleInPlaceObject#Interface#ReactivateAndUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L141C64-L141C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L141C64-L141C76" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#SetClientSite(Windows.Win32.System.Ole.IOleClientSite*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L146C9-L147C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L146C9-L147C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetClientSite(Windows.Win32.System.Ole.IOleClientSite**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L153C9-L159C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L153C9-L159C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#SetHostNames(Windows.Win32.Foundation.PCWSTR,Windows.Win32.Foundation.PCWSTR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L165C9-L165C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L165C9-L165C21" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#Close(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L170C9-L171C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L170C9-L171C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#SetMoniker(System.UInt32,Windows.Win32.System.Com.IMoniker*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L175C84-L175C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L175C84-L175C101" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetMoniker(System.UInt32,System.UInt32,Windows.Win32.System.Com.IMoniker**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L180C9-L186C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L180C9-L186C34" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#InitFromData(Windows.Win32.System.Com.IDataObject*,Windows.Win32.Foundation.BOOL,System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L191C9-L191C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L191C9-L191C26" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetClipboardData(System.UInt32,Windows.Win32.System.Com.IDataObject**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L196C9-L202C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L196C9-L202C34" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#DoVerb(System.Int32,Windows.Win32.UI.WindowsAndMessaging.MSG*,Windows.Win32.System.Ole.IOleClientSite*,System.Int32,Windows.Win32.Foundation.HWND,Windows.Win32.Foundation.RECT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L215C9-L218C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L215C9-L218C109" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#EnumVerbs(Windows.Win32.System.Ole.IEnumOLEVERB**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L224C9-L230C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L224C9-L230C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#Update", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L234C46-L234C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L234C46-L234C58" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#IsUpToDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L237C50-L237C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L237C50-L237C62" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetUserClassID(System.Guid*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L242C9-L248C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L242C9-L248C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetUserType(System.UInt32,Windows.Win32.Foundation.PWSTR*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L254C9-L262C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L254C9-L262C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#SetExtent(Windows.Win32.System.Com.DVASPECT,Windows.Win32.Foundation.SIZE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L268C9-L274C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L268C9-L274C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetExtent(Windows.Win32.System.Com.DVASPECT,Windows.Win32.Foundation.SIZE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L280C9-L286C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L280C9-L286C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#Advise(Windows.Win32.System.Com.IAdviseSink*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L292C9-L297C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L292C9-L297C64" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#Unadvise(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L301C65-L301C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L301C65-L301C103" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#EnumAdvise(Windows.Win32.System.Com.IEnumSTATDATA**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L306C9-L312C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L306C9-L312C34" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#GetMiscStatus(Windows.Win32.System.Com.DVASPECT,Windows.Win32.System.Ole.OLEMISC*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L318C9-L341C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L318C9-L341C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleObject#Interface#SetColorScheme(Windows.Win32.Graphics.Gdi.LOGPALETTE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L345C73-L345C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L345C73-L345C85" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleWindow#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L348C60-L348C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L348C60-L348C112" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IOleWindow#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L352C12-L352C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L352C12-L352C80" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersist#Interface#GetClassID(System.Guid*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L356C9-L362C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L356C9-L362C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IPersistPropertyBag#Interface#InitNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L366C56-L366C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L366C56-L366C68" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IPersistPropertyBag#Interface#GetClassID(System.Guid*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L371C9-L377C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L371C9-L377C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IPersistPropertyBag#Interface#Load(Windows.Win32.System.Com.StructuredStorage.IPropertyBag*,Windows.Win32.System.Com.IErrorLog*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L383C9-L384C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L383C9-L384C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IPersistPropertyBag#Interface#Save(Windows.Win32.System.Com.StructuredStorage.IPropertyBag*,Windows.Win32.Foundation.BOOL,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L390C9-L391C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L390C9-L391C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#GetClassID(System.Guid*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L397C9-L403C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L397C9-L403C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#IsDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L407C52-L407C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L407C52-L407C77" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#InitNew(Windows.Win32.System.Com.StructuredStorage.IStorage*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L410C66-L410C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L410C66-L410C78" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#Load(Windows.Win32.System.Com.StructuredStorage.IStorage*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L415C9-L420C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L415C9-L420C43" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#Save(Windows.Win32.System.Com.StructuredStorage.IStorage*,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L426C9-L431C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L426C9-L431C60" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#SaveCompleted(Windows.Win32.System.Com.StructuredStorage.IStorage*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L435C75-L435C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L435C75-L435C87" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#StructuredStorage#IPersistStorage#Interface#HandsOffStorage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L438C60-L438C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L438C60-L438C72" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#GetClassID(System.Guid*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L443C9-L449C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L443C9-L449C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#IsDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L453C55-L453C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L453C55-L453C80" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#Load(Windows.Win32.System.Com.IStream*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L458C9-L464C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L458C9-L464C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#Save(Windows.Win32.System.Com.IStream*,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L470C9-L476C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L470C9-L476C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#GetSizeMax(System.UInt64*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L480C72-L480C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L480C72-L480C84" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Com#IPersistStreamInit#Interface#InitNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L483C55-L483C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L483C55-L483C67" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IQuickActivate#Interface#QuickActivate(Windows.Win32.System.Ole.QACONTAINER*,Windows.Win32.System.Ole.QACONTROL*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L487C9-L487C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L487C9-L487C64" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IQuickActivate#Interface#SetContentExtent(Windows.Win32.Foundation.SIZE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L492C9-L498C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L492C9-L498C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IQuickActivate#Interface#GetContentExtent(Windows.Win32.Foundation.SIZE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L504C9-L510C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L504C9-L510C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#Draw(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,Windows.Win32.System.Com.DVTARGETDEVICE*,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Foundation.RECTL*,Windows.Win32.Foundation.RECTL*,System.IntPtr,System.UIntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L526C9-L540C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L526C9-L540C29" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#GetColorSet(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,Windows.Win32.System.Com.DVTARGETDEVICE*,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Graphics.Gdi.LOGPALETTE**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L552C9-L552C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L552C9-L552C26" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#Freeze(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L556C9-L556C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L556C9-L556C26" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#Unfreeze(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L559C62-L559C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L559C62-L559C79" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#SetAdvise(Windows.Win32.System.Com.DVASPECT,System.UInt32,Windows.Win32.System.Com.IAdviseSink*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L563C9-L563C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L563C9-L563C65" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject#Interface#GetAdvise(System.UInt32*,System.UInt32*,Windows.Win32.System.Com.IAdviseSink**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L567C9-L567C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L567C9-L567C80" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#Draw(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,Windows.Win32.System.Com.DVTARGETDEVICE*,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Foundation.RECTL*,Windows.Win32.Foundation.RECTL*,System.IntPtr,System.UIntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L581C12-L591C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L581C12-L591C24" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#GetColorSet(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,Windows.Win32.System.Com.DVTARGETDEVICE*,Windows.Win32.Graphics.Gdi.HDC,Windows.Win32.Graphics.Gdi.LOGPALETTE**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L601C12-L601C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L601C12-L601C116" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#Freeze(Windows.Win32.System.Com.DVASPECT,System.Int32,System.Void*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L605C12-L605C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L605C12-L605C91" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#Unfreeze(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L609C12-L609C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L609C12-L609C60" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#SetAdvise(Windows.Win32.System.Com.DVASPECT,System.UInt32,Windows.Win32.System.Com.IAdviseSink*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L613C12-L613C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L613C12-L613C76" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#GetAdvise(System.UInt32*,System.UInt32*,Windows.Win32.System.Com.IAdviseSink**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L617C12-L617C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L617C12-L617C79" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#System#Ole#IViewObject2#Interface#GetExtent(Windows.Win32.System.Com.DVASPECT,System.Int32,Windows.Win32.System.Com.DVTARGETDEVICE*,Windows.Win32.Foundation.SIZE*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L621C12-L621C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control_ActiveXControlInterfaces.cs#L621C12-L621C73" }, { "DocsId": "M:System.Windows.Forms.Control.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L304C24-L306C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L314C24-L316C6" }, { "DocsId": "M:System.Windows.Forms.Control.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L398C36-L400C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L408C36-L410C6" }, { "DocsId": "M:System.Windows.Forms.Control.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L406C11-L408C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L416C11-L418C6" }, { "DocsId": "M:System.Windows.Forms.Control.#ctor(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L413C53-L417C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L423C53-L427C6" }, { "DocsId": "M:System.Windows.Forms.Control.#ctor(System.Windows.Forms.Control,System.String,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L422C95-L426C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L432C95-L436C6" }, { "DocsId": "M:System.Windows.Forms.Control.GetAccessibilityObjectById(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L560C9-L560C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L570C9-L570C67" }, { "DocsId": "M:System.Windows.Forms.Control.SetAutoSizeMode(System.Windows.Forms.AutoSizeMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L752C58-L752C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L762C58-L762C102" }, { "DocsId": "M:System.Windows.Forms.Control.GetAutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L754C49-L754C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L764C49-L764C87" }, { "DocsId": "M:System.Windows.Forms.Control.ResetBindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1019C9-L1026C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1198C9-L1205C6" }, { "DocsId": "M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2138C9-L2183C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2317C9-L2362C30" }, { "DocsId": "M:System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4216C9-L4217C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4426C9-L4427C6" }, { "DocsId": "M:System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4222C9-L4226C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4432C9-L4436C6" }, { "DocsId": "M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4339C57-L4339C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4555C57-L4555C82" }, { "DocsId": "M:System.Windows.Forms.Control.BeginInvoke(System.Action)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4349C55-L4349C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4565C55-L4565C80" }, { "DocsId": "M:System.Windows.Forms.Control.BeginInvoke(System.Delegate,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4370C9-L4373C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4586C9-L4589C6" }, { "DocsId": "M:System.Windows.Forms.Control.BringToFront", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4395C9-L4407C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4610C9-L4622C6" }, { "DocsId": "M:System.Windows.Forms.Control.Contains(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4495C13-L4507C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4710C13-L4722C22" }, { "DocsId": "M:System.Windows.Forms.Control.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4517C9-L4517C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4732C9-L4732C50" }, { "DocsId": "M:System.Windows.Forms.Control.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4527C9-L4527C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4742C9-L4742C44" }, { "DocsId": "M:System.Windows.Forms.Control.CreateGraphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4539C9-L4541C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4754C9-L4756C6" }, { "DocsId": "M:System.Windows.Forms.Control.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4556C9-L4620C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4771C9-L4835C6" }, { "DocsId": "M:System.Windows.Forms.Control.CreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4628C9-L4640C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4843C9-L4855C6" }, { "DocsId": "M:System.Windows.Forms.Control.DefWndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4701C57-L4701C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4916C57-L4916C82" }, { "DocsId": "M:System.Windows.Forms.Control.DestroyHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4710C9-L4765C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4925C9-L4980C6" }, { "DocsId": "M:System.Windows.Forms.Control.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4772C9-L4856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4987C9-L5071C6" }, { "DocsId": "M:System.Windows.Forms.Control.DoDragDropAsJson``1(``0,System.Windows.Forms.DragDropEffects)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4872C9-L4872C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5087C9-L5087C115" }, { "DocsId": "M:System.Windows.Forms.Control.DoDragDropAsJson``1(``0,System.Windows.Forms.DragDropEffects,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4901C9-L4909C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5116C9-L5124C101" }, { "DocsId": "M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4921C9-L4921C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5136C9-L5136C109" }, { "DocsId": "M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4956C9-L4979C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5171C9-L5194C6" }, { "DocsId": "M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4990C9-L5030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5205C9-L5245C6" }, { "DocsId": "M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5041C9-L5067C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5256C9-L5282C6" }, { "DocsId": "M:System.Windows.Forms.Control.FindForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5099C9-L5105C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5322C9-L5328C31" }, { "DocsId": "M:System.Windows.Forms.Control.GetTopLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5143C37-L5143C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5366C37-L5366C68" }, { "DocsId": "M:System.Windows.Forms.Control.RaiseKeyEvent(System.Object,System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5160C9-L5161C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5383C9-L5384C6" }, { "DocsId": "M:System.Windows.Forms.Control.RaiseMouseEvent(System.Object,System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5170C9-L5171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5393C9-L5394C6" }, { "DocsId": "M:System.Windows.Forms.Control.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5180C9-L5180C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5403C9-L5403C32" }, { "DocsId": "M:System.Windows.Forms.Control.FromChildHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5225C9-L5237C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5448C9-L5460C21" }, { "DocsId": "M:System.Windows.Forms.Control.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5252C9-L5258C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5475C9-L5481C114" }, { "DocsId": "M:System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point,System.Windows.Forms.GetChildAtPointSkip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5301C9-L5312C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5524C9-L5535C51" }, { "DocsId": "M:System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5323C50-L5323C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5546C50-L5546C95" }, { "DocsId": "M:System.Windows.Forms.Control.GetContainerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5331C9-L5338C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5554C9-L5561C38" }, { "DocsId": "M:System.Windows.Forms.Control.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5365C9-L5426C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5589C9-L5650C46" }, { "DocsId": "M:System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5601C9-L5778C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5825C9-L6002C41" }, { "DocsId": "M:System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5815C52-L5815C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6039C52-L6039C82" }, { "DocsId": "M:System.Windows.Forms.Control.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5822C9-L5823C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6046C9-L6047C6" }, { "DocsId": "M:System.Windows.Forms.Control.InitLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5852C9-L5853C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6076C9-L6077C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5887C9-L5888C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6111C9-L6112C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5898C9-L5929C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6122C9-L6153C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5938C9-L5939C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6162C9-L6163C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5948C9-L5970C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6172C9-L6194C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5980C9-L5981C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6204C9-L6205C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L5991C9-L6018C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6215C9-L6242C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invoke(System.Action)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6026C9-L6027C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6250C9-L6251C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invoke(System.Delegate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6043C46-L6043C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6267C46-L6267C66" }, { "DocsId": "M:System.Windows.Forms.Control.Invoke(System.Delegate,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6061C9-L6064C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6285C9-L6288C6" }, { "DocsId": "M:System.Windows.Forms.Control.Invoke``1(System.Func{``0})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6072C43-L6072C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6296C43-L6296C66" }, { "DocsId": "M:System.Windows.Forms.Control.InvokePaint(System.Windows.Forms.Control,System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6258C9-L6259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6482C9-L6483C6" }, { "DocsId": "M:System.Windows.Forms.Control.InvokePaintBackground(System.Windows.Forms.Control,System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6263C9-L6264C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6487C9-L6488C6" }, { "DocsId": "M:System.Windows.Forms.Control.IsKeyLocked(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6295C9-L6311C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6519C9-L6535C98" }, { "DocsId": "M:System.Windows.Forms.Control.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6330C9-L6334C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6554C9-L6558C92" }, { "DocsId": "M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6352C9-L6372C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6576C9-L6596C93" }, { "DocsId": "M:System.Windows.Forms.Control.IsMnemonic(System.Char,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6383C9-L6414C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6607C9-L6638C22" }, { "DocsId": "M:System.Windows.Forms.Control.LogicalToDeviceUnits(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6433C51-L6433C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6657C51-L6657C91" }, { "DocsId": "M:System.Windows.Forms.Control.LogicalToDeviceUnits(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6441C53-L6441C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6665C53-L6665C93" }, { "DocsId": "M:System.Windows.Forms.Control.ScaleBitmapLogicalToDevice(System.Drawing.Bitmap@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6451C9-L6457C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6675C9-L6681C6" }, { "DocsId": "M:System.Windows.Forms.Control.NotifyInvalidate(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6608C9-L6609C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6832C9-L6833C6" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeOnClick(System.Windows.Forms.Control,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6651C9-L6652C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6875C9-L6876C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnAutoSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6656C9-L6660C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6880C9-L6884C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6665C9-L6697C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6889C9-L6921C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnBackgroundImageChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6702C9-L6721C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6926C9-L6945C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnBackgroundImageLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6726C9-L6737C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6950C9-L6961C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnBindingContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6742C9-L6764C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6966C9-L6988C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnCausesValidationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6769C9-L6773C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6993C9-L6997C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnContextMenuStripChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6787C9-L6791C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7011C9-L7015C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnCursorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6796C9-L6808C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7020C9-L7032C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDataContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6813C9-L6830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7037C9-L7054C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7071C9-L7133C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.GetVisualStylesModeChangeImpact(System.Windows.Forms.VisualStylesMode,System.Windows.Forms.VisualStylesMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7163C12-L7163C48" }, { "DocsId": "M:System.Windows.Forms.Control.OnDockChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6835C9-L6839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7209C9-L7213C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6850C9-L6879C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7224C9-L7253C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6888C9-L6926C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7262C9-L7300C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6931C9-L6950C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7305C9-L7324C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6955C9-L6978C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7329C9-L7352C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6988C5-L6988C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7362C5-L7362C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L6993C9-L6998C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7367C9-L7372C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentBackgroundImageChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7003C9-L7004C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7377C9-L7378C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7009C9-L7013C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7383C9-L7387C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentCursorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7018C9-L7022C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7392C9-L7396C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentDataContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7027C9-L7043C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7401C9-L7417C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.OnParentVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7426C9-L7472C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7048C9-L7052C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7647C9-L7651C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7059C9-L7072C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7658C9-L7671C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7123C9-L7128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7722C9-L7727C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7133C9-L7137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7732C9-L7736C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7142C9-L7146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7741C9-L7745C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7168C9-L7193C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7767C9-L7792C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnTabIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7198C9-L7202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7797C9-L7801C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnTabStopChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7207C9-L7211C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7806C9-L7810C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7216C9-L7220C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7815C9-L7819C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7230C9-L7269C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7829C9-L7868C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7285C9-L7295C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7884C9-L7896C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7304C9-L7305C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7905C9-L7906C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnClientSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7310C9-L7314C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7911C9-L7915C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnControlAdded(System.Windows.Forms.ControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7322C9-L7323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7923C9-L7924C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnControlRemoved(System.Windows.Forms.ControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7331C9-L7332C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7932C9-L7933C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnCreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7340C5-L7340C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7941C5-L7941C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7349C9-L7470C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7950C9-L8078C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnLocationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7499C9-L7504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8107C9-L8112C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7518C9-L7569C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8126C9-L8177C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDoubleClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7577C9-L7578C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8185C9-L8186C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7592C9-L7593C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8200C9-L8201C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7602C9-L7603C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8210C9-L8211C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7612C9-L7613C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8220C9-L8221C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7622C9-L7623C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8230C9-L8231C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7632C9-L7633C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8240C9-L8241C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7638C9-L7639C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8246C9-L8247C6" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeGotFocus(System.Windows.Forms.Control,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7647C9-L7652C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8255C9-L8260C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7660C9-L7668C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8268C9-L8276C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnHelpRequested(System.Windows.Forms.HelpEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7677C9-L7691C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8285C9-L8299C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7701C9-L7716C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8309C9-L8324C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7724C9-L7725C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8332C9-L8333C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7733C9-L7734C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8341C9-L8342C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7742C9-L7749C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8350C9-L8357C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7761C9-L7777C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8369C9-L8385C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7799C9-L7800C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8407C9-L8408C6" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeLostFocus(System.Windows.Forms.Control,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7805C9-L7810C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8413C9-L8418C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7818C9-L7824C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8426C9-L8432C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMarginChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7828C9-L7829C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8436C9-L8437C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7837C9-L7838C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8445C9-L8446C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseClick(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7846C9-L7847C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8454C9-L8455C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseCaptureChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7855C9-L7856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8463C9-L8464C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7864C9-L7865C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8472C9-L8473C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7873C9-L7874C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8481C9-L8482C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7882C9-L7883C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8490C9-L8491C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDpiChangedBeforeParent(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7895C9-L7896C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8503C9-L8504C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnDpiChangedAfterParent(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7908C9-L7909C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8516C9-L8517C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseHover(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7917C9-L7918C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8525C9-L8526C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7926C9-L7927C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8534C9-L8535C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7935C9-L7936C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8543C9-L8544C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7944C9-L7945C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8552C9-L8553C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnMove(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7953C9-L7959C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8561C9-L8567C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7968C9-L7969C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8576C9-L8577C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnPaddingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7973C9-L7979C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8581C9-L8587C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L7989C9-L7991C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8597C9-L8599C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8026C9-L8027C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8634C9-L8635C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnRegionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8035C9-L8039C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8643C9-L8647C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8047C9-L8055C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8655C9-L8663C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8063C9-L8064C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8671C9-L8672C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8069C9-L8075C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8677C9-L8683C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnChangeUICues(System.Windows.Forms.UICuesEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8083C9-L8084C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8691C9-L8692C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8092C9-L8093C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8700C9-L8701C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8101C9-L8112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8709C9-L8720C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.OnSystemVisualSettingsChanged(System.Windows.Forms.SystemVisualSettingsChangedEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8741C9-L8763C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnValidating(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8120C9-L8121C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8849C9-L8850C6" }, { "DocsId": "M:System.Windows.Forms.Control.OnValidated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8129C9-L8130C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8858C9-L8859C6" }, { "DocsId": "M:System.Windows.Forms.Control.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8147C5-L8147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8876C5-L8876C6" }, { "DocsId": "M:System.Windows.Forms.Control.PerformLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8414C9-L8428C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9143C9-L9157C6" }, { "DocsId": "M:System.Windows.Forms.Control.PerformLayout(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8436C9-L8437C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9165C9-L9166C6" }, { "DocsId": "M:System.Windows.Forms.Control.PointToClient(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8584C9-L8585C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9313C9-L9314C18" }, { "DocsId": "M:System.Windows.Forms.Control.PointToScreen(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8593C9-L8594C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9322C9-L9323C18" }, { "DocsId": "M:System.Windows.Forms.Control.PreProcessMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8639C9-L8678C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9368C9-L9407C23" }, { "DocsId": "M:System.Windows.Forms.Control.PreProcessControlMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8696C12-L8696C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9425C12-L9425C67" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8785C9-L8785C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9514C9-L9514C58" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessDialogChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8891C64-L8891C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9620C64-L9620C109" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8905C62-L8905C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9634C62-L9634C105" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessKeyEventArgs(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L8921C9-L8984C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9650C9-L9713C31" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessKeyMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9002C9-L9002C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9731C9-L9731C96" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessKeyPreview(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9019C64-L9019C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9748C64-L9748C106" }, { "DocsId": "M:System.Windows.Forms.Control.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9034C71-L9034C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9763C71-L9763C76" }, { "DocsId": "M:System.Windows.Forms.Control.RaiseDragEvent(System.Object,System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9114C9-L9115C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9843C9-L9844C6" }, { "DocsId": "M:System.Windows.Forms.Control.RaisePaintEvent(System.Object,System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9124C9-L9125C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9853C9-L9854C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9145C9-L9146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9874C9-L9875C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9151C9-L9152C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9880C9-L9881C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9165C9-L9166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9894C9-L9895C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9174C9-L9175C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9903C9-L9904C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetRightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9208C9-L9209C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9937C9-L9938C6" }, { "DocsId": "M:System.Windows.Forms.Control.RecreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9218C9-L9219C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9947C9-L9948C6" }, { "DocsId": "M:System.Windows.Forms.Control.RectangleToClient(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9391C9-L9393C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10120C9-L10122C21" }, { "DocsId": "M:System.Windows.Forms.Control.RectangleToScreen(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9401C9-L9403C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10130C9-L10132C21" }, { "DocsId": "M:System.Windows.Forms.Control.ReflectMessage(System.IntPtr,System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9415C9-L9426C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10144C9-L10155C21" }, { "DocsId": "M:System.Windows.Forms.Control.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9434C9-L9436C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10163C9-L10165C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetMouseEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9470C9-L9475C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10199C9-L10204C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9482C9-L9483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10211C9-L10212C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResumeLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9494C35-L9494C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10223C35-L10223C68" }, { "DocsId": "M:System.Windows.Forms.Control.ResumeLayout(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9502C9-L9551C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10231C9-L10280C6" }, { "DocsId": "M:System.Windows.Forms.Control.Scale(System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9604C9-L9605C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10333C9-L10334C6" }, { "DocsId": "M:System.Windows.Forms.Control.Scale(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9614C9-L9616C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10343C9-L10345C6" }, { "DocsId": "M:System.Windows.Forms.Control.Scale(System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9627C9-L9640C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10356C9-L10369C6" }, { "DocsId": "M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9799C9-L9887C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10528C9-L10616C6" }, { "DocsId": "M:System.Windows.Forms.Control.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9895C9-L9923C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10624C9-L10652C6" }, { "DocsId": "M:System.Windows.Forms.Control.Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9949C9-L9950C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10678C9-L10679C6" }, { "DocsId": "M:System.Windows.Forms.Control.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9955C9-L9958C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10684C9-L10687C6" }, { "DocsId": "M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L9965C9-L9973C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10694C9-L10702C26" }, { "DocsId": "M:System.Windows.Forms.Control.SendToBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10046C9-L10058C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10775C9-L10787C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10065C9-L10086C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10794C9-L10815C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10093C9-L10135C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10822C9-L10864C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10153C9-L10225C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10882C9-L10954C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10233C9-L10237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10962C9-L10966C6" }, { "DocsId": "M:System.Windows.Forms.Control.SizeFromClientSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10240C67-L10240C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10969C67-L10969C105" }, { "DocsId": "M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10353C9-L10367C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11082C9-L11096C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetTopLevel(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10376C9-L10384C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11105C9-L11113C6" }, { "DocsId": "M:System.Windows.Forms.Control.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10410C9-L10535C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11139C9-L11264C6" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.HorizontalAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10621C9-L10621C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11350C9-L11350C46" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.LeftRightAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10627C9-L10627C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11356C9-L11356C45" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Drawing.ContentAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10633C9-L10633C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11362C9-L11362C43" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateHorizontal(System.Windows.Forms.HorizontalAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10639C9-L10651C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11368C9-L11380C22" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateLeftRight(System.Windows.Forms.LeftRightAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10657C9-L10669C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11386C9-L11398C22" }, { "DocsId": "M:System.Windows.Forms.Control.RtlTranslateContent(System.Drawing.ContentAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10675C9-L10711C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11404C9-L11440C22" }, { "DocsId": "M:System.Windows.Forms.Control.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10727C9-L10728C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11456C9-L11457C6" }, { "DocsId": "M:System.Windows.Forms.Control.SuspendLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10780C9-L10787C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11509C9-L11516C6" }, { "DocsId": "M:System.Windows.Forms.Control.Update", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10842C9-L10846C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11571C9-L11575C6" }, { "DocsId": "M:System.Windows.Forms.Control.UpdateBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10854C9-L10877C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11583C9-L11606C6" }, { "DocsId": "M:System.Windows.Forms.Control.UpdateBounds(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10886C9-L10893C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11615C9-L11622C6" }, { "DocsId": "M:System.Windows.Forms.Control.UpdateBounds(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L10901C9-L10925C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11630C9-L11654C6" }, { "DocsId": "M:System.Windows.Forms.Control.UpdateZOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11013C9-L11014C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11742C9-L11743C6" }, { "DocsId": "M:System.Windows.Forms.Control.UpdateStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11071C9-L11074C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L11800C9-L11803C6" }, { "DocsId": "M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12288C9-L12697C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13017C9-L13434C6" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12699C60-L12699C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13436C60-L13436C108" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#get_Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12706C13-L12706C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13443C13-L13443C35" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#get_ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12710C51-L12710C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13447C51-L13447C75" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#PerformLayout(System.Windows.Forms.Layout.IArrangedElement,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12714C9-L12715C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13451C9-L13452C6" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#get_Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12719C15-L12719C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13456C15-L13456C33" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#SetBounds(System.Drawing.Rectangle,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12725C9-L12796C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13462C9-L13533C6" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12807C61-L12807C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13544C61-L13544C82" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12809C60-L12809C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13546C60-L13546C80" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12811C50-L12811C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13548C50-L13548C64" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12813C60-L12813C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13550C60-L13550C80" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#ISupportOleDropSource#OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12818C95-L12818C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13555C95-L13555C132" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#ISupportOleDropSource#OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12820C110-L12820C157" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13557C110-L13557C157" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#CanShowToolTipsNow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12825C9-L12825C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13562C9-L13562C125" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#GetNativeScreenRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12827C62-L12827C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13564C62-L13564C92" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#GetNeighboringToolsRectangles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12829C74-L12829C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13566C74-L13566C105" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#IsHoveredWithMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12831C51-L12831C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13568C51-L13568C71" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#HasRtlModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12834C9-L12834C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13571C9-L13571C120" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#AllowsToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12837C9-L12837C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13574C9-L13574C117" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#GetOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12839C55-L12839C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13576C55-L13576C59" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#OnHooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12841C56-L12841C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13578C56-L13578C86" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#OnUnhooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12843C58-L12843C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13580C58-L13580C90" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#GetCaptionForTool(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12845C68-L12845C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13582C68-L13582C94" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#ShowsOwnToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12848C9-L12848C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13585C9-L13585C121" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#IsBeingTabbedTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12850C48-L12850C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13587C48-L13587C79" }, { "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#IKeyboardToolTip#AllowsChildrenToShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12852C61-L12852C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13589C61-L13589C91" }, { "DocsId": "M:System.Windows.Forms.Control.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12952C34-L12952C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13689C34-L13689C38" }, { "DocsId": "M:System.Windows.Forms.Control.OnContextMenuChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13006C64-L13006C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13743C64-L13743C65" }, { "DocsId": "M:System.Windows.Forms.Control.OnImeModeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L484C9-L485C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L484C9-L485C6" }, { "DocsId": "M:System.Windows.Forms.Control.ResetImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L491C35-L491C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L491C35-L491C59" + }, + { + "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#ISupportSuspendPainting#BeginSuspendPainting", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.SuspendMutation.cs#L17C60-L17C86" + }, + { + "DocsId": "M:System.Windows.Forms.Control.System#Windows#Forms#ISupportSuspendPainting#EndSuspendPainting", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.SuspendMutation.cs#L24C9-L26C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.SuspendMutation.cs#L41C9-L43C6" + }, + { + "DocsId": "M:System.Windows.Forms.Control.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.SuspendMutation.cs#L50C9-L54C6" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeAsync(System.Action,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeAsync``1(System.Func{``0},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeAsync(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.ValueTask},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" }, { "DocsId": "M:System.Windows.Forms.Control.InvokeAsync``1(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{``0}},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" }, { "DocsId": "E:System.Windows.Forms.Control.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L735C16-L735C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L745C16-L745C64" }, { "DocsId": "E:System.Windows.Forms.Control.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L922C16-L922C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1101C16-L1101C58" }, { "DocsId": "E:System.Windows.Forms.Control.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L952C16-L952C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1131C16-L1131C64" }, { "DocsId": "E:System.Windows.Forms.Control.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L996C16-L996C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1175C16-L1175C70" }, { "DocsId": "E:System.Windows.Forms.Control.BindingContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1079C16-L1079C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1258C16-L1258C63" }, { "DocsId": "E:System.Windows.Forms.Control.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1191C16-L1191C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1370C16-L1370C65" }, { "DocsId": "E:System.Windows.Forms.Control.ClientSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1281C16-L1281C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1460C16-L1460C59" }, { "DocsId": "E:System.Windows.Forms.Control.ContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1347C16-L1347C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1526C16-L1526C65" }, { "DocsId": "E:System.Windows.Forms.Control.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1600C16-L1600C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1779C16-L1779C55" }, { "DocsId": "E:System.Windows.Forms.Control.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1800C16-L1800C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1979C16-L1979C53" }, { "DocsId": "E:System.Windows.Forms.Control.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1868C16-L1868C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2047C16-L2047C56" }, { "DocsId": "E:System.Windows.Forms.Control.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1992C16-L1992C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2171C16-L2171C53" }, { "DocsId": "E:System.Windows.Forms.Control.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2131C16-L2131C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2310C16-L2310C58" }, { "DocsId": "E:System.Windows.Forms.Control.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2516C16-L2516C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2695C16-L2695C57" }, { "DocsId": "E:System.Windows.Forms.Control.MarginChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2547C16-L2547C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2726C16-L2726C62" }, { "DocsId": "E:System.Windows.Forms.Control.RegionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2851C16-L2851C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3030C16-L3030C62" }, { "DocsId": "E:System.Windows.Forms.Control.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2979C16-L2979C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3158C16-L3158C60" }, { "DocsId": "E:System.Windows.Forms.Control.SizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3108C16-L3108C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3287C16-L3287C53" }, { "DocsId": "E:System.Windows.Forms.Control.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3138C16-L3138C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3317C16-L3317C57" }, { "DocsId": "E:System.Windows.Forms.Control.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3185C16-L3185C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3364C16-L3364C56" }, { "DocsId": "E:System.Windows.Forms.Control.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3248C16-L3248C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3427C16-L3427C53" }, { "DocsId": "E:System.Windows.Forms.Control.VisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3545C16-L3545C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3724C16-L3724C56" }, { "DocsId": "E:System.Windows.Forms.Control.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3699C16-L3699C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3878C16-L3878C54" }, { "DocsId": "E:System.Windows.Forms.Control.ControlAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3712C16-L3712C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3891C16-L3891C61" }, { "DocsId": "E:System.Windows.Forms.Control.ControlRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3725C16-L3725C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3904C16-L3904C63" }, { "DocsId": "E:System.Windows.Forms.Control.DataContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3738C16-L3738C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3917C16-L3917C60" + }, + { + "DocsId": "E:System.Windows.Forms.Control.VisualStylesModeChanged", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3930C16-L3930C72" }, { "DocsId": "E:System.Windows.Forms.Control.DragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3746C16-L3746C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3938C16-L3938C57" }, { "DocsId": "E:System.Windows.Forms.Control.DragEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3754C16-L3754C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3946C16-L3946C58" }, { "DocsId": "E:System.Windows.Forms.Control.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3762C16-L3762C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3954C16-L3954C57" }, { "DocsId": "E:System.Windows.Forms.Control.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3770C16-L3770C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3962C16-L3962C58" }, { "DocsId": "E:System.Windows.Forms.Control.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3778C16-L3778C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3970C16-L3970C61" }, { "DocsId": "E:System.Windows.Forms.Control.HandleCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3791C16-L3791C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3983C16-L3983C62" }, { "DocsId": "E:System.Windows.Forms.Control.HandleDestroyed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3804C16-L3804C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3996C16-L3996C64" }, { "DocsId": "E:System.Windows.Forms.Control.HelpRequested", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3812C16-L3812C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4004C16-L4004C62" }, { "DocsId": "E:System.Windows.Forms.Control.Invalidated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3822C16-L3822C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4014C16-L4014C60" }, { "DocsId": "E:System.Windows.Forms.Control.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3866C16-L3866C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4058C16-L4058C63" }, { "DocsId": "E:System.Windows.Forms.Control.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3874C16-L3874C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4066C16-L4066C54" }, { "DocsId": "E:System.Windows.Forms.Control.QueryContinueDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3882C16-L3882C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4074C16-L4074C66" }, { "DocsId": "E:System.Windows.Forms.Control.QueryAccessibilityHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3890C16-L3890C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4082C16-L4082C71" }, { "DocsId": "E:System.Windows.Forms.Control.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3901C16-L3901C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4093C16-L4093C60" }, { "DocsId": "E:System.Windows.Forms.Control.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3912C16-L3912C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4104C16-L4104C54" }, { "DocsId": "E:System.Windows.Forms.Control.GotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3925C16-L3925C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4117C16-L4117C57" }, { "DocsId": "E:System.Windows.Forms.Control.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3936C16-L3936C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4128C16-L4128C56" }, { "DocsId": "E:System.Windows.Forms.Control.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3947C16-L3947C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4139C16-L4139C57" }, { "DocsId": "E:System.Windows.Forms.Control.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3958C16-L3958C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4150C16-L4150C54" }, { "DocsId": "E:System.Windows.Forms.Control.Layout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3966C16-L3966C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4158C16-L4158C55" }, { "DocsId": "E:System.Windows.Forms.Control.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3977C16-L3977C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4169C16-L4169C54" }, { "DocsId": "E:System.Windows.Forms.Control.LostFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3990C16-L3990C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4182C16-L4182C58" }, { "DocsId": "E:System.Windows.Forms.Control.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4001C16-L4001C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4193C16-L4193C59" }, { "DocsId": "E:System.Windows.Forms.Control.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4012C16-L4012C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4204C16-L4204C65" }, { "DocsId": "E:System.Windows.Forms.Control.MouseCaptureChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4023C16-L4023C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4215C16-L4215C68" }, { "DocsId": "E:System.Windows.Forms.Control.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4035C16-L4035C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4227C16-L4227C58" }, { "DocsId": "E:System.Windows.Forms.Control.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4046C16-L4046C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4238C16-L4238C59" }, { "DocsId": "E:System.Windows.Forms.Control.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4057C16-L4057C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4249C16-L4249C59" }, { "DocsId": "E:System.Windows.Forms.Control.DpiChangedBeforeParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4070C16-L4070C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4262C16-L4262C71" }, { "DocsId": "E:System.Windows.Forms.Control.DpiChangedAfterParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4083C16-L4083C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4275C16-L4275C70" }, { "DocsId": "E:System.Windows.Forms.Control.MouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4094C16-L4094C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4286C16-L4286C59" }, { "DocsId": "E:System.Windows.Forms.Control.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4105C16-L4105C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4297C16-L4297C58" }, { "DocsId": "E:System.Windows.Forms.Control.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4116C16-L4116C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4308C16-L4308C56" }, { "DocsId": "E:System.Windows.Forms.Control.MouseWheel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4129C16-L4129C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4321C16-L4321C59" }, { "DocsId": "E:System.Windows.Forms.Control.Move", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4140C16-L4140C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4332C16-L4332C53" }, { "DocsId": "E:System.Windows.Forms.Control.PreviewKeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4151C16-L4151C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4343C16-L4343C63" }, { "DocsId": "E:System.Windows.Forms.Control.Resize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4163C16-L4163C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4355C16-L4355C55" }, { "DocsId": "E:System.Windows.Forms.Control.ChangeUICues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4171C16-L4171C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4363C16-L4363C61" }, { "DocsId": "E:System.Windows.Forms.Control.StyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4179C16-L4179C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4371C16-L4371C61" }, { "DocsId": "E:System.Windows.Forms.Control.SystemColorsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4187C16-L4187C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4379C16-L4379C68" + }, + { + "DocsId": "E:System.Windows.Forms.Control.SystemVisualSettingsChanged", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4397C16-L4397C76" }, { "DocsId": "E:System.Windows.Forms.Control.Validating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4198C16-L4198C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4408C16-L4408C59" }, { "DocsId": "E:System.Windows.Forms.Control.Validated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4209C16-L4209C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4419C16-L4419C58" }, { "DocsId": "E:System.Windows.Forms.Control.ParentChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4327C16-L4327C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4543C16-L4543C55" }, { "DocsId": "E:System.Windows.Forms.Control.ContextMenuChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12991C15-L12991C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13728C15-L13728C16" }, { "DocsId": "E:System.Windows.Forms.Control.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L218C16-L218C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L218C16-L218C63" }, { "DocsId": "P:System.Windows.Forms.Control.AccessibilityObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L526C13-L533C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L536C13-L543C37" }, { "DocsId": "P:System.Windows.Forms.Control.AccessibleDefaultActionDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L572C16-L572C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L582C16-L582C87" }, { "DocsId": "P:System.Windows.Forms.Control.AccessibleDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L585C16-L585C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L595C16-L595C85" }, { "DocsId": "P:System.Windows.Forms.Control.AccessibleName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L598C16-L598C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L608C16-L608C78" }, { "DocsId": "P:System.Windows.Forms.Control.AccessibleRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L610C16-L610C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L620C16-L620C94" }, { "DocsId": "P:System.Windows.Forms.Control.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L627C16-L627C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L637C16-L637C42" }, { "DocsId": "P:System.Windows.Forms.Control.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L689C16-L689C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L699C16-L699C45" }, { "DocsId": "P:System.Windows.Forms.Control.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L703C16-L703C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L713C16-L713C50" }, { "DocsId": "P:System.Windows.Forms.Control.AutoScrollOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L748C16-L748C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L758C16-L758C85" }, { "DocsId": "P:System.Windows.Forms.Control.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L759C49-L759C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L769C49-L769C71" }, { "DocsId": "P:System.Windows.Forms.Control.DataContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L829C16-L831C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L851C16-L853C42" + }, + { + "DocsId": "P:System.Windows.Forms.Control.EffectiveVisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L967C12-L967C56" + }, + { + "DocsId": "P:System.Windows.Forms.Control.DefaultVisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1036C67-L1036C102" }, { "DocsId": "P:System.Windows.Forms.Control.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L870C13-L900C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1049C13-L1079C77" }, { "DocsId": "P:System.Windows.Forms.Control.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L935C16-L935C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1114C16-L1114C78" }, { "DocsId": "P:System.Windows.Forms.Control.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L965C16-L965C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1144C16-L1144C95" }, { "DocsId": "P:System.Windows.Forms.Control.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1071C16-L1071C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1250C16-L1250C38" }, { "DocsId": "P:System.Windows.Forms.Control.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1091C26-L1091C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1270C26-L1270C38" }, { "DocsId": "P:System.Windows.Forms.Control.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1104C16-L1104C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1283C16-L1283C44" }, { "DocsId": "P:System.Windows.Forms.Control.CanFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1119C29-L1119C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1298C29-L1298C110" }, { "DocsId": "P:System.Windows.Forms.Control.CanRaiseEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1126C47-L1126C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1305C47-L1305C81" }, { "DocsId": "P:System.Windows.Forms.Control.CanSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1137C30-L1137C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1316C30-L1316C45" }, { "DocsId": "P:System.Windows.Forms.Control.Capture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1149C16-L1149C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1328C16-L1328C63" }, { "DocsId": "P:System.Windows.Forms.Control.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1176C16-L1176C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1355C16-L1355C49" }, { "DocsId": "P:System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1248C58-L1248C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1427C58-L1427C62" }, { "DocsId": "P:System.Windows.Forms.Control.ClientRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1258C41-L1258C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1437C41-L1437C89" }, { "DocsId": "P:System.Windows.Forms.Control.ClientSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1270C16-L1270C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1449C16-L1449C48" }, { "DocsId": "P:System.Windows.Forms.Control.CompanyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1292C34-L1292C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1471C34-L1471C57" }, { "DocsId": "P:System.Windows.Forms.Control.ContainsFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1306C13-L1312C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1485C13-L1491C99" }, { "DocsId": "P:System.Windows.Forms.Control.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1326C16-L1326C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1505C16-L1505C90" }, { "DocsId": "P:System.Windows.Forms.Control.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1357C42-L1357C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1536C42-L1536C84" }, { "DocsId": "P:System.Windows.Forms.Control.Created", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1366C28-L1366C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1545C28-L1545C52" }, { "DocsId": "P:System.Windows.Forms.Control.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1378C13-L1459C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1557C13-L1638C23" }, { "DocsId": "P:System.Windows.Forms.Control.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1551C13-L1565C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1730C13-L1744C115" }, { "DocsId": "P:System.Windows.Forms.Control.DataBindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1616C13-L1626C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1795C13-L1805C29" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1634C45-L1634C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1813C45-L1813C65" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1641C47-L1641C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1820C47-L1820C62" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1651C13-L1657C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1830C13-L1836C34" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1665C45-L1665C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1844C45-L1844C69" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1667C48-L1667C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1846C48-L1846C78" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultMaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1669C50-L1669C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1848C50-L1848C85" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultMinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1671C50-L1671C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1850C50-L1850C85" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1673C49-L1673C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1852C49-L1852C62" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1681C43-L1681C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1860C43-L1860C53" }, { "DocsId": "P:System.Windows.Forms.Control.DeviceDpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1694C12-L1694C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1873C12-L1873C100" }, { "DocsId": "P:System.Windows.Forms.Control.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1737C12-L1737C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1916C12-L1916C50" }, { "DocsId": "P:System.Windows.Forms.Control.IsDisposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1747C31-L1747C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1926C31-L1926C56" }, { "DocsId": "P:System.Windows.Forms.Control.Disposing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1769C30-L1769C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1948C30-L1948C56" }, { "DocsId": "P:System.Windows.Forms.Control.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1784C16-L1784C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1963C16-L1963C43" }, { "DocsId": "P:System.Windows.Forms.Control.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1811C16-L1811C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1990C16-L1990C61" }, { "DocsId": "P:System.Windows.Forms.Control.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1842C13-L1842C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2021C13-L2021C99" }, { "DocsId": "P:System.Windows.Forms.Control.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1880C12-L1880C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2059C12-L2059C67" }, { "DocsId": "P:System.Windows.Forms.Control.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L1895C16-L1895C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2074C16-L2074C43" }, { "DocsId": "P:System.Windows.Forms.Control.FontHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2049C13-L2074C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2228C13-L2253C36" }, { "DocsId": "P:System.Windows.Forms.Control.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2089C13-L2114C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2268C13-L2293C62" }, { "DocsId": "P:System.Windows.Forms.Control.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2205C13-L2215C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2384C13-L2394C35" }, { "DocsId": "P:System.Windows.Forms.Control.HasChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2232C32-L2232C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2411C32-L2411C84" }, { "DocsId": "P:System.Windows.Forms.Control.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2244C16-L2244C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2423C16-L2423C23" }, { "DocsId": "P:System.Windows.Forms.Control.IsHandleCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2302C36-L2302C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2481C36-L2481C55" }, { "DocsId": "P:System.Windows.Forms.Control.InvokeRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2380C13-L2400C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2559C13-L2579C10" }, { "DocsId": "P:System.Windows.Forms.Control.IsAccessible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2414C16-L2414C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2593C16-L2593C45" }, { "DocsId": "P:System.Windows.Forms.Control.IsAncestorSiteInDesignMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2431C9-L2431C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2610C9-L2610C78" }, { "DocsId": "P:System.Windows.Forms.Control.IsMirrored", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2461C13-L2467C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2640C13-L2646C46" }, { "DocsId": "P:System.Windows.Forms.Control.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2496C16-L2496C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2675C16-L2675C18" }, { "DocsId": "P:System.Windows.Forms.Control.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2508C16-L2508C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2687C16-L2687C27" }, { "DocsId": "P:System.Windows.Forms.Control.Margin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2525C16-L2525C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2704C16-L2704C48" }, { "DocsId": "P:System.Windows.Forms.Control.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2557C15-L2557C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2736C15-L2736C80" }, { "DocsId": "P:System.Windows.Forms.Control.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2579C15-L2579C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2758C15-L2758C80" }, { "DocsId": "P:System.Windows.Forms.Control.ModifierKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2600C13-L2617C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2779C13-L2796C30" }, { "DocsId": "P:System.Windows.Forms.Control.MouseButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2629C13-L2656C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2808C13-L2835C28" }, { "DocsId": "P:System.Windows.Forms.Control.MousePosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2667C13-L2668C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2846C13-L2847C23" }, { "DocsId": "P:System.Windows.Forms.Control.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2683C13-L2689C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2862C13-L2868C41" }, { "DocsId": "P:System.Windows.Forms.Control.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2703C16-L2703C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2882C16-L2882C30" }, { "DocsId": "P:System.Windows.Forms.Control.ProductName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2735C34-L2735C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2914C34-L2914C57" }, { "DocsId": "P:System.Windows.Forms.Control.ProductVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2744C37-L2744C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2923C37-L2923C63" }, { "DocsId": "P:System.Windows.Forms.Control.RecreatingHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2764C37-L2764C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2943C37-L2943C62" }, { "DocsId": "P:System.Windows.Forms.Control.Region", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2803C16-L2803C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2982C16-L2982C70" }, { "DocsId": "P:System.Windows.Forms.Control.RenderRightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2857C50-L2857C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3036C50-L3036C54" }, { "DocsId": "P:System.Windows.Forms.Control.ResizeRedraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2916C16-L2916C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3095C16-L3095C52" }, { "DocsId": "P:System.Windows.Forms.Control.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2928C25-L2928C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3107C25-L3107C36" }, { "DocsId": "P:System.Windows.Forms.Control.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2943C13-L2949C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3122C13-L3128C32" }, { "DocsId": "P:System.Windows.Forms.Control.ScaleChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L2990C45-L2990C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3169C45-L3169C49" }, { "DocsId": "P:System.Windows.Forms.Control.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3017C16-L3017C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3196C16-L3196C25" }, { "DocsId": "P:System.Windows.Forms.Control.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3100C16-L3100C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3279C16-L3279C36" }, { "DocsId": "P:System.Windows.Forms.Control.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3121C16-L3121C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3300C16-L3300C47" }, { "DocsId": "P:System.Windows.Forms.Control.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3152C16-L3152C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3331C16-L3331C31" }, { "DocsId": "P:System.Windows.Forms.Control.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3197C16-L3197C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3376C16-L3376C72" }, { "DocsId": "P:System.Windows.Forms.Control.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3212C16-L3212C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3391C16-L3391C70" }, { "DocsId": "P:System.Windows.Forms.Control.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3262C16-L3262C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3441C16-L3441C18" }, { "DocsId": "P:System.Windows.Forms.Control.TopLevelControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3276C40-L3276C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3455C40-L3455C63" }, { "DocsId": "P:System.Windows.Forms.Control.ShowKeyboardCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3321C13-L3376C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3500C13-L3555C92" }, { "DocsId": "P:System.Windows.Forms.Control.ShowFocusCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3391C13-L3422C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3570C13-L3601C86" }, { "DocsId": "P:System.Windows.Forms.Control.UseWaitCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3440C16-L3440C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3619C16-L3619C46" }, { "DocsId": "P:System.Windows.Forms.Control.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3527C13-L3533C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3706C13-L3712C69" }, { "DocsId": "P:System.Windows.Forms.Control.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3619C16-L3619C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3798C16-L3798C22" }, { "DocsId": "P:System.Windows.Forms.Control.WindowTarget", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3651C16-L3651C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3830C16-L3830C36" }, { "DocsId": "P:System.Windows.Forms.Control.PreferredSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3829C15-L3829C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4021C15-L4021C51" }, { "DocsId": "P:System.Windows.Forms.Control.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L3837C15-L3837C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L4029C15-L4029C72" }, { "DocsId": "P:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12699C60-L12699C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13436C60-L13436C108" }, { "DocsId": "P:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12706C13-L12706C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13443C13-L13443C35" }, { "DocsId": "P:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12710C51-L12710C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13447C51-L13447C75" }, { "DocsId": "P:System.Windows.Forms.Control.System#Windows#Forms#Layout#IArrangedElement#Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12719C15-L12719C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13456C15-L13456C33" }, { "DocsId": "P:System.Windows.Forms.Control.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12952C34-L12952C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13689C34-L13689C38" }, { "DocsId": "P:System.Windows.Forms.Control.ContextMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L12973C9-L12973C13" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L13710C9-L13710C13" }, { "DocsId": "P:System.Windows.Forms.Control.CanEnableIme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L77C13-L77C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L77C13-L77C33" }, { "DocsId": "P:System.Windows.Forms.Control.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L100C49-L100C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L100C49-L100C64" }, { "DocsId": "P:System.Windows.Forms.Control.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L139C13-L146C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L139C13-L146C28" }, { "DocsId": "P:System.Windows.Forms.Control.ImeModeBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L160C16-L160C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L160C16-L160C29" }, { "DocsId": "P:System.Windows.Forms.Control.PropagatingImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L263C13-L291C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L263C13-L291C41" + }, + { + "DocsId": "P:System.Windows.Forms.Control.VisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs#L883C16-L885C38" }, { "DocsId": "T:System.Windows.Forms.Control.ControlAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.Control.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs" + }, + { + "DocsId": "T:System.Windows.Forms.Control.VisualStylesModeChangeImpact", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" } ], "DocsId": "T:System.Windows.Forms.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L12C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L12C5-L14C6" }, { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventArgs.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L16C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L16C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L23C36-L23C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L23C36-L23C40" }, { "DocsId": "P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L25C33-L25C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L25C33-L25C37" }, { "DocsId": "P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs#L27C34-L27C38" } ], "DocsId": "T:System.Windows.Forms.QueryAccessibilityHelpEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventHandler.Invoke(System.Object,System.Windows.Forms.QueryAccessibilityHelpEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventHandler.BeginInvoke(System.Object,System.Windows.Forms.QueryAccessibilityHelpEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryAccessibilityHelpEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.QueryAccessibilityHelpEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/QueryAccessibilityHelpEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L171C11-L173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L171C11-L173C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L49C5-L198C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L49C5-L198C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.AttachInterfaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L237C5-L237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L237C5-L237C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.PropsValid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L386C36-L386C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L386C36-L386C55" }, { "DocsId": "M:System.Windows.Forms.AxHost.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L391C5-L391C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L391C5-L391C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L406C9-L413C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L406C9-L413C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.ShowAboutBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L462C9-L463C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L462C9-L463C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L786C9-L788C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L786C9-L788C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L792C9-L794C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L792C9-L794C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L798C9-L800C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L798C9-L800C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L951C9-L962C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L951C9-L962C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1009C9-L1010C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1009C9-L1010C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1014C9-L1052C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1014C9-L1052C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1152C112-L1152C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1152C112-L1152C118" }, { "DocsId": "M:System.Windows.Forms.AxHost.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1176C9-L1237C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1176C9-L1237C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.DestroyHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1275C9-L1283C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1275C9-L1283C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnInPlaceActive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1447C5-L1447C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1447C5-L1447C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1532C9-L1592C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1532C9-L1592C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1635C59-L1635C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1635C59-L1635C63" }, { "DocsId": "M:System.Windows.Forms.AxHost.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1637C63-L1637C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1637C63-L1637C115" }, { "DocsId": "M:System.Windows.Forms.AxHost.PreProcessMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1666C9-L1727C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1666C9-L1727C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1735C9-L1785C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1735C9-L1785C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.SetAboutBoxDelegate(System.Windows.Forms.AxHost.AboutBoxDelegate)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1795C9-L1796C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1795C9-L1796C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.DoVerb(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2146C9-L2158C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2146C9-L2158C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.CreateInstanceCore(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2326C9-L2335C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2326C9-L2335C26" }, { "DocsId": "M:System.Windows.Forms.AxHost.InvokeEditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2403C9-L2419C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2403C9-L2419C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2428C9-L2434C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2428C9-L2434C57" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetClassName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2444C9-L2444C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2444C9-L2444C21" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetComponentName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2454C9-L2454C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2454C9-L2454C21" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2464C9-L2464C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2464C9-L2464C21" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2471C9-L2471C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2471C9-L2471C59" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2478C9-L2478C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2478C9-L2478C62" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2488C9-L2493C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2488C9-L2493C80" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2498C12-L2498C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2498C12-L2498C66" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2503C12-L2503C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2503C12-L2503C78" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2689C9-L2689C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2689C9-L2689C37" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2696C9-L2696C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2696C9-L2696C43" }, { "DocsId": "M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2702C9-L2702C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2702C9-L2702C21" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetOcx", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2852C9-L2852C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2852C9-L2852C26" }, { "DocsId": "M:System.Windows.Forms.AxHost.CreateSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2908C5-L2908C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2908C5-L2908C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.DetachSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2913C5-L2913C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2913C5-L2913C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.HasPropertyPages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2928C9-L2952C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2928C9-L2952C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.MakeDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2985C9-L2990C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2985C9-L2990C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.ShowPropertyPages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2994C9-L3000C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L2994C9-L3000C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.ShowPropertyPages(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3004C9-L3052C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3004C9-L3052C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3070C9-L3200C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3070C9-L3200C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3283C9-L3290C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3283C9-L3290C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3385C9-L3405C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3385C9-L3405C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetIPictureFromPicture(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3528C70-L3528C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3528C70-L3528C96" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetIPictureFromCursor(System.Windows.Forms.Cursor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3535C12-L3535C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3535C12-L3535C96" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetIPictureDispFromPicture(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3541C74-L3541C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3541C74-L3541C104" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetPictureFromIPicture(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3549C9-L3565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3549C9-L3565C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetPictureFromIPictureDisp(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3573C9-L3589C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3573C9-L3589C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetColorFromOleColor(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3630C9-L3630C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3630C9-L3630C52" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetOleColorFromColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3640C9-L3640C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3640C9-L3640C51" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetIFontFromFont(System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3649C9-L3664C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3649C9-L3664C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetFontFromIFont(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3698C9-L3715C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3698C9-L3715C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetIFontDispFromFont(System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3723C9-L3738C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3723C9-L3738C74" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetFontFromIFontDisp(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3748C9-L3803C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3748C9-L3803C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetOADateFromTime(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3811C9-L3811C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3811C9-L3811C32" }, { "DocsId": "M:System.Windows.Forms.AxHost.GetTimeFromOADate(System.Double)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3820C9-L3820C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3820C9-L3820C42" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Object,System.Object,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3843C9-L3844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3843C9-L3844C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Int16,System.Int16,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3849C9-L3850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3849C9-L3850C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Int16,System.Int16,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3855C9-L3856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3855C9-L3856C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Object,System.Object,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3861C9-L3862C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3861C9-L3862C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Int16,System.Int16,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3867C9-L3868C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3867C9-L3868C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Int16,System.Int16,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3873C9-L3874C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3873C9-L3874C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Object,System.Object,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3879C9-L3880C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3879C9-L3880C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Int16,System.Int16,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3885C9-L3886C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3885C9-L3886C6" }, { "DocsId": "M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Int16,System.Int16,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3891C9-L3892C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L3891C9-L3892C6" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L295C16-L295C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L295C16-L295C98" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L303C16-L303C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L303C16-L303C104" }, { "DocsId": "E:System.Windows.Forms.AxHost.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L469C16-L469C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L469C16-L469C104" }, { "DocsId": "E:System.Windows.Forms.AxHost.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L477C16-L477C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L477C16-L477C110" }, { "DocsId": "E:System.Windows.Forms.AxHost.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L485C16-L485C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L485C16-L485C116" }, { "DocsId": "E:System.Windows.Forms.AxHost.BindingContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L493C16-L493C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L493C16-L493C109" }, { "DocsId": "E:System.Windows.Forms.AxHost.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L501C16-L501C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L501C16-L501C101" }, { "DocsId": "E:System.Windows.Forms.AxHost.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L512C16-L512C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L512C16-L512C102" }, { "DocsId": "E:System.Windows.Forms.AxHost.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L520C16-L520C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L520C16-L520C99" }, { "DocsId": "E:System.Windows.Forms.AxHost.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L528C16-L528C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L528C16-L528C104" }, { "DocsId": "E:System.Windows.Forms.AxHost.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L536C16-L536C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L536C16-L536C106" }, { "DocsId": "E:System.Windows.Forms.AxHost.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L544C16-L544C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L544C16-L544C99" }, { "DocsId": "E:System.Windows.Forms.AxHost.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L555C16-L555C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L555C16-L555C93" }, { "DocsId": "E:System.Windows.Forms.AxHost.DragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L563C16-L563C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L563C16-L563C96" }, { "DocsId": "E:System.Windows.Forms.AxHost.DragEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L571C16-L571C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L571C16-L571C97" }, { "DocsId": "E:System.Windows.Forms.AxHost.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L579C16-L579C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L579C16-L579C96" }, { "DocsId": "E:System.Windows.Forms.AxHost.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L587C16-L587C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L587C16-L587C97" }, { "DocsId": "E:System.Windows.Forms.AxHost.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L595C16-L595C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L595C16-L595C100" }, { "DocsId": "E:System.Windows.Forms.AxHost.HelpRequested", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L603C16-L603C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L603C16-L603C101" }, { "DocsId": "E:System.Windows.Forms.AxHost.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L611C16-L611C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L611C16-L611C93" }, { "DocsId": "E:System.Windows.Forms.AxHost.QueryContinueDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L619C16-L619C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L619C16-L619C105" }, { "DocsId": "E:System.Windows.Forms.AxHost.QueryAccessibilityHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L627C16-L627C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L627C16-L627C110" }, { "DocsId": "E:System.Windows.Forms.AxHost.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L638C16-L638C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L638C16-L638C99" }, { "DocsId": "E:System.Windows.Forms.AxHost.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L646C16-L646C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L646C16-L646C102" }, { "DocsId": "E:System.Windows.Forms.AxHost.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L657C16-L657C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L657C16-L657C95" }, { "DocsId": "E:System.Windows.Forms.AxHost.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L668C16-L668C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L668C16-L668C96" }, { "DocsId": "E:System.Windows.Forms.AxHost.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L679C16-L679C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L679C16-L679C93" }, { "DocsId": "E:System.Windows.Forms.AxHost.Layout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L687C16-L687C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L687C16-L687C94" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L698C16-L698C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L698C16-L698C97" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L709C16-L709C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L709C16-L709C98" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L720C16-L720C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L720C16-L720C98" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L731C16-L731C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L731C16-L731C98" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L742C16-L742C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L742C16-L742C97" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L753C16-L753C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L753C16-L753C95" }, { "DocsId": "E:System.Windows.Forms.AxHost.MouseWheel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L764C16-L764C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L764C16-L764C98" }, { "DocsId": "E:System.Windows.Forms.AxHost.ChangeUICues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L772C16-L772C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L772C16-L772C100" }, { "DocsId": "E:System.Windows.Forms.AxHost.StyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L780C16-L780C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L780C16-L780C100" }, { "DocsId": "P:System.Windows.Forms.AxHost.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L209C13-L215C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L209C13-L215C23" }, { "DocsId": "P:System.Windows.Forms.AxHost.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L257C16-L257C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L257C16-L257C30" }, { "DocsId": "P:System.Windows.Forms.AxHost.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L266C16-L266C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L266C16-L266C36" }, { "DocsId": "P:System.Windows.Forms.AxHost.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L275C16-L275C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L275C16-L275C42" }, { "DocsId": "P:System.Windows.Forms.AxHost.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L287C16-L287C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L287C16-L287C28" }, { "DocsId": "P:System.Windows.Forms.AxHost.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L312C16-L312C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L312C16-L312C27" }, { "DocsId": "P:System.Windows.Forms.AxHost.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L324C13-L324C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L324C13-L324C37" }, { "DocsId": "P:System.Windows.Forms.AxHost.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L332C16-L332C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L332C16-L332C28" }, { "DocsId": "P:System.Windows.Forms.AxHost.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L341C16-L341C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L341C16-L341C25" }, { "DocsId": "P:System.Windows.Forms.AxHost.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L349C16-L349C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L349C16-L349C30" }, { "DocsId": "P:System.Windows.Forms.AxHost.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L360C13-L361C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L360C13-L361C50" }, { "DocsId": "P:System.Windows.Forms.AxHost.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L371C16-L371C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L371C16-L371C21" }, { "DocsId": "P:System.Windows.Forms.AxHost.EditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L441C29-L441C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L441C29-L441C52" }, { "DocsId": "P:System.Windows.Forms.AxHost.HasAboutBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L449C32-L449C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L449C32-L449C61" }, { "DocsId": "P:System.Windows.Forms.AxHost.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L888C13-L940C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L888C13-L940C10" }, { "DocsId": "P:System.Windows.Forms.AxHost.OcxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1820C13-L1826C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1820C13-L1826C30" }, { "DocsId": "P:System.Windows.Forms.AxHost.ContainingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1958C16-L1958C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs#L1958C16-L1958C69" }, { "DocsId": "T:System.Windows.Forms.AxHost.ActiveXInvokeKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.AxComponentEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.ClsidAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.ConnectionPointCookie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.AboutBoxDelegate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.InvalidActiveXStateException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.StateConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" }, { "DocsId": "T:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs" } ], "DocsId": "T:System.Windows.Forms.AxHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AmbientProperties.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs" }, { "DocsId": "P:System.Windows.Forms.AmbientProperties.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L18C30-L18C34" }, { "DocsId": "P:System.Windows.Forms.AmbientProperties.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L23C29-L23C33" }, { "DocsId": "P:System.Windows.Forms.AmbientProperties.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L28C25-L28C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L28C25-L28C29" }, { "DocsId": "P:System.Windows.Forms.AmbientProperties.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L33C30-L33C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs#L33C30-L33C34" } ], "DocsId": "T:System.Windows.Forms.AmbientProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AmbientProperties.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Application.SetColorMode(System.Windows.Forms.SystemColorMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L325C13-L382C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L369C13-L426C6" + }, + { + "DocsId": "M:System.Windows.Forms.Application.SetDefaultFormRevealMode(System.Windows.Forms.FormRevealMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L452C9-L454C6" }, { "DocsId": "M:System.Windows.Forms.Application.RegisterMessageLoop(System.Windows.Forms.Application.MessageLoopCallback)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L585C12-L585C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L659C12-L659C69" + }, + { + "DocsId": "M:System.Windows.Forms.Application.SetDefaultVisualStylesMode(System.Windows.Forms.VisualStylesMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L729C9-L747C6" }, { "DocsId": "M:System.Windows.Forms.Application.UnregisterMessageLoop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L633C12-L633C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L787C12-L787C65" }, { "DocsId": "M:System.Windows.Forms.Application.AddMessageFilter(System.Windows.Forms.IMessageFilter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L806C12-L806C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L960C12-L960C63" }, { "DocsId": "M:System.Windows.Forms.Application.FilterMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L815C9-L825C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L969C9-L979C26" }, { "DocsId": "M:System.Windows.Forms.Application.DoEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L946C12-L946C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1100C12-L1100C78" }, { "DocsId": "M:System.Windows.Forms.Application.EnableVisualStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L959C9-L983C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1113C9-L1137C6" }, { "DocsId": "M:System.Windows.Forms.Application.Exit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L995C34-L995C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1149C34-L1149C44" }, { "DocsId": "M:System.Windows.Forms.Application.Exit(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1004C5-L1080C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1158C5-L1234C6" }, { "DocsId": "M:System.Windows.Forms.Application.ExitThread", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1087C9-L1096C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1241C9-L1250C6" }, { "DocsId": "M:System.Windows.Forms.Application.OleRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1260C12-L1260C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1414C12-L1414C53" }, { "DocsId": "M:System.Windows.Forms.Application.OnThreadException(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1266C12-L1266C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1420C12-L1420C60" }, { "DocsId": "M:System.Windows.Forms.Application.RaiseIdle(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1283C12-L1283C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1437C12-L1437C85" }, { "DocsId": "M:System.Windows.Forms.Application.RemoveMessageFilter(System.Windows.Forms.IMessageFilter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1289C12-L1289C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1443C12-L1443C66" }, { "DocsId": "M:System.Windows.Forms.Application.Restart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1296C9-L1331C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1450C9-L1485C6" }, { "DocsId": "M:System.Windows.Forms.Application.Run", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1338C12-L1338C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1492C12-L1492C94" }, { "DocsId": "M:System.Windows.Forms.Application.Run(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1345C12-L1345C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1499C12-L1499C102" }, { "DocsId": "M:System.Windows.Forms.Application.Run(System.Windows.Forms.ApplicationContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1352C12-L1352C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1506C12-L1506C77" }, { "DocsId": "M:System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1373C9-L1379C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1527C9-L1533C6" }, { "DocsId": "M:System.Windows.Forms.Application.SetDefaultFont(System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1401C9-L1408C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1555C9-L1562C6" }, { "DocsId": "M:System.Windows.Forms.Application.SetHighDpiMode(System.Windows.Forms.HighDpiMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1461C9-L1462C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1615C9-L1616C90" }, { "DocsId": "M:System.Windows.Forms.Application.SetSuspendState(System.Windows.Forms.PowerState,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1470C12-L1470C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1624C12-L1624C93" }, { "DocsId": "M:System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1477C12-L1477C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1631C12-L1631C65" }, { "DocsId": "M:System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1499C12-L1499C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1653C12-L1653C77" }, { "DocsId": "E:System.Windows.Forms.Application.ApplicationExit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L774C16-L774C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L928C16-L928C62" }, { "DocsId": "E:System.Windows.Forms.Application.Idle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L836C13-L842C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L990C13-L996C10" }, { "DocsId": "E:System.Windows.Forms.Application.EnterThreadModal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L861C13-L866C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1015C13-L1020C10" }, { "DocsId": "E:System.Windows.Forms.Application.LeaveThreadModal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L885C13-L890C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1039C13-L1044C10" }, { "DocsId": "E:System.Windows.Forms.Application.ThreadException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L908C13-L913C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1062C13-L1067C10" }, { "DocsId": "E:System.Windows.Forms.Application.ThreadExit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L931C16-L931C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L1085C16-L1085C57" + }, + { + "DocsId": "E:System.Windows.Forms.Application.SystemVisualSettingsChanged", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.SystemVisualSettings.cs#L37C16-L37C74" }, { "DocsId": "P:System.Windows.Forms.Application.AllowQuit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L79C37-L79C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L84C37-L84C65" }, { "DocsId": "P:System.Windows.Forms.Application.CommonAppDataRegistry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L140C12-L140C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L145C12-L145C76" }, { "DocsId": "P:System.Windows.Forms.Application.CommonAppDataPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L155C12-L155C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L160C12-L160C99" }, { "DocsId": "P:System.Windows.Forms.Application.CompanyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L163C9-L214C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L168C9-L219C34" }, { "DocsId": "P:System.Windows.Forms.Application.CurrentCulture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L223C16-L223C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L228C16-L228C51" }, { "DocsId": "P:System.Windows.Forms.Application.CurrentInputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L232C16-L232C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L237C16-L237C50" }, { "DocsId": "P:System.Windows.Forms.Application.ColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L250C48-L250C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L255C48-L255C86" + }, + { + "DocsId": "P:System.Windows.Forms.Application.DefaultFormRevealMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L271C12-L271C61" + }, + { + "DocsId": "P:System.Windows.Forms.Application.IsFormRevealDeferred", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L287C48-L291C31" }, { "DocsId": "P:System.Windows.Forms.Application.SystemColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L404C9-L406C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L478C9-L480C38" }, { "DocsId": "P:System.Windows.Forms.Application.IsDarkModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L441C9-L443C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L515C9-L517C97" }, { "DocsId": "P:System.Windows.Forms.Application.ExecutablePath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L449C9-L449C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L523C9-L523C79" }, { "DocsId": "P:System.Windows.Forms.Application.HighDpiMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L455C46-L455C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L529C46-L529C80" }, { "DocsId": "P:System.Windows.Forms.Application.LocalUserAppDataPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L467C12-L467C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L541C12-L541C98" }, { "DocsId": "P:System.Windows.Forms.Application.MessageLoop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L473C12-L473C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L547C12-L547C56" }, { "DocsId": "P:System.Windows.Forms.Application.OpenForms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L478C47-L478C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L552C47-L552C61" }, { "DocsId": "P:System.Windows.Forms.Application.ProductName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L488C13-L535C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L562C13-L609C10" }, { "DocsId": "P:System.Windows.Forms.Application.ProductVersion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L544C9-L578C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L618C9-L652C37" }, { "DocsId": "P:System.Windows.Forms.Application.RenderWithVisualStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L593C12-L593C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L667C12-L667C73" + }, + { + "DocsId": "P:System.Windows.Forms.Application.DefaultVisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L692C12-L698C44" }, { "DocsId": "P:System.Windows.Forms.Application.SafeTopLevelCaptionFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L603C13-L605C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L757C13-L759C48" }, { "DocsId": "P:System.Windows.Forms.Application.StartupPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L624C13-L626C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L778C13-L780C34" }, { "DocsId": "P:System.Windows.Forms.Application.UseWaitCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L640C16-L640C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L794C16-L794C31" }, { "DocsId": "P:System.Windows.Forms.Application.UserAppDataPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L666C12-L666C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L820C12-L820C93" }, { "DocsId": "P:System.Windows.Forms.Application.UserAppDataRegistry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L673C12-L673C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L827C12-L827C106" }, { "DocsId": "P:System.Windows.Forms.Application.UseVisualStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L685C42-L685C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L839C42-L839C46" }, { "DocsId": "P:System.Windows.Forms.Application.VisualStyleState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L709C13-L715C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs#L863C13-L869C27" + }, + { + "DocsId": "P:System.Windows.Forms.Application.SystemVisualSettings", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.SystemVisualSettings.cs#L14C12-L14C55" }, { "DocsId": "T:System.Windows.Forms.Application.MessageLoopCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" } ], "DocsId": "T:System.Windows.Forms.Application", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ApplicationContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L22C35-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L22C35-L24C6" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.#ctor(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L31C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L31C5-L39C6" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L44C30-L44C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L44C30-L44C44" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L85C9-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L85C9-L87C6" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L91C9-L108C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L91C9-L108C6" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.ExitThread", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L113C33-L113C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L113C33-L113C49" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.ExitThreadCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L118C48-L118C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L118C48-L118C89" }, { "DocsId": "M:System.Windows.Forms.ApplicationContext.OnMainFormClosed(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L124C77-L124C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L124C77-L124C93" }, { "DocsId": "E:System.Windows.Forms.ApplicationContext.ThreadExit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs" }, { "DocsId": "P:System.Windows.Forms.ApplicationContext.MainForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L54C16-L54C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L54C16-L54C25" }, { "DocsId": "P:System.Windows.Forms.ApplicationContext.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L70C26-L70C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs#L70C26-L70C30" } ], "DocsId": "T:System.Windows.Forms.ApplicationContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ApplicationContext.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AutoCompleteMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteMode.Suggest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteMode.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteMode.SuggestAppend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" } ], "DocsId": "T:System.Windows.Forms.AutoCompleteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.FileSystem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.HistoryList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.RecentlyUsedList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.AllUrl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.AllSystemSources", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.FileSystemDirectories", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.CustomSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "DocsId": "F:System.Windows.Forms.AutoCompleteSource.ListItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" } ], "DocsId": "T:System.Windows.Forms.AutoCompleteSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteSource.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L15C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L15C5-L19C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L44C30-L44C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L44C30-L44C55" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L46C31-L46C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L46C31-L46C57" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L54C72-L54C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L54C72-L54C109" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L66C9-L73C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L66C9-L73C22" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L81C9-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L81C9-L99C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L107C9-L109C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L107C9-L109C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L116C43-L116C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L116C43-L116C64" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L122C54-L122C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L122C54-L122C80" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L128C41-L128C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L128C41-L128C61" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L136C9-L144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L136C9-L144C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L162C9-L164C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L162C9-L164C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L171C9-L174C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L171C9-L174C6" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L183C16-L183C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L183C16-L183C27" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L184C16-L184C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L184C16-L184C44" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L187C37-L187C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L187C37-L187C56" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L189C43-L189C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L189C43-L189C67" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L191C41-L191C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L191C41-L191C64" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L193C52-L193C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L193C52-L193C81" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L195C41-L195C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L195C41-L195C63" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L197C56-L197C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L197C56-L197C97" }, { "DocsId": "M:System.Windows.Forms.AutoCompleteStringCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L199C43-L199C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L199C43-L199C64" }, { "DocsId": "E:System.Windows.Forms.AutoCompleteStringCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L50C16-L50C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L50C16-L50C45" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L28C13-L28C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L28C13-L28C33" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L42C25-L42C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L42C25-L42C36" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L44C30-L44C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L44C30-L44C55" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L46C31-L46C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L46C31-L46C57" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L149C31-L149C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L149C31-L149C56" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L155C35-L155C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L155C35-L155C64" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L179C31-L179C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L179C31-L179C54" }, { "DocsId": "P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L183C16-L183C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs#L183C16-L183C27" } ], "DocsId": "T:System.Windows.Forms.AutoCompleteStringCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoCompleteStringCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AutoValidate.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" }, { "DocsId": "F:System.Windows.Forms.AutoValidate.Disable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" }, { "DocsId": "F:System.Windows.Forms.AutoValidate.EnablePreventFocusChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" }, { "DocsId": "F:System.Windows.Forms.AutoValidate.EnableAllowFocusChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" }, { "DocsId": "F:System.Windows.Forms.AutoValidate.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" } ], "DocsId": "T:System.Windows.Forms.AutoValidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/AutoValidate.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BaseCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L21C48-L21C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L21C48-L21C71" }, { "DocsId": "M:System.Windows.Forms.BaseCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L26C43-L26C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L26C43-L26C64" }, { "DocsId": "M:System.Windows.Forms.BaseCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs" }, { "DocsId": "P:System.Windows.Forms.BaseCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L19C33-L19C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L19C33-L19C44" }, { "DocsId": "P:System.Windows.Forms.BaseCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L30C31-L30C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L30C31-L30C36" }, { "DocsId": "P:System.Windows.Forms.BaseCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L34C35-L34C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L34C35-L34C40" }, { "DocsId": "P:System.Windows.Forms.BaseCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L38C31-L38C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L38C31-L38C35" }, { "DocsId": "P:System.Windows.Forms.BaseCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L40C42-L40C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs#L40C42-L40C46" } ], "DocsId": "T:System.Windows.Forms.BaseCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BaseCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.High", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.Low", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.Critical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.Charging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.NoSystemBattery", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "DocsId": "F:System.Windows.Forms.BatteryChargeStatus.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" } ], "DocsId": "T:System.Windows.Forms.BatteryChargeStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BatteryChargeStatus.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BootMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" }, { "DocsId": "F:System.Windows.Forms.BootMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" }, { "DocsId": "F:System.Windows.Forms.BootMode.FailSafe", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" }, { "DocsId": "F:System.Windows.Forms.BootMode.FailSafeWithNetwork", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" } ], "DocsId": "T:System.Windows.Forms.BootMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BootMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BoundsSpecified.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "DocsId": "F:System.Windows.Forms.BoundsSpecified.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" } ], "DocsId": "T:System.Windows.Forms.BoundsSpecified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/BoundsSpecified.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.CloseReason.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.WindowsShutDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.MdiFormClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.UserClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.TaskManagerClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.FormOwnerClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.CloseReason.ApplicationExitCall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" } ], "DocsId": "T:System.Windows.Forms.CloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CloseReason.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L17C53-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L17C53-L23C6" }, { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L25C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L25C5-L27C6" }, { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L31C9-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L31C9-L32C6" }, { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L115C9-L141C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L115C9-L141C6" }, { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.OnOpened(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L145C9-L156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L145C9-L156C6" }, { "DocsId": "M:System.Windows.Forms.ContextMenuStrip.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L160C9-L171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L160C9-L171C6" }, { "DocsId": "P:System.Windows.Forms.ContextMenuStrip.SourceControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L41C13-L41C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs#L41C13-L41C42" } ], "DocsId": "T:System.Windows.Forms.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ContextMenuStrip.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImeContext.Disable(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L686C9-L703C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L686C9-L703C6" }, { "DocsId": "M:System.Windows.Forms.ImeContext.Enable(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L710C9-L741C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L710C9-L741C6" }, { "DocsId": "M:System.Windows.Forms.ImeContext.GetImeMode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L748C9-L813C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L748C9-L813C23" }, { "DocsId": "M:System.Windows.Forms.ImeContext.IsOpen(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L821C9-L831C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L821C9-L831C23" }, { "DocsId": "M:System.Windows.Forms.ImeContext.SetImeStatus(System.Windows.Forms.ImeMode,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L841C9-L920C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L841C9-L920C6" }, { "DocsId": "M:System.Windows.Forms.ImeContext.SetOpenStatus(System.Boolean,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L927C9-L945C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L927C9-L945C6" } ], "DocsId": "T:System.Windows.Forms.ImeContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.ImeModeConversion.ImeModeConversionBits", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L1063C16-L1144C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L1063C16-L1144C10" }, { "DocsId": "P:System.Windows.Forms.ImeModeConversion.IsCurrentConversionTableSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L1147C61-L1147C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs#L1147C61-L1147C99" } ], "DocsId": "T:System.Windows.Forms.ImeModeConversion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.Ime.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ControlEventArgs.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.ControlEventArgs.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs#L22C31-L22C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs#L22C31-L22C35" } ], "DocsId": "T:System.Windows.Forms.ControlEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ControlEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ControlEventHandler.Invoke(System.Object,System.Windows.Forms.ControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ControlEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ControlEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ControlEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ControlEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlEventHandler.cs" + }, + { + "Members": [ + { + "DocsId": "M:System.Windows.Forms.ControlMutationExtensions.SuspendPainting(System.Windows.Forms.ISupportSuspendPainting)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlMutationExtensions.cs#L29C12-L29C44" + }, + { + "DocsId": "M:System.Windows.Forms.ControlMutationExtensions.SuspendPainting(System.Windows.Forms.ISupportSuspendPainting,System.Windows.Forms.LayoutSuspendTraversal)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlMutationExtensions.cs#L47C12-L47C68" + }, + { + "DocsId": "M:System.Windows.Forms.ControlMutationExtensions.SuspendPainting(System.Windows.Forms.ISupportSuspendPainting,System.Func{System.Windows.Forms.Control,System.Boolean})", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlMutationExtensions.cs#L64C12-L64C74" + } + ], + "DocsId": "T:System.Windows.Forms.ControlMutationExtensions", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlMutationExtensions.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ControlStyles.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.ContainerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.UserPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.Opaque", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.ResizeRedraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.FixedWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.FixedHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.StandardClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.Selectable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.UserMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.SupportsTransparentBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.StandardDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.AllPaintingInWmPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.CacheText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.EnableNotifyMessage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.DoubleBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.OptimizedDoubleBuffer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.UseTextForAccessibility", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "DocsId": "F:System.Windows.Forms.ControlStyles.ApplyThemingImplicitly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" } ], "DocsId": "T:System.Windows.Forms.ControlStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlStyles.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Appearance.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" }, { "DocsId": "F:System.Windows.Forms.Appearance.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" }, { "DocsId": "F:System.Windows.Forms.Appearance.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Appearance.ToggleSwitch", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" } ], "DocsId": "T:System.Windows.Forms.Appearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Appearance.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Button.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L31C5-L40C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L31C5-L40C6" }, { "DocsId": "M:System.Windows.Forms.Button.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L76C74-L76C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L76C74-L76C106" }, { "DocsId": "M:System.Windows.Forms.Button.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L190C58-L190C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L158C9-L159C6" }, { "DocsId": "M:System.Windows.Forms.Button.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L195C58-L195C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L166C9-L167C6" }, { "DocsId": "M:System.Windows.Forms.Button.NotifyDefault(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L221C9-L225C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L193C9-L197C6" }, { "DocsId": "M:System.Windows.Forms.Button.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L229C9-L246C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L201C9-L218C6" }, { "DocsId": "M:System.Windows.Forms.Button.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L250C9-L252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L222C9-L224C6" }, { "DocsId": "M:System.Windows.Forms.Button.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L256C9-L281C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L228C9-L253C6" }, { "DocsId": "M:System.Windows.Forms.Button.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L285C9-L287C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L257C9-L259C6" }, { "DocsId": "M:System.Windows.Forms.Button.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L291C9-L298C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L263C9-L270C6" }, { "DocsId": "M:System.Windows.Forms.Button.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L305C9-L315C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L277C9-L287C6" }, { "DocsId": "M:System.Windows.Forms.Button.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L319C9-L325C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L291C9-L297C47" }, { "DocsId": "M:System.Windows.Forms.Button.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L328C42-L328C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L300C42-L300C76" }, { "DocsId": "M:System.Windows.Forms.Button.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L332C9-L351C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L304C9-L323C6" }, { "DocsId": "E:System.Windows.Forms.Button.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L202C16-L202C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L174C16-L174C41" }, { "DocsId": "E:System.Windows.Forms.Button.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L211C16-L211C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L183C16-L183C46" }, { "DocsId": "P:System.Windows.Forms.Button.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L52C16-L52C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L52C16-L52C33" }, { "DocsId": "P:System.Windows.Forms.Button.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L114C13-L131C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L114C13-L131C23" }, { "DocsId": "P:System.Windows.Forms.Button.DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L143C16-L143C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs#L143C16-L143C29" } ], "DocsId": "T:System.Windows.Forms.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/Button.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ButtonBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L20C5-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L21C5-L88C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.System#Windows#Forms#ICommandBindingTargetProvider#get_PreviousEnabledStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L680C65-L680C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L638C65-L638C69" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.System#Windows#Forms#ICommandBindingTargetProvider#set_PreviousEnabledStatus(System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L680C70-L680C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L638C70-L638C74" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L829C74-L829C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L787C74-L787C110" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L835C9-L844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L793C9-L806C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L861C9-L863C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L823C9-L825C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L870C9-L872C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L832C9-L834C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L879C9-L886C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L841C9-L848C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L893C9-L902C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L855C9-L864C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L909C9-L916C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L871C9-L878C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L923C9-L947C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L885C9-L909C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L954C9-L964C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L916C9-L926C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L971C9-L972C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L933C9-L934C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.ResetFlagsandPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L979C9-L983C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L941C9-L945C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L999C9-L1009C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L961C9-L971C52" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnCommandChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1097C61-L1097C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1082C61-L1082C97" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnCommandCanExecuteChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1105C9-L1105C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1090C9-L1090C82" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnCommandParameterChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1112C70-L1112C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1097C70-L1097C115" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnRequestCommandExecute(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1120C9-L1120C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1105C9-L1105C66" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.System#Windows#Forms#ICommandBindingTargetProvider#RaiseCommandChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1123C76-L1123C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1108C76-L1108C95" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.System#Windows#Forms#ICommandBindingTargetProvider#RaiseCommandCanExecuteChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1126C86-L1126C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1111C86-L1111C115" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1146C9-L1156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1131C9-L1141C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1160C9-L1171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1145C9-L1156C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1178C9-L1199C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1163C9-L1184C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1206C9-L1231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1191C9-L1216C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1238C9-L1257C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1223C9-L1255C6" + }, + { + "DocsId": "M:System.Windows.Forms.ButtonBase.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1260C9-L1282C6" + }, + { + "DocsId": "M:System.Windows.Forms.ButtonBase.OnSystemColorsChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1287C9-L1293C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1261C9-L1263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1304C9-L1306C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1267C9-L1269C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1310C9-L1312C6" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1353C9-L1432C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1396C9-L1475C6" }, { "DocsId": "E:System.Windows.Forms.ButtonBase.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L143C16-L143C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L146C16-L146C45" }, { "DocsId": "E:System.Windows.Forms.ButtonBase.CommandCanExecuteChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L203C16-L203C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L206C16-L206C73" }, { "DocsId": "E:System.Windows.Forms.ButtonBase.CommandChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L215C16-L215C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L218C16-L218C63" }, { "DocsId": "E:System.Windows.Forms.ButtonBase.CommandParameterChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L254C16-L254C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L257C16-L257C72" }, { "DocsId": "E:System.Windows.Forms.ButtonBase.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L635C16-L635C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L593C16-L593C44" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.AutoEllipsis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L98C16-L98C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L101C16-L101C41" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L124C16-L124C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L127C16-L127C29" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L154C16-L154C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L157C16-L157C30" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.Command", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L190C16-L190C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L193C16-L193C24" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.CommandParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L229C16-L229C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L232C16-L232C33" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L258C44-L258C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L261C44-L261C55" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L264C13-L309C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L267C13-L312C23" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L313C50-L313C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L316C50-L316C65" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.IsDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L317C16-L317C38" - }, - { - "DocsId": "P:System.Windows.Forms.ButtonBase.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L387C16-L387C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L320C16-L320C38" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.FlatAppearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L409C51-L409C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L367C51-L367C101" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L421C13-L442C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L379C13-L400C27" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ImageAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L481C16-L481C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L439C16-L439C27" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L508C16-L510C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L466C16-L468C32" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L555C16-L555C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L513C16-L513C31" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L585C16-L585C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L543C16-L543C26" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L627C16-L627C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L585C16-L585C28" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.System#Windows#Forms#ICommandBindingTargetProvider#PreviousEnabledStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L680C65-L680C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L638C65-L638C69" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L721C16-L721C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L679C16-L679C25" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L734C16-L734C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L692C16-L692C26" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.TextImageRelation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L763C16-L763C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L721C16-L721C34" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.UseMnemonic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L788C16-L788C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L746C16-L746C40" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1317C16-L1317C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1360C16-L1360C50" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.UseVisualStyleBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1327C16-L1328C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L1370C16-L1371C44" + }, + { + "DocsId": "P:System.Windows.Forms.ButtonBase.FlatStyle", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs#L345C16-L345C26" }, { "DocsId": "T:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ButtonBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.Dotted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.Dashed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.Solid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.Inset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonBorderStyle.Outset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ButtonBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L39C9-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L39C9-L46C26" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L54C12-L54C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L54C12-L54C73" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L67C9-L67C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L67C9-L67C53" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L126C9-L126C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L126C9-L126C66" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L131C9-L139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L131C9-L139C6" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L147C9-L168C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L147C9-L168C6" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L176C9-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L176C9-L195C6" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L206C35-L215C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L206C35-L215C19" }, { "DocsId": "M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L230C12-L230C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L230C12-L230C110" }, { "DocsId": "P:System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L30C57-L30C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs#L30C57-L30C61" } ], "DocsId": "T:System.Windows.Forms.ButtonRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ButtonState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.Pushed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.ButtonState.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" } ], "DocsId": "T:System.Windows.Forms.ButtonState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L28C5-L50C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L28C5-L54C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L276C9-L278C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L326C9-L328C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L390C74-L390C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L486C74-L486C108" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnAppearanceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L394C9-L398C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L490C9-L494C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnCheckedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L405C9-L408C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L501C9-L504C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnCheckStateChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L415C9-L426C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L511C9-L522C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L455C9-L487C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L551C9-L583C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L494C9-L500C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L590C9-L598C6" + }, + { + "DocsId": "M:System.Windows.Forms.CheckBox.OnPaint(System.Windows.Forms.PaintEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L603C9-L611C6" + }, + { + "DocsId": "M:System.Windows.Forms.CheckBox.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L616C9-L626C6" + }, + { + "DocsId": "M:System.Windows.Forms.CheckBox.OnSystemColorsChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L631C9-L636C6" + }, + { + "DocsId": "M:System.Windows.Forms.CheckBox.Dispose(System.Boolean)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L645C9-L654C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L508C9-L527C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L662C9-L681C6" }, { "DocsId": "M:System.Windows.Forms.CheckBox.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L540C9-L555C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L707C9-L722C22" }, { "DocsId": "M:System.Windows.Forms.CheckBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L558C42-L558C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L725C42-L725C93" }, { "DocsId": "E:System.Windows.Forms.CheckBox.AppearanceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L115C16-L115C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L152C16-L152C66" }, { "DocsId": "E:System.Windows.Forms.CheckBox.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L229C16-L229C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L279C16-L279C41" }, { "DocsId": "E:System.Windows.Forms.CheckBox.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L238C16-L238C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L288C16-L288C46" }, { "DocsId": "E:System.Windows.Forms.CheckBox.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L376C16-L376C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L472C16-L472C63" }, { "DocsId": "E:System.Windows.Forms.CheckBox.CheckStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L386C16-L386C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L482C16-L482C66" }, { "DocsId": "P:System.Windows.Forms.CheckBox.Appearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L65C16-L65C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L62C16-L62C27" }, { "DocsId": "P:System.Windows.Forms.CheckBox.AutoCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L126C29-L126C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L163C29-L163C33" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CheckAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L138C16-L138C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L175C16-L175C27" }, { "DocsId": "P:System.Windows.Forms.CheckBox.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L172C16-L172C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L209C16-L209C51" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CheckState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L192C16-L192C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L229C16-L229C27" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L246C13-L268C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L296C13-L318C23" }, { "DocsId": "P:System.Windows.Forms.CheckBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L272C44-L272C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L322C44-L322C56" }, { "DocsId": "P:System.Windows.Forms.CheckBox.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L358C16-L358C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L432C16-L432C30" }, { "DocsId": "P:System.Windows.Forms.CheckBox.ThreeState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L368C30-L368C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs#L444C16-L444C27" }, { "DocsId": "T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.CheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L27C9-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L27C9-L34C26" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L41C9-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L41C9-L47C6" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L52C9-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L52C9-L68C6" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L91C33-L99C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L91C33-L99C19" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L110C33-L110C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L110C33-L110C129" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L165C33-L175C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L165C33-L175C19" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L192C9-L225C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L192C9-L225C6" }, { "DocsId": "M:System.Windows.Forms.CheckBoxRenderer.GetGlyphSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.CheckBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L230C73-L230C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L230C73-L230C111" }, { "DocsId": "P:System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L20C57-L20C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs#L20C57-L20C61" } ], "DocsId": "T:System.Windows.Forms.CheckBoxRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBoxRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.CheckState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" }, { "DocsId": "F:System.Windows.Forms.CheckState.Unchecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" }, { "DocsId": "F:System.Windows.Forms.CheckState.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" }, { "DocsId": "F:System.Windows.Forms.CheckState.Indeterminate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" } ], "DocsId": "T:System.Windows.Forms.CheckState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckState.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.FlatButtonAppearance.BorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L34C16-L34C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L34C16-L34C27" }, { "DocsId": "P:System.Windows.Forms.FlatButtonAppearance.BorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L68C16-L68C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L68C16-L68C28" }, { "DocsId": "P:System.Windows.Forms.FlatButtonAppearance.CheckedBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L96C16-L96C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L96C16-L96C33" }, { "DocsId": "P:System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L120C16-L120C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L119C16-L123C34" }, { "DocsId": "P:System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L144C16-L144C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs#L146C16-L150C34" } ], "DocsId": "T:System.Windows.Forms.FlatButtonAppearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/FlatButtonAppearance.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IButtonControl.NotifyDefault(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" }, { "DocsId": "M:System.Windows.Forms.IButtonControl.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" }, { "DocsId": "P:System.Windows.Forms.IButtonControl.DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" } ], "DocsId": "T:System.Windows.Forms.IButtonControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/IButtonControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RadioButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L30C5-L51C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L30C5-L53C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L250C9-L252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L270C9-L272C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L341C74-L341C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L372C74-L372C111" }, { "DocsId": "M:System.Windows.Forms.RadioButton.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L345C9-L351C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L376C9-L384C6" + }, + { + "DocsId": "M:System.Windows.Forms.RadioButton.OnPaint(System.Windows.Forms.PaintEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L389C9-L397C6" + }, + { + "DocsId": "M:System.Windows.Forms.RadioButton.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L402C9-L410C6" + }, + { + "DocsId": "M:System.Windows.Forms.RadioButton.OnSystemColorsChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L415C9-L420C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.OnCheckedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L359C9-L371C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L428C9-L440C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L375C9-L381C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L444C9-L450C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L386C9-L409C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L455C9-L478C6" + }, + { + "DocsId": "M:System.Windows.Forms.RadioButton.Dispose(System.Boolean)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L579C9-L588C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L486C9-L501C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L605C9-L620C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L508C9-L517C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L627C9-L636C6" }, { "DocsId": "M:System.Windows.Forms.RadioButton.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L521C9-L537C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L640C9-L656C22" }, { "DocsId": "M:System.Windows.Forms.RadioButton.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L540C42-L540C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L659C42-L659C82" }, { "DocsId": "E:System.Windows.Forms.RadioButton.AppearanceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L116C16-L116C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L120C16-L120C65" }, { "DocsId": "E:System.Windows.Forms.RadioButton.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L194C16-L194C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L214C16-L214C41" }, { "DocsId": "E:System.Windows.Forms.RadioButton.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L203C16-L203C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L223C16-L223C46" }, { "DocsId": "E:System.Windows.Forms.RadioButton.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L337C16-L337C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L368C16-L368C63" }, { "DocsId": "P:System.Windows.Forms.RadioButton.AutoCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L62C16-L62C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L64C16-L64C26" }, { "DocsId": "P:System.Windows.Forms.RadioButton.Appearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L82C16-L82C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L84C16-L84C27" }, { "DocsId": "P:System.Windows.Forms.RadioButton.CheckAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L129C16-L129C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L133C16-L133C27" }, { "DocsId": "P:System.Windows.Forms.RadioButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L156C16-L156C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L160C16-L160C26" }, { "DocsId": "P:System.Windows.Forms.RadioButton.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L211C13-L233C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L231C13-L253C23" }, { "DocsId": "P:System.Windows.Forms.RadioButton.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L237C44-L237C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L257C44-L257C56" }, { "DocsId": "P:System.Windows.Forms.RadioButton.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L313C16-L313C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L344C16-L344C28" }, { "DocsId": "P:System.Windows.Forms.RadioButton.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L325C16-L325C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs#L356C16-L356C30" }, { "DocsId": "T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.RadioButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L28C9-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L28C9-L35C26" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L42C9-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L42C9-L47C6" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L51C9-L51C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L51C9-L51C60" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L97C9-L100C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L97C9-L100C6" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L113C9-L114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L113C9-L114C6" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L165C36-L175C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L165C36-L175C19" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L190C36-L201C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L190C36-L201C23" }, { "DocsId": "M:System.Windows.Forms.RadioButtonRenderer.GetGlyphSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.RadioButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L253C9-L255C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L253C9-L255C6" }, { "DocsId": "P:System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L21C57-L21C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs#L21C57-L21C61" } ], "DocsId": "T:System.Windows.Forms.RadioButtonRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButtonRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComboBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L52C5-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L52C5-L131C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.AddItemsCore(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1322C9-L1336C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1394C9-L1408C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1346C9-L1348C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1418C9-L1420C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1360C9-L1360C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1432C9-L1432C51" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1792C9-L1798C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1861C9-L1867C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1842C9-L1850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1911C9-L1919C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1860C9-L1878C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1927C32-L1927C59" }, { "DocsId": "M:System.Windows.Forms.ComboBox.FindString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1884C41-L1884C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1955C41-L1955C70" }, { "DocsId": "M:System.Windows.Forms.ComboBox.FindString(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1892C9-L1892C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1963C9-L1963C100" }, { "DocsId": "M:System.Windows.Forms.ComboBox.FindStringExact(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1901C9-L1901C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1972C9-L1972C69" }, { "DocsId": "M:System.Windows.Forms.ComboBox.FindStringExact(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1910C9-L1910C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1981C9-L1981C65" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1937C9-L1945C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2008C9-L2016C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.GetItemHeight(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1955C9-L1969C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2026C9-L2040C27" }, { "DocsId": "M:System.Windows.Forms.ComboBox.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2134C9-L2149C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2205C9-L2220C41" }, { "DocsId": "M:System.Windows.Forms.ComboBox.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2254C9-L2258C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2325C9-L2329C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2267C9-L2364C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2338C9-L2456C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2372C9-L2387C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2464C9-L2484C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2396C9-L2397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2493C9-L2494C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDropDown(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2406C9-L2426C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2503C9-L2523C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2432C9-L2450C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2529C9-L2547C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2458C9-L2478C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2555C9-L2575C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2482C9-L2488C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2579C9-L2585C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2503C9-L2504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2600C9-L2601C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2511C9-L2513C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2608C9-L2610C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2520C9-L2522C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2617C9-L2619C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnSelectionChangeCommitted(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2552C9-L2561C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2649C9-L2658C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2570C9-L2623C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2667C9-L2720C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnSelectedValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2627C9-L2629C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2724C9-L2726C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnSelectedItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2638C9-L2639C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2735C9-L2736C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDropDownStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2646C9-L2647C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2743C9-L2744C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnParentBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2656C9-L2661C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2753C9-L2761C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2669C9-L2683C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2769C9-L2785C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2706C9-L2708C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2808C9-L2810C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2716C9-L2718C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2818C9-L2820C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2723C9-L2728C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2825C9-L2830C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2733C9-L2745C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2835C9-L2847C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2750C9-L2774C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2852C9-L2876C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnValidating(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2779C9-L2787C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2881C9-L2889C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2815C9-L2821C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2917C9-L2926C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2825C9-L2850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2930C9-L2955C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDisplayMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2854C9-L2856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2959C9-L2961C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnDropDownClosed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2863C9-L2907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2968C9-L3012C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.OnTextUpdate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2915C9-L2916C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3020C9-L3021C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2920C9-L2953C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3025C9-L3058C30" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ProcessKeyEventArgs(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2956C67-L2960C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3061C67-L3065C47" }, { "DocsId": "M:System.Windows.Forms.ComboBox.RefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L2970C9-L3022C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3075C9-L3127C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.RefreshItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3029C9-L3030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3134C9-L3135C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ResetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3085C9-L3086C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3190C9-L3191C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.Select(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3224C9-L3232C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3329C9-L3337C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.SelectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3239C9-L3240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3344C9-L3345C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3246C9-L3252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3351C9-L3357C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.SetItemsCore(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3259C9-L3292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3364C9-L3397C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.SetItemCore(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3296C9-L3297C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3401C9-L3402C6" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3326C9-L3327C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3431C9-L3432C68" }, { "DocsId": "M:System.Windows.Forms.ComboBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3617C9-L3882C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L3726C9-L4142C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L654C9-L665C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.OnSystemVisualSettingsChanged(System.Windows.Forms.SystemVisualSettingsChangedEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L671C9-L708C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.OnPaddingChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L713C9-L725C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.OnLayout(System.Windows.Forms.LayoutEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L730C9-L732C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.GetVisualStylesModeChangeImpact(System.Windows.Forms.VisualStylesMode,System.Windows.Forms.VisualStylesMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L747C9-L757C52" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.RescaleConstantsForDpi(System.Int32,System.Int32)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.Modern.cs#L765C9-L769C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.SuspendMutation.cs#L12C9-L14C6" + }, + { + "DocsId": "M:System.Windows.Forms.ComboBox.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.SuspendMutation.cs#L19C9-L23C6" }, { "DocsId": "E:System.Windows.Forms.ComboBox.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L287C16-L287C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L294C16-L294C52" }, { "DocsId": "E:System.Windows.Forms.ComboBox.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L295C16-L295C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L302C16-L302C58" }, { "DocsId": "E:System.Windows.Forms.ComboBox.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L745C16-L745C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L806C16-L806C44" }, { "DocsId": "E:System.Windows.Forms.ComboBox.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1220C16-L1220C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1292C16-L1292C41" }, { "DocsId": "E:System.Windows.Forms.ComboBox.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1228C16-L1228C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1300C16-L1300C57" }, { "DocsId": "E:System.Windows.Forms.ComboBox.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1236C16-L1236C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1308C16-L1308C57" }, { "DocsId": "E:System.Windows.Forms.ComboBox.MeasureItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1246C13-L1248C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1318C13-L1320C10" }, { "DocsId": "E:System.Windows.Forms.ComboBox.SelectedIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1260C16-L1260C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1332C16-L1332C69" }, { "DocsId": "E:System.Windows.Forms.ComboBox.SelectionChangeCommitted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1268C16-L1268C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1340C16-L1340C73" }, { "DocsId": "E:System.Windows.Forms.ComboBox.DropDownStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1276C16-L1276C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1348C16-L1348C62" }, { "DocsId": "E:System.Windows.Forms.ComboBox.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1288C16-L1288C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1360C16-L1360C35" }, { "DocsId": "E:System.Windows.Forms.ComboBox.TextUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1300C16-L1300C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1372C16-L1372C59" }, { "DocsId": "E:System.Windows.Forms.ComboBox.DropDownClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1312C16-L1312C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1384C16-L1384C63" }, { "DocsId": "P:System.Windows.Forms.ComboBox.AutoCompleteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L141C13-L141C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L146C13-L146C38" }, { "DocsId": "P:System.Windows.Forms.ComboBox.AutoCompleteSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L183C13-L183C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L190C13-L190C40" }, { "DocsId": "P:System.Windows.Forms.ComboBox.AutoCompleteCustomSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L221C13-L227C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L228C13-L234C46" }, { "DocsId": "P:System.Windows.Forms.ComboBox.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L251C13-L260C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L258C13-L267C47" }, { "DocsId": "P:System.Windows.Forms.ComboBox.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L271C16-L271C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L278C16-L278C36" }, { "DocsId": "P:System.Windows.Forms.ComboBox.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L279C16-L279C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L286C16-L286C42" }, { "DocsId": "P:System.Windows.Forms.ComboBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L338C13-L374C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L353C13-L393C23" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L386C13-L386C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L402C12-L402C42" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L401C16-L401C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L415C16-L415C31" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L415C16-L415C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L429C16-L429C77" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DropDownWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L436C16-L436C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L450C16-L452C20" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DropDownHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L462C16-L462C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L480C16-L482C36" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DroppedDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L486C16-L486C102" - }, - { - "DocsId": "P:System.Windows.Forms.ComboBox.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L509C13-L509C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L507C16-L507C102" }, { "DocsId": "P:System.Windows.Forms.ComboBox.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L527C13-L534C141" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L570C13-L577C141" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L543C16-L543C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L586C16-L586C85" }, { "DocsId": "P:System.Windows.Forms.ComboBox.IntegralHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L559C16-L559C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L602C16-L602C31" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L584C13-L596C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L627C13-L639C71" }, { "DocsId": "P:System.Windows.Forms.ComboBox.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L628C13-L630C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L671C13-L673C37" }, { "DocsId": "P:System.Windows.Forms.ComboBox.MaxDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L654C13-L654C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L697C13-L697C38" }, { "DocsId": "P:System.Windows.Forms.ComboBox.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L667C16-L667C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L710C16-L710C32" }, { "DocsId": "P:System.Windows.Forms.ComboBox.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L673C16-L673C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L716C16-L716C32" }, { "DocsId": "P:System.Windows.Forms.ComboBox.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L689C13-L689C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L732C13-L732C71" }, { "DocsId": "P:System.Windows.Forms.ComboBox.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L737C16-L737C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L792C16-L792C28" }, { "DocsId": "P:System.Windows.Forms.ComboBox.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L760C13-L807C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L821C13-L827C48" }, { "DocsId": "P:System.Windows.Forms.ComboBox.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L872C16-L872C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L944C16-L944C107" }, { "DocsId": "P:System.Windows.Forms.ComboBox.SelectedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L916C13-L917C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L988C13-L989C56" }, { "DocsId": "P:System.Windows.Forms.ComboBox.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L953C16-L953C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1025C16-L1025C124" }, { "DocsId": "P:System.Windows.Forms.ComboBox.SelectionLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L977C13-L980C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1049C13-L1052C32" }, { "DocsId": "P:System.Windows.Forms.ComboBox.SelectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L999C13-L1001C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1071C13-L1073C26" }, { "DocsId": "P:System.Windows.Forms.ComboBox.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1021C13-L1021C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1093C13-L1093C28" }, { "DocsId": "P:System.Windows.Forms.ComboBox.DropDownStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1049C16-L1049C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1121C16-L1121C81" }, { "DocsId": "P:System.Windows.Forms.ComboBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1087C13-L1107C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L1159C13-L1179C30" + }, + { + "DocsId": "P:System.Windows.Forms.ComboBox.FlatStyle", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs#L521C16-L521C26" }, { "DocsId": "T:System.Windows.Forms.ComboBox.ChildAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.ComboBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L54C9-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L54C9-L57C6" }, { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L64C9-L65C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L64C9-L65C6" }, { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L72C9-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L72C9-L73C6" }, { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L80C9-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L80C9-L85C6" }, { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L92C9-L97C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L92C9-L97C6" }, { "DocsId": "M:System.Windows.Forms.ComboBoxRenderer.DrawDropDownButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L104C9-L106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L104C9-L106C6" }, { "DocsId": "P:System.Windows.Forms.ComboBoxRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L28C39-L28C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs#L28C39-L28C70" } ], "DocsId": "T:System.Windows.Forms.ComboBoxRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ComboBoxStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ComboBoxStyle.Simple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ComboBoxStyle.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ComboBoxStyle.DropDownList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ComboBoxStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBoxStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridView.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L257C5-L489C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L257C5-L489C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4936C9-L4942C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4936C9-L4942C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4946C9-L4977C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4946C9-L4977C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AccessibilityNotifyCurrentCellChanged(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22C9-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22C9-L56C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AdjustColumnHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L101C9-L293C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L101C9-L293C53" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AreAllCellsSelected(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1380C9-L1505C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1380C9-L1505C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1681C9-L1682C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1681C9-L1682C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32,System.Windows.Forms.DataGridViewAutoSizeColumnMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1686C9-L1687C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1686C9-L1687C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32,System.Windows.Forms.DataGridViewAutoSizeColumnMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1691C9-L1722C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1691C9-L1722C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1726C9-L1727C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1726C9-L1727C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1731C9-L1732C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1731C9-L1732C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1736C9-L1795C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1736C9-L1795C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1799C9-L1860C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1799C9-L1860C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1924C9-L1925C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1924C9-L1925C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1929C9-L1930C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1929C9-L1930C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1934C14-L1938C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1934C14-L1938C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1942C9-L1943C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1942C9-L1943C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1947C9-L1948C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1947C9-L1948C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1952C9-L1967C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1952C9-L1967C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1972C9-L1976C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1972C9-L1976C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1984C9-L2110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L1984C9-L2110C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Int32,System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2114C9-L2119C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2114C9-L2119C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Int32,System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2127C9-L2272C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2127C9-L2272C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2338C9-L2339C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2338C9-L2339C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2343C9-L2344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2343C9-L2344C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2359C17-L2374C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2359C17-L2374C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Int32,System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2379C9-L2422C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2379C9-L2422C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.BeginEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2564C54-L2566C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L2564C54-L2566C66" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CancelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3033C9-L3033C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3033C9-L3033C43" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ClearSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3387C9-L3449C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3387C9-L3449C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ClearSelection(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3453C9-L3587C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3453C9-L3587C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3716C9-L3742C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L3716C9-L3742C21" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5394C9-L5394C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5394C9-L5394C55" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5399C9-L5399C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5399C9-L5399C56" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CreateColumnsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5409C9-L5409C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5409C9-L5409C55" }, { "DocsId": "M:System.Windows.Forms.DataGridView.CreateRowsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5419C9-L5419C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5419C9-L5419C52" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DisplayedColumnCount(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5519C9-L5560C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5519C9-L5560C73" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DisplayedRowCount(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5565C9-L5567C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5565C9-L5567C120" }, { "DocsId": "M:System.Windows.Forms.DataGridView.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5572C9-L5624C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L5572C9-L5624C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.EndEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6130C9-L6130C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6130C9-L6130C102" }, { "DocsId": "M:System.Windows.Forms.DataGridView.EndEdit(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6133C67-L6145C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6133C67-L6145C35" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetAccessibilityObjectById(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6799C9-L6799C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6799C9-L6799C59" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetCellCount(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6841C9-L6966C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L6841C9-L6966C26" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetCellDisplayRectangle(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L7045C9-L7097C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L7045C9-L7097C24" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetClipboardContent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L7118C9-L8147C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L7118C9-L8147C27" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetColumnDisplayRectangle(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L8192C9-L8195C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L8192C9-L8195C75" }, { "DocsId": "M:System.Windows.Forms.DataGridView.GetRowDisplayRectangle(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9022C9-L9025C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9022C9-L9025C69" }, { "DocsId": "M:System.Windows.Forms.DataGridView.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9283C9-L9617C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9283C9-L9617C20" }, { "DocsId": "M:System.Windows.Forms.DataGridView.InvalidateCell(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9759C9-L9767C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9759C9-L9767C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.InvalidateCell(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9778C9-L9785C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9778C9-L9785C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.InvalidateColumn(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9804C9-L9808C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9804C9-L9808C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.InvalidateRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9848C9-L9852C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L9848C9-L9852C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10051C9-L10058C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10051C9-L10058C47" }, { "DocsId": "M:System.Windows.Forms.DataGridView.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10064C9-L10134C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10064C9-L10134C41" }, { "DocsId": "M:System.Windows.Forms.DataGridView.NotifyCurrentCellDirty(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10515C9-L10526C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L10515C9-L10526C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAllowUserToAddRowsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11104C9-L11106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11104C9-L11106C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAllowUserToDeleteRowsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11109C9-L11109C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11109C9-L11109C85" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAllowUserToOrderColumnsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11112C9-L11112C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11112C9-L11112C87" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAllowUserToResizeColumnsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11115C9-L11115C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11115C9-L11115C88" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAllowUserToResizeRowsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11118C9-L11118C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11118C9-L11118C85" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAlternatingRowsDefaultCellStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11122C9-L11136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11122C9-L11136C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAutoGenerateColumnsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11140C9-L11147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11140C9-L11147C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAutoSizeColumnModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11158C9-L11227C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11158C9-L11227C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAutoSizeColumnsModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11231C9-L11314C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11231C9-L11314C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnAutoSizeRowsModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11318C9-L11343C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11318C9-L11343C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnBackgroundColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11347C9-L11349C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11347C9-L11349C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnBindingContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11445C9-L11492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11445C9-L11492C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11495C9-L11495C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11495C9-L11495C75" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCancelRowEdit(System.Windows.Forms.QuestionEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11499C9-L11504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11499C9-L11504C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellBeginEdit(System.Windows.Forms.DataGridViewCellCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11520C9-L11522C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11520C9-L11522C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11526C9-L11534C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11526C9-L11534C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11543C9-L11559C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11543C9-L11559C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11627C9-L11643C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11627C9-L11643C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11652C9-L11668C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11652C9-L11668C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellContextMenuStripChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11678C9-L11680C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11678C9-L11680C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellContextMenuStripNeeded(System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11691C9-L11693C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11691C9-L11693C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11697C9-L11713C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11697C9-L11713C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellEndEdit(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11717C9-L11719C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11717C9-L11719C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellEnter(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11740C9-L11752C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11740C9-L11752C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellErrorTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11764C9-L11768C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11764C9-L11768C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellErrorTextNeeded(System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11781C9-L11783C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11781C9-L11783C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellFormatting(System.Windows.Forms.DataGridViewCellFormattingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11805C9-L11807C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11805C9-L11807C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellLeave(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11828C9-L11840C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11828C9-L11840C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11844C9-L11861C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11844C9-L11861C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11865C9-L11882C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11865C9-L11882C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11886C9-L12058C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L11886C9-L12058C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseEnter(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12607C9-L12626C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12607C9-L12626C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseLeave(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12630C9-L12649C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12630C9-L12649C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12653C9-L12707C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12653C9-L12707C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12711C9-L12727C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12711C9-L12727C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellPainting(System.Windows.Forms.DataGridViewCellPaintingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12731C9-L12733C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12731C9-L12733C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellParsing(System.Windows.Forms.DataGridViewCellParsingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12755C9-L12757C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12755C9-L12757C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellStateChanged(System.Windows.Forms.DataGridViewCellStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12808C9-L12838C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12808C9-L12838C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellStyleChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12848C9-L12851C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12848C9-L12851C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellStyleContentChanged(System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12896C9-L13018C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L12896C9-L13018C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellToolTipTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13028C9-L13030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13028C9-L13030C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellToolTipTextNeeded(System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13041C9-L13043C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13041C9-L13043C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellValidated(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13064C9-L13080C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13064C9-L13080C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellValidating(System.Windows.Forms.DataGridViewCellValidatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13112C9-L13131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13112C9-L13131C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13141C9-L13144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13141C9-L13144C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellValueNeeded(System.Windows.Forms.DataGridViewCellValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13156C9-L13159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13156C9-L13159C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCellValuePushed(System.Windows.Forms.DataGridViewCellValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13170C9-L13173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13170C9-L13173C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnAdded(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13239C9-L13245C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13239C9-L13245C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnContextMenuStripChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13303C9-L13309C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13303C9-L13309C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnDataPropertyNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13318C9-L13340C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13318C9-L13340C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnDefaultCellStyleChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13344C9-L13351C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13344C9-L13351C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnDisplayIndexChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13416C9-L13427C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13416C9-L13427C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnDividerDoubleClick(System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13458C9-L13488C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13458C9-L13488C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnDividerWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13492C9-L13499C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13492C9-L13499C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeaderCellChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13579C9-L13586C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13579C9-L13586C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13635C9-L13666C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13635C9-L13666C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13669C9-L13669C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13669C9-L13669C106" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeadersBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13896C9-L13904C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13896C9-L13904C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeadersDefaultCellStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13908C9-L13923C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13908C9-L13923C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13973C9-L13981C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13973C9-L13981C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13985C9-L14001C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L13985C9-L14001C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnMinimumWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14040C9-L14056C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14040C9-L14056C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14067C9-L14109C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14067C9-L14109C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnRemoved(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14119C9-L14119C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14119C9-L14119C88" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnSortModeChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14259C9-L14305C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14259C9-L14305C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnStateChanged(System.Windows.Forms.DataGridViewColumnStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14310C9-L14452C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14310C9-L14452C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnToolTipTextChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14461C9-L14467C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14461C9-L14467C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnColumnWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14471C9-L14537C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14471C9-L14537C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCurrentCellChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14563C9-L14571C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14563C9-L14571C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCurrentCellDirtyStateChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14575C9-L14591C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14575C9-L14591C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnCursorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14595C9-L14600C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14595C9-L14600C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDataBindingComplete(System.Windows.Forms.DataGridViewBindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14606C9-L14606C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14606C9-L14606C103" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDataError(System.Boolean,System.Windows.Forms.DataGridViewDataErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14610C9-L14644C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14610C9-L14644C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDataMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14886C9-L14893C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14886C9-L14893C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14897C9-L14905C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14897C9-L14905C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDefaultCellStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14914C9-L14928C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14914C9-L14928C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDefaultValuesNeeded(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14931C9-L14931C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14931C9-L14931C91" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnDoubleClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14935C9-L14953C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14935C9-L14953C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnEditingControlShowing(System.Windows.Forms.DataGridViewEditingControlShowingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14956C9-L14956C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14956C9-L14956C111" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnEditModeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14960C9-L14967C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14960C9-L14967C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14971C9-L14993C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14971C9-L14993C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14997C9-L15073C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L14997C9-L15073C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15077C9-L15108C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15077C9-L15108C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15112C9-L15126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15112C9-L15126C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15186C9-L15208C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15186C9-L15208C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnGridColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15212C9-L15214C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15212C9-L15214C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15218C9-L15246C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15218C9-L15246C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15250C9-L15252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15250C9-L15252C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15669C9-L15723C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15669C9-L15723C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15728C9-L15750C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15728C9-L15750C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15755C9-L15784C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15755C9-L15784C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15788C9-L15808C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15788C9-L15808C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15812C9-L15840C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15812C9-L15840C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15844C9-L15854C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15844C9-L15854C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseClick(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15858C9-L15945C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15858C9-L15945C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15949C9-L16086C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L15949C9-L16086C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16090C9-L16127C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16090C9-L16127C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16131C9-L16142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16131C9-L16142C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16147C9-L16179C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16147C9-L16179C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16183C9-L16336C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16183C9-L16336C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16340C9-L16444C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16340C9-L16444C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16448C9-L16637C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16448C9-L16637C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnMultiSelectChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16646C9-L16646C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16646C9-L16646C75" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnNewRowNeeded(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16650C9-L16656C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16650C9-L16656C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16663C13-L16724C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16663C13-L16724C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnReadOnlyChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16852C9-L16866C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L16852C9-L16866C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17434C9-L17511C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17434C9-L17511C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17515C9-L17523C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17515C9-L17523C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowContextMenuStripChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17578C9-L17584C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17578C9-L17584C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowContextMenuStripNeeded(System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17594C9-L17594C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17594C9-L17594C119" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowDefaultCellStyleChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17598C9-L17605C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17598C9-L17605C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowDirtyStateNeeded(System.Windows.Forms.QuestionEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17608C9-L17608C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17608C9-L17608C84" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowDividerDoubleClick(System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17612C9-L17632C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17612C9-L17632C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowDividerHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17636C9-L17643C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17636C9-L17643C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowEnter(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17736C13-L17748C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17736C13-L17748C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowErrorTextChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17758C9-L17765C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17758C9-L17765C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowErrorTextNeeded(System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17776C9-L17776C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17776C9-L17776C105" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeaderCellChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17842C9-L17849C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17842C9-L17849C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17918C9-L17918C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17918C9-L17918C97" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17921C9-L17921C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L17921C9-L17921C103" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeadersBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18175C9-L18178C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18175C9-L18178C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeadersDefaultCellStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18182C9-L18197C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18182C9-L18197C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeadersWidthChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18237C9-L18250C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18237C9-L18250C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeadersWidthSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18254C9-L18271C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18254C9-L18271C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18275C9-L18283C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18275C9-L18283C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeightInfoNeeded(System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18294C9-L18294C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18294C9-L18294C107" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowHeightInfoPushed(System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18315C9-L18315C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18315C9-L18315C107" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowLeave(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18343C13-L18355C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18343C13-L18355C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowMinimumHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18359C9-L18365C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18359C9-L18365C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowPostPaint(System.Windows.Forms.DataGridViewRowPostPaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18368C9-L18368C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18368C9-L18368C93" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowPrePaint(System.Windows.Forms.DataGridViewRowPrePaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18371C9-L18371C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18371C9-L18371C91" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowsAdded(System.Windows.Forms.DataGridViewRowsAddedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18377C9-L18377C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18377C9-L18377C87" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowsDefaultCellStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18381C9-L18395C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18381C9-L18395C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowsRemoved(System.Windows.Forms.DataGridViewRowsRemovedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18549C9-L18549C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18549C9-L18549C91" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowStateChanged(System.Int32,System.Windows.Forms.DataGridViewRowStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18557C9-L18694C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18557C9-L18694C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowUnshared(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18709C9-L18715C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18709C9-L18715C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowValidating(System.Windows.Forms.DataGridViewCellCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18744C13-L18757C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18744C13-L18757C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnRowValidated(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18789C13-L18802C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18789C13-L18802C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnScroll(System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18902C9-L18902C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18902C9-L18902C69" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnSelectionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18906C9-L18908C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18906C9-L18908C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnSortCompare(System.Windows.Forms.DataGridViewSortCompareEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18930C9-L18930C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18930C9-L18930C91" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnSorted(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18932C53-L18932C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18932C53-L18932C107" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnUserAddedRow(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18995C9-L19001C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L18995C9-L19001C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnUserDeletedRow(System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19004C9-L19004C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19004C9-L19004C86" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnUserDeletingRow(System.Windows.Forms.DataGridViewRowCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19007C9-L19007C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19007C9-L19007C93" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnValidating(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19041C9-L19112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19041C9-L19112C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19116C9-L19118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19116C9-L19118C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.PaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19204C9-L19270C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19204C9-L19270C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessAKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19915C9-L19921C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19915C9-L19921C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessDeleteKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19926C9-L20044C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L19926C9-L20044C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L20053C9-L20139C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L20053C9-L20139C47" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessDownKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L20142C52-L20142C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L20142C52-L20142C95" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessEndKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21068C9-L21393C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21068C9-L21393C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessEnterKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21401C9-L21474C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21401C9-L21474C20" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessEscapeKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21479C9-L21493C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21479C9-L21493C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessF2Key(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21498C9-L21517C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21498C9-L21517C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessF3Key(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21527C9-L21540C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21527C9-L21540C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessHomeKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21545C9-L21851C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21545C9-L21851C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessInsertKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21855C9-L21868C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21855C9-L21868C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessKeyEventArgs(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21873C9-L21927C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21873C9-L21927C48" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessKeyPreview(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21933C9-L21997C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L21933C9-L21997C46" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessControlShiftF10Keys(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22038C9-L22055C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22038C9-L22055C21" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessLeftKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22058C52-L22060C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22058C52-L22060C41" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessNextKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22917C9-L23175C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L22917C9-L23175C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessPriorKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L23179C9-L23433C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L23179C9-L23433C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessRightKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L23435C53-L23437C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L23435C53-L23437C42" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessSpaceKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24256C9-L24334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24256C9-L24334C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessTabKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24341C9-L24408C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24341C9-L24408C48" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessDataGridViewKey(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24420C9-L24525C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24420C9-L24525C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessUpKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24530C9-L25264C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L24530C9-L25264C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ProcessZeroKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25268C9-L25318C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25268C9-L25318C22" }, { "DocsId": "M:System.Windows.Forms.DataGridView.RefreshEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25470C9-L25509C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25470C9-L25509C21" }, { "DocsId": "M:System.Windows.Forms.DataGridView.ResetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25815C41-L25815C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L25815C41-L25815C57" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SelectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L26537C9-L26635C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L26537C9-L26635C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SetCurrentCellAddressCore(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L26744C9-L27130C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L26744C9-L27130C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27453C9-L27464C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27453C9-L27464C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SetSelectedCellCore(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27614C9-L27726C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27614C9-L27726C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SetSelectedColumnCore(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27944C9-L27981C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L27944C9-L27981C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.SetSelectedRowCore(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28063C9-L28101C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28063C9-L28101C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.Sort(System.Windows.Forms.DataGridViewColumn,System.ComponentModel.ListSortDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28158C9-L28176C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28158C9-L28176C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.Sort(System.Collections.IComparer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28180C9-L28194C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28180C9-L28194C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.UpdateCellErrorText(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28857C9-L28866C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28857C9-L28866C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.UpdateCellValue(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28870C9-L28880C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28870C9-L28880C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.UpdateRowErrorText(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28928C9-L28935C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28928C9-L28935C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.UpdateRowErrorText(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28939C9-L28963C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28939C9-L28963C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.UpdateRowHeightInfo(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28967C9-L28968C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L28967C9-L28968C6" }, { "DocsId": "M:System.Windows.Forms.DataGridView.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L30060C9-L30100C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.Methods.cs#L30060C9-L30100C6" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L674C16-L674C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L674C16-L674C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L702C16-L702C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L702C16-L702C77" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L729C16-L729C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L729C16-L729C79" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L757C16-L757C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L757C16-L757C80" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L785C16-L785C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L785C16-L785C77" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L824C16-L824C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L824C16-L824C87" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L852C16-L852C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L852C16-L852C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L932C16-L932C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L932C16-L932C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L980C16-L980C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L980C16-L980C72" }, { "DocsId": "E:System.Windows.Forms.DataGridView.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L997C16-L997C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L997C16-L997C46" }, { "DocsId": "E:System.Windows.Forms.DataGridView.BackgroundColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1028C16-L1028C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1028C16-L1028C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1052C16-L1052C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1052C16-L1052C52" }, { "DocsId": "E:System.Windows.Forms.DataGridView.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1060C16-L1060C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1060C16-L1060C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.BorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1101C16-L1101C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1101C16-L1101C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellBorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1321C16-L1321C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1321C16-L1321C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1506C16-L1506C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1506C16-L1506C80" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1567C16-L1567C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1567C16-L1567C85" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1597C16-L1597C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1597C16-L1597C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1632C16-L1632C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1632C16-L1632C83" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DataMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1904C16-L1904C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1904C16-L1904C66" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DataSourceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1961C16-L1961C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1961C16-L1961C66" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2081C16-L2081C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2081C16-L2081C72" }, { "DocsId": "E:System.Windows.Forms.DataGridView.EditModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2171C16-L2171C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2171C16-L2171C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2616C16-L2616C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2616C16-L2616C46" }, { "DocsId": "E:System.Windows.Forms.DataGridView.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2633C16-L2633C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2633C16-L2633C41" }, { "DocsId": "E:System.Windows.Forms.DataGridView.GridColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2664C16-L2664C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2664C16-L2664C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.MultiSelectChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3012C16-L3012C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3012C16-L3012C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3050C16-L3050C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3050C16-L3050C44" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3136C16-L3136C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3136C16-L3136C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3293C16-L3293C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3293C16-L3293C77" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3332C16-L3332C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3332C16-L3332C82" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeadersWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3435C16-L3435C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3435C16-L3435C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3475C16-L3475C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3475C16-L3475C79" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3525C16-L3525C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3525C16-L3525C76" }, { "DocsId": "E:System.Windows.Forms.DataGridView.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4003C16-L4003C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4003C16-L4003C41" }, { "DocsId": "E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4162C16-L4162C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4162C16-L4162C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CancelRowEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4170C16-L4170C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4170C16-L4170C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellBeginEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4178C16-L4178C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4178C16-L4178C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4186C16-L4186C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4186C16-L4186C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellContentClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4194C16-L4194C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4194C16-L4194C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellContentDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4202C16-L4202C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4202C16-L4202C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4211C16-L4211C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4211C16-L4211C76" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4220C16-L4220C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4220C16-L4220C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4228C16-L4228C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4228C16-L4228C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellEndEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4236C16-L4236C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4236C16-L4236C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4244C16-L4244C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4244C16-L4244C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellErrorTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4252C16-L4252C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4252C16-L4252C69" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellErrorTextNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4261C16-L4261C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4261C16-L4261C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellFormatting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4269C16-L4269C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4269C16-L4269C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4277C16-L4277C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4277C16-L4277C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4285C16-L4285C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4285C16-L4285C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4293C16-L4293C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4293C16-L4293C69" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4301C16-L4301C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4301C16-L4301C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4309C16-L4309C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4309C16-L4309C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4317C16-L4317C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4317C16-L4317C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4325C16-L4325C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4325C16-L4325C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellMouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4333C16-L4333C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4333C16-L4333C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellPainting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4341C16-L4341C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4341C16-L4341C61" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellParsing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4349C16-L4349C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4349C16-L4349C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4357C16-L4357C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4357C16-L4357C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4365C16-L4365C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4365C16-L4365C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellStyleContentChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4373C16-L4373C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4373C16-L4373C72" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellToolTipTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4381C16-L4381C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4381C16-L4381C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4390C16-L4390C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4390C16-L4390C70" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellValidated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4398C16-L4398C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4398C16-L4398C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellValidating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4406C16-L4406C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4406C16-L4406C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4414C16-L4414C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4414C16-L4414C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellValueNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4423C16-L4423C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4423C16-L4423C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CellValuePushed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4432C16-L4432C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4432C16-L4432C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4440C16-L4440C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4440C16-L4440C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4448C16-L4448C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4448C16-L4448C78" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4456C16-L4456C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4456C16-L4456C78" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4464C16-L4464C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4464C16-L4464C78" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4472C16-L4472C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4472C16-L4472C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4480C16-L4480C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4480C16-L4480C73" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnDividerWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4488C16-L4488C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4488C16-L4488C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeaderMouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4496C16-L4496C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4496C16-L4496C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4504C16-L4504C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4504C16-L4504C77" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnHeaderCellChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4512C16-L4512C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4512C16-L4512C72" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4520C16-L4520C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4520C16-L4520C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4528C16-L4528C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4528C16-L4528C66" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4536C16-L4536C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4536C16-L4536C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnSortModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4544C16-L4544C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4544C16-L4544C70" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4552C16-L4552C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4552C16-L4552C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnToolTipTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4560C16-L4560C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4560C16-L4560C73" }, { "DocsId": "E:System.Windows.Forms.DataGridView.ColumnWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4568C16-L4568C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4568C16-L4568C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CurrentCellChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4576C16-L4576C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4576C16-L4576C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4585C16-L4585C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4585C16-L4585C77" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DataBindingComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4593C16-L4593C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4593C16-L4593C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DataError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4601C16-L4601C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4601C16-L4601C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.DefaultValuesNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4610C16-L4610C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4610C16-L4610C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.EditingControlShowing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4618C16-L4618C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4618C16-L4618C70" }, { "DocsId": "E:System.Windows.Forms.DataGridView.NewRowNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4626C16-L4626C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4626C16-L4626C61" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4634C16-L4634C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4634C16-L4634C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4643C16-L4643C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4643C16-L4643C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4651C16-L4651C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4651C16-L4651C75" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowDirtyStateNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4660C16-L4660C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4660C16-L4660C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowDividerDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4668C16-L4668C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4668C16-L4668C70" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowDividerHeightChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4676C16-L4676C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4676C16-L4676C72" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4684C16-L4684C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4684C16-L4684C57" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowErrorTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4692C16-L4692C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4692C16-L4692C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowErrorTextNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4701C16-L4701C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4701C16-L4701C67" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeaderMouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4709C16-L4709C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4709C16-L4709C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4717C16-L4717C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4717C16-L4717C74" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeaderCellChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4725C16-L4725C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4725C16-L4725C69" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeightChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4733C16-L4733C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4733C16-L4733C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4742C16-L4742C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4742C16-L4742C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowHeightInfoPushed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4761C16-L4761C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4761C16-L4761C68" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4769C16-L4769C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4769C16-L4769C57" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowMinimumHeightChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4777C16-L4777C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4777C16-L4777C71" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowPostPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4785C16-L4785C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4785C16-L4785C61" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowPrePaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4803C16-L4803C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4803C16-L4803C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowsAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4821C16-L4821C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4821C16-L4821C58" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowsRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4829C16-L4829C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4829C16-L4829C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4837C16-L4837C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4837C16-L4837C64" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowUnshared", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4846C16-L4846C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4846C16-L4846C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowValidated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4854C16-L4854C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4854C16-L4854C61" }, { "DocsId": "E:System.Windows.Forms.DataGridView.RowValidating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4862C16-L4862C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4862C16-L4862C62" }, { "DocsId": "E:System.Windows.Forms.DataGridView.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4870C16-L4870C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4870C16-L4870C55" }, { "DocsId": "E:System.Windows.Forms.DataGridView.SelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4878C16-L4878C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4878C16-L4878C65" }, { "DocsId": "E:System.Windows.Forms.DataGridView.SortCompare", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4887C16-L4887C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4887C16-L4887C60" }, { "DocsId": "E:System.Windows.Forms.DataGridView.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4895C16-L4895C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4895C16-L4895C55" }, { "DocsId": "E:System.Windows.Forms.DataGridView.StyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4903C16-L4903C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4903C16-L4903C42" }, { "DocsId": "E:System.Windows.Forms.DataGridView.UserAddedRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4911C16-L4911C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4911C16-L4911C61" }, { "DocsId": "E:System.Windows.Forms.DataGridView.UserDeletedRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4919C16-L4919C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4919C16-L4919C63" }, { "DocsId": "E:System.Windows.Forms.DataGridView.UserDeletingRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4927C16-L4927C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4927C16-L4927C64" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AdjustedTopLeftHeaderBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L499C13-L629C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L499C13-L629C27" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AdvancedCellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L635C70-L635C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L635C70-L635C74" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L639C79-L639C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L639C79-L639C83" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L643C76-L643C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L643C76-L643C80" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AllowUserToAddRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L650C16-L650C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L650C16-L650C62" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AllowUserToDeleteRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L683C16-L683C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L683C16-L683C65" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AllowUserToOrderColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L713C13-L713C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L713C13-L713C72" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AllowUserToResizeColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L742C16-L742C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L742C16-L742C68" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AllowUserToResizeRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L770C16-L770C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L770C16-L770C65" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L796C13-L802C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L796C13-L802C53" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AutoGenerateColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L837C16-L837C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L837C16-L837C63" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L861C16-L861C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L861C16-L861C55" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L878C16-L878C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L878C16-L878C36" }, { "DocsId": "P:System.Windows.Forms.DataGridView.AutoSizeRowsMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L944C16-L944C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L944C16-L944C33" }, { "DocsId": "P:System.Windows.Forms.DataGridView.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L989C16-L989C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L989C16-L989C30" }, { "DocsId": "P:System.Windows.Forms.DataGridView.BackgroundColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1008C16-L1008C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1008C16-L1008C32" }, { "DocsId": "P:System.Windows.Forms.DataGridView.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1036C16-L1036C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1036C16-L1036C36" }, { "DocsId": "P:System.Windows.Forms.DataGridView.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1044C16-L1044C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1044C16-L1044C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1071C16-L1071C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1071C16-L1071C28" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CanEnableIme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1129C13-L1142C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1129C13-L1142C30" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1154C13-L1228C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1154C13-L1228C63" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ClipboardCopyMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1370C16-L1370C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1370C16-L1370C34" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1385C16-L1385C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1385C16-L1385C29" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1440C16-L1447C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1440C16-L1447C54" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1496C13-L1498C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1496C13-L1498C38" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1518C13-L1520C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1518C13-L1520C51" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnHeadersHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1576C16-L1576C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1576C16-L1576C36" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1614C16-L1614C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1614C16-L1614C44" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ColumnHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1645C16-L1645C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1645C16-L1645C64" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Columns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1695C13-L1697C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1695C13-L1697C41" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CurrentCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1707C13-L1716C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1707C13-L1716C60" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CurrentCellAddress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1775C40-L1775C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1775C40-L1775C54" }, { "DocsId": "P:System.Windows.Forms.DataGridView.CurrentRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1849C13-L1857C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1849C13-L1857C43" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1886C16-L1886C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1886C16-L1886C81" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1915C16-L1915C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1915C16-L1915C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1973C13-L2032C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L1973C13-L2032C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2117C44-L2117C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2117C44-L2117C57" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2129C13-L2144C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2129C13-L2144C32" }, { "DocsId": "P:System.Windows.Forms.DataGridView.EditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2153C16-L2153C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2153C16-L2153C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.EditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2229C38-L2229C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2229C38-L2229C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.EditingPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2239C13-L2244C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2239C13-L2244C34" }, { "DocsId": "P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2267C16-L2267C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2267C16-L2267C69" }, { "DocsId": "P:System.Windows.Forms.DataGridView.FirstDisplayedCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2285C13-L2291C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2285C13-L2291C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnHiddenWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2442C59-L2442C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2442C59-L2442C63" }, { "DocsId": "P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2448C16-L2448C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2448C16-L2448C61" }, { "DocsId": "P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2528C16-L2528C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2528C16-L2528C61" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2608C16-L2608C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2608C16-L2608C30" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2625C16-L2625C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2625C16-L2625C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.GridColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2644C16-L2644C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2644C16-L2644C28" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HorizontalScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2783C48-L2783C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2783C48-L2783C63" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HorizontalScrollingOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2793C16-L2793C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2793C16-L2793C33" }, { "DocsId": "P:System.Windows.Forms.DataGridView.IsCurrentCellDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2856C39-L2856C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2856C39-L2856C84" }, { "DocsId": "P:System.Windows.Forms.DataGridView.IsCurrentCellInEditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2872C12-L2872C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2872C12-L2872C91" }, { "DocsId": "P:System.Windows.Forms.DataGridView.IsCurrentRowDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2880C13-L2888C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2880C13-L2888C36" }, { "DocsId": "P:System.Windows.Forms.DataGridView.MultiSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2996C16-L2996C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L2996C16-L2996C55" }, { "DocsId": "P:System.Windows.Forms.DataGridView.NewRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3018C30-L3018C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3018C30-L3018C34" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3041C16-L3041C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3041C16-L3041C28" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3062C16-L3062C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3062C16-L3062C52" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3177C16-L3177C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3177C16-L3177C26" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3236C16-L3243C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3236C16-L3243C54" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3305C13-L3307C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3305C13-L3307C48" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3345C16-L3345C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3345C16-L3345C61" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowHeadersWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3382C16-L3382C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3382C16-L3382C31" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3454C13-L3454C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3454C13-L3454C45" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Rows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3484C13-L3486C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3484C13-L3486C38" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3497C13-L3503C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3497C13-L3503C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.RowTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3538C13-L3540C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3538C13-L3540C33" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ScrollBars", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3583C16-L3583C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3583C16-L3583C27" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SelectedCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3631C13-L3682C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3631C13-L3682C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SelectedColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3691C13-L3708C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3691C13-L3708C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SelectedRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3717C13-L3734C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3717C13-L3734C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SelectionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3744C16-L3744C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3744C16-L3744C30" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ShowCellErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3775C16-L3775C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3775C16-L3775C58" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ShowCellToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3828C16-L3828C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3828C16-L3828C60" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ShowEditingIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3880C16-L3880C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3880C16-L3880C59" }, { "DocsId": "P:System.Windows.Forms.DataGridView.ShowRowErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3916C16-L3916C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3916C16-L3916C57" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SortedColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3966C47-L3966C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3966C47-L3966C51" }, { "DocsId": "P:System.Windows.Forms.DataGridView.SortOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3969C34-L3969C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3969C34-L3969C38" }, { "DocsId": "P:System.Windows.Forms.DataGridView.StandardTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3977C16-L3977C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3977C16-L3977C55" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3995C16-L3995C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L3995C16-L3995C25" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4013C13-L4014C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4013C13-L4014C43" }, { "DocsId": "P:System.Windows.Forms.DataGridView.Item(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4029C13-L4030C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4029C13-L4030C42" }, { "DocsId": "P:System.Windows.Forms.DataGridView.TopLeftHeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4048C13-L4053C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4048C13-L4053C40" }, { "DocsId": "P:System.Windows.Forms.DataGridView.UserSetCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4079C37-L4081C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4079C37-L4081C17" }, { "DocsId": "P:System.Windows.Forms.DataGridView.VerticalScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4115C46-L4115C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4115C46-L4115C60" }, { "DocsId": "P:System.Windows.Forms.DataGridView.VerticalScrollingOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4119C42-L4119C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4119C42-L4119C46" }, { "DocsId": "P:System.Windows.Forms.DataGridView.VirtualMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4141C16-L4141C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs#L4141C16-L4141C55" }, { "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs" }, { "DocsId": "T:System.Windows.Forms.DataGridView.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" }, { "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L19C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L19C11-L25C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L278C9-L287C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L278C9-L287C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L290C42-L290C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L290C42-L290C88" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L294C9-L294C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L294C9-L294C123" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L299C9-L307C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L299C9-L307C23" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L56C13-L56C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L56C13-L56C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L83C13-L88C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L83C13-L88C28" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L128C13-L133C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L128C13-L133C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L184C13-L189C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L184C13-L189C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L235C13-L235C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs#L235C13-L235C25" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAdvancedBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedBorderStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Inset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Outset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetPartial", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAdvancedCellBorderStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewAutoSizeColumnMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L14C41-L14C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L14C41-L14C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.PreviousMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L16C58-L16C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs#L16C58-L16C62" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnModeEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCellsExceptHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.#ctor(System.Windows.Forms.DataGridViewAutoSizeColumnMode[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs#L13C61-L13C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs#L13C61-L13C65" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeColumnsModeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.PreviousModeAutoSized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs#L13C41-L13C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs#L13C41-L13C45" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeModeEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCellsExceptHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeRowMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeRowsMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewAutoSizeRowsMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewBand.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L37C28-L37C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L37C28-L37C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBand.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L706C9-L708C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L706C9-L708C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBand.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L748C9-L750C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L748C9-L750C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBand.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L754C9-L764C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L754C9-L764C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBand.OnDataGridViewChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L829C9-L842C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L829C9-L842C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBand.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L849C42-L849C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L849C42-L849C81" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L46C13-L51C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L46C13-L51C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L77C13-L84C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L77C13-L84C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L112C13-L117C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L112C13-L117C101" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Displayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L142C13-L142C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L142C13-L142C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L185C13-L185C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L185C13-L185C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.HasDefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L207C40-L207C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L207C40-L207C86" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.HeaderCellCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L220C13-L250C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L220C13-L250C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L324C24-L324C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L324C24-L324C28" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.InheritedStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L327C61-L327C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L327C61-L327C65" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.IsRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L329C29-L329C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L329C29-L329C52" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L387C13-L388C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L387C13-L388C70" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L473C13-L483C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L473C13-L483C115" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L527C13-L527C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L527C13-L527C70" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L588C16-L588C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L588C16-L588C69" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBand.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L673C13-L673C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs#L673C13-L673C69" } ], "DocsId": "T:System.Windows.Forms.DataGridViewBand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBand.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewBindingCompleteEventArgs.#ctor(System.ComponentModel.ListChangedType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs#L10C5-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs#L10C5-L13C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewBindingCompleteEventArgs.ListChangedType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs#L15C46-L15C50" } ], "DocsId": "T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewBindingCompleteEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L34C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L34C5-L36C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L130C9-L144C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L130C9-L144C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L147C74-L147C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L147C74-L147C122" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L151C9-L204C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L151C9-L204C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L216C9-L273C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L216C9-L273C32" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L282C9-L405C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L282C9-L405C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L425C9-L433C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L425C9-L433C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L437C9-L437C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L437C9-L437C68" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L440C9-L440C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L440C9-L440C32" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L443C9-L443C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L443C9-L443C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.MouseEnterUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L446C9-L446C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L446C9-L446C111" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.MouseLeaveUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L449C9-L449C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L449C9-L449C48" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L452C9-L452C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L452C9-L452C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L456C9-L466C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L456C9-L466C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L470C9-L491C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L470C9-L491C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnLeave(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L495C9-L505C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L495C9-L505C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L509C9-L519C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L509C9-L519C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L523C9-L545C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L523C9-L545C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L549C9-L581C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L549C9-L581C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L585C9-L594C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L585C9-L594C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L609C9-L625C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L609C9-L625C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L1008C9-L1008C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L1008C9-L1008C87" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L55C39-L55C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L55C39-L55C43" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L60C16-L60C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L60C16-L60C91" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L86C13-L86C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L86C13-L86C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L91C16-L91C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L91C16-L91C95" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L117C13-L123C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs#L117C13-L123C39" }, { "DocsId": "T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewButtonCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewButtonColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L17C11-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L17C11-L24C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonColumn.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L188C9-L202C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L188C9-L202C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L230C9-L230C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L230C9-L230C69" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L32C16-L32C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L32C16-L32C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L50C16-L50C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L50C16-L50C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonColumn.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L62C13-L67C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L62C13-L67C49" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonColumn.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L104C13-L104C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L104C13-L104C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L150C13-L155C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs#L150C13-L155C67" } ], "DocsId": "T:System.Windows.Forms.DataGridViewButtonColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L64C11-L77C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L64C11-L77C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L82C28-L82C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L82C28-L82C53" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#CanShowToolTipsNow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L281C51-L281C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L281C51-L281C86" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#GetNativeScreenRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L283C62-L283C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L283C62-L283C88" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#GetNeighboringToolsRectangles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L296C9-L322C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L296C9-L322C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#IsHoveredWithMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L325C51-L325C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L325C51-L325C56" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#HasRtlModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L327C50-L327C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L327C50-L327C121" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#AllowsToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L329C46-L329C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L329C46-L329C50" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#GetOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L331C56-L331C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L331C56-L331C68" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#OnHooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L333C56-L333C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L333C56-L333C86" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#OnUnhooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L337C58-L337C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L337C58-L337C90" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#GetCaptionForTool(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L343C9-L348C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L343C9-L348C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#ShowsOwnToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L351C48-L351C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L351C48-L351C52" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#IsBeingTabbedTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L353C48-L353C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L353C48-L353C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.System#Windows#Forms#IKeyboardToolTip#AllowsChildrenToShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L357C61-L357C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L357C61-L357C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.AdjustCellBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L764C9-L818C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L764C9-L818C53" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.BorderWidths(System.Windows.Forms.DataGridViewAdvancedBorderStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L823C9-L869C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L823C9-L869C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.ClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L890C77-L890C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L890C77-L890C82" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L932C9-L934C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L932C9-L934C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1025C84-L1025C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1025C84-L1025C89" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1029C90-L1029C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1029C90-L1029C95" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1033C73-L1033C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1033C73-L1033C115" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DetachEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1040C9-L1093C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1040C9-L1093C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1121C9-L1123C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1121C9-L1123C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1127C9-L1137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1127C9-L1137C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1139C83-L1139C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1139C83-L1139C88" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.EnterUnsharesRow(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1143C86-L1143C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1143C86-L1143C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1286C9-L1384C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1286C9-L1384C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1454C9-L1463C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1454C9-L1463C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1465C119-L1465C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1465C119-L1465C134" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetEditedFormattedValue(System.Int32,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1510C9-L1516C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1510C9-L1516C106" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1526C121-L1526C136" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1526C121-L1526C136" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetErrorText(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1530C9-L1554C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1530C9-L1554C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1583C9-L1667C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1583C9-L1667C31" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetInheritedContextMenuStrip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1714C9-L1757C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1714C9-L1757C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetInheritedState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1763C9-L1856C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1763C9-L1856C22" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1861C9-L2262C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L1861C9-L2262C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2298C33-L2298C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2298C33-L2298C44" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetSize(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2339C9-L2351C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2339C9-L2351C80" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2401C9-L2443C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2401C9-L2443C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2452C9-L2483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2452C9-L2483C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2485C80-L2485C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2485C80-L2485C85" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2490C62-L2490C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2490C62-L2490C67" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.KeyPressUnsharesRow(System.Windows.Forms.KeyPressEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2492C86-L2492C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2492C86-L2492C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2497C78-L2497C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2497C78-L2497C83" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.LeaveUnsharesRow(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2502C86-L2502C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2502C86-L2502C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2513C35-L2519C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2513C35-L2519C24" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2530C9-L2543C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2530C9-L2543C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MeasureTextPreferredSize(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Single,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2554C9-L2589C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2554C9-L2589C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MeasureTextSize(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2599C9-L2609C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2599C9-L2609C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MeasureTextWidth(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2620C9-L2649C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2620C9-L2649C37" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2653C87-L2653C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2653C87-L2653C92" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2658C93-L2658C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2658C93-L2658C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2663C86-L2663C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2663C86-L2663C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseEnterUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2668C67-L2668C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2668C67-L2668C72" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseLeaveUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2673C67-L2673C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2673C67-L2673C72" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2678C86-L2678C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2678C86-L2678C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2683C84-L2683C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2683C84-L2683C89" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2814C5-L2814C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2814C5-L2814C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2837C5-L2837C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2837C5-L2837C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2844C5-L2844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2844C5-L2844C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2851C5-L2851C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2851C5-L2851C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnEnter(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2858C5-L2858C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2858C5-L2858C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2868C5-L2868C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2868C5-L2868C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnKeyPress(System.Windows.Forms.KeyPressEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2875C5-L2875C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2875C5-L2875C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2879C5-L2879C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2879C5-L2879C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnLeave(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2886C5-L2886C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2886C5-L2886C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2893C5-L2893C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2893C5-L2893C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2900C5-L2900C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2900C5-L2900C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2907C5-L2907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2907C5-L2907C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseEnter(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2929C5-L2929C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2929C5-L2929C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2938C5-L2938C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2938C5-L2938C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2963C5-L2963C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L2963C5-L2963C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3009C5-L3009C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3009C5-L3009C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.OnDataGridViewChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3042C9-L3055C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3042C9-L3055C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3070C5-L3070C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3070C5-L3070C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3116C9-L3502C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3116C9-L3502C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.PaintErrorIcon(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3520C9-L3533C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3520C9-L3533C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3691C9-L3696C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3691C9-L3696C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3747C9-L3768C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3747C9-L3768C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.PositionEditingPanel(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3781C9-L3852C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3781C9-L3852C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.SetValue(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3868C9-L3939C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3868C9-L3939C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3958C9-L3958C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L3958C9-L3958C89" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.AccessibilityObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L89C13-L95C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L89C13-L95C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L102C31-L102C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L102C31-L102C56" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ContentBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L105C39-L105C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L105C39-L105C65" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L110C16-L110C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L110C16-L110C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DefaultNewRowValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L140C50-L140C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L140C50-L140C54" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Displayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L147C13-L159C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L147C13-L159C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.EditedFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L169C13-L176C143" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L169C13-L176C143" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L183C38-L183C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L183C38-L183C79" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ErrorIconBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L187C41-L187C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L187C41-L187C69" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L193C16-L193C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L193C16-L193C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.FormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L215C13-L222C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L215C13-L222C117" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L227C48-L227C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L227C48-L227C57" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L255C13-L265C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L255C13-L265C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.HasStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L272C29-L272C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L272C29-L272C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.InheritedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L361C56-L361C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L361C56-L361C83" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.InheritedStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L371C13-L371C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L371C13-L371C56" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.IsInEditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L387C13-L401C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L387C13-L401C57" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.OwningColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L407C47-L407C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L407C47-L407C51" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.OwningRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L411C41-L411C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L411C41-L411C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.PreferredSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L414C34-L414C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L414C34-L414C60" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L424C13-L440C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L424C13-L440C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L499C13-L510C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L499C13-L510C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L518C28-L518C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L518C28-L518C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L526C13-L542C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L526C13-L542C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L583C25-L583C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L583C25-L583C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L614C13-L621C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L614C13-L621C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L650C16-L650C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L650C16-L650C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L659C16-L659C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L659C16-L659C56" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L686C13-L686C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L686C13-L686C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L700C13-L705C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L700C13-L705C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L741C13-L751C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs#L741C13-L751C26" }, { "DocsId": "T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.Raised", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.Sunken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.RaisedVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.RaisedHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellBorderStyle.SunkenHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellCancelEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L15C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L15C5-L22C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L24C30-L24C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L24C30-L24C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L26C27-L26C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs#L26C27-L26C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellCancelEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCancelEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L20C37-L20C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L20C37-L20C66" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L22C27-L22C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L22C27-L22C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L24C43-L24C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L24C43-L24C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L26C41-L26C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L26C41-L26C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L28C52-L28C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L28C52-L28C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L30C41-L30C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L30C41-L30C73" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L32C39-L32C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L32C39-L32C54" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L34C31-L34C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L34C31-L34C58" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L36C30-L36C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L36C30-L36C56" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L40C15-L40C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L40C15-L40C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L41C15-L41C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L41C15-L41C56" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L44C56-L44C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L44C56-L44C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L46C30-L46C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L46C30-L46C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L48C40-L48C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L48C40-L48C76" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L50C36-L50C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L50C36-L50C66" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L52C48-L52C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L52C48-L52C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.#ctor(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L17C5-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L17C5-L58C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.Add(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L158C9-L168C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L158C9-L168C46" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.AddRange(System.Windows.Forms.DataGridViewCell[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L190C9-L231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L190C9-L231C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L235C9-L247C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L235C9-L247C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L251C9-L252C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L251C9-L252C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.Contains(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L259C9-L260C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L259C9-L260C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.IndexOf(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L263C62-L263C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L263C62-L263C94" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L267C9-L282C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L267C9-L282C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L300C9-L301C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L300C9-L301C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.Remove(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L305C9-L329C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L305C9-L329C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L333C9-L339C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L333C9-L339C6" }, { "DocsId": "E:System.Windows.Forms.DataGridViewCellCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L149C16-L149C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L149C16-L149C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L34C31-L34C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L34C31-L34C58" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L36C30-L36C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L36C30-L36C56" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L40C15-L40C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L40C15-L40C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L46C30-L46C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L46C30-L46C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L48C40-L48C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L48C40-L48C76" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L50C36-L50C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L50C36-L50C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L60C42-L60C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L60C42-L60C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L67C16-L67C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L67C16-L67C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L117C13-L128C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs#L117C13-L128C53" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs#L9C11-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs#L9C11-L11C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs#L19C49-L19C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs#L19C49-L19C53" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellContextMenuStripNeededEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellErrorTextNeededEventArgs.cs#L14C31-L14C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellErrorTextNeededEventArgs.cs#L14C31-L14C35" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellErrorTextNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellErrorTextNeededEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L13C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L13C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L22C30-L22C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs#L24C27-L24C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellFormattingEventArgs.#ctor(System.Int32,System.Int32,System.Object,System.Type,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L14C11-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L14C11-L22C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L24C46-L24C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L24C46-L24C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L26C30-L26C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L28C37-L28C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L28C37-L28C41" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L30C27-L30C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs#L30C27-L30C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellFormattingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellFormattingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellMouseEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L14C11-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L14C11-L22C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L24C30-L24C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L24C30-L24C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L26C27-L26C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs#L26C27-L26C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellMouseEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellMouseEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L13C5-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L13C5-L46C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Paint(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L80C9-L105C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L80C9-L105C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintBackground(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L109C9-L140C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L109C9-L140C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintContent(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L144C9-L169C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L144C9-L169C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L54C33-L54C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L54C33-L54C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.AdvancedBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L56C67-L56C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L56C67-L56C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L58C35-L58C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L58C35-L58C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ClipBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L60C35-L60C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L60C35-L60C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L62C27-L62C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L62C27-L62C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L64C30-L64C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L64C30-L64C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L66C46-L66C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L66C46-L66C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L68C28-L68C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L68C28-L68C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.FormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L70C37-L70C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L70C37-L70C41" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L72C32-L72C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L72C32-L72C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L74C47-L74C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L74C47-L74C51" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintParts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L76C48-L76C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs#L76C48-L76C52" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellPaintingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellPaintingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellParsingEventArgs.#ctor(System.Int32,System.Int32,System.Object,System.Type,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L14C11-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L14C11-L19C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellParsingEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L21C27-L21C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L21C27-L21C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L23C30-L23C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L23C30-L23C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L25C56-L25C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L25C56-L25C60" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs#L27C34-L27C38" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellParsingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellParsingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewCell,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.Cell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L14C36-L14C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.StateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs#L16C53-L16C57" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L33C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L33C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.#ctor(System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L39C5-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L39C5-L62C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.ApplyStyle(System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L376C9-L442C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L376C9-L442C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L444C53-L444C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L444C53-L444C62" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L447C9-L447C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L447C9-L447C111" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L486C9-L499C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L486C9-L499C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L535C9-L665C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L535C9-L665C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyle.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L668C34-L668C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L668C34-L668C41" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L69C16-L69C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L69C16-L69C98" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L109C16-L109C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L109C16-L109C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L125C16-L127C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L125C16-L127C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L145C16-L145C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L145C16-L145C62" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L160C16-L160C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L160C16-L160C94" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L178C16-L178C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L178C16-L178C63" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L193C16-L193C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L193C16-L193C127" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.IsDataSourceNullValueDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L210C13-L215C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L210C13-L215C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.IsFormatProviderDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L221C44-L221C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L221C44-L221C89" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.IsNullValueDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L229C13-L234C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L229C13-L234C87" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.NullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L243C16-L243C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L243C16-L243C93" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L263C16-L263C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L263C16-L263C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L309C16-L309C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L309C16-L309C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L323C16-L323C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L323C16-L323C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L338C16-L338C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L338C16-L338C64" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyle.WrapMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L346C16-L346C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs#L346C16-L346C89" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyle.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs#L14C46-L14C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs#L14C46-L14C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyleScope", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs#L16C58-L16C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs#L16C58-L16C73" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleContentChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs#L19C9-L24C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs#L19C9-L24C60" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs#L36C9-L44C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs#L36C9-L44C73" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStyleConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleConverter.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.Cell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.DataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.ColumnHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.RowHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.Rows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewCellStyleScopes.AlternatingRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStyleScopes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellStyleScopes.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellToolTipTextNeededEventArgs.cs#L14C34-L14C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellToolTipTextNeededEventArgs.cs#L14C34-L14C38" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellToolTipTextNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellToolTipTextNeededEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L17C30-L17C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L19C27-L19C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L19C27-L19C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.FormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L21C37-L21C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs#L21C37-L21C41" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellValidatingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValidatingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellValueEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L14C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L14C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L23C30-L23C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L23C30-L23C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L25C27-L25C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L25C27-L25C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCellValueEventArgs.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L27C28-L27C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs#L27C28-L27C32" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellValueEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCellValueEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L40C11-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L40C11-L42C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L44C5-L50C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L44C5-L50C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L125C9-L172C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L125C9-L172C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.PrepareEditingCellForEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L178C5-L178C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L178C5-L178C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L410C9-L426C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L410C9-L426C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L438C85-L438C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L438C85-L438C117" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L440C91-L440C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L440C91-L440C123" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L442C74-L442C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L442C74-L442C124" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L446C9-L493C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L446C9-L493C31" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L508C9-L549C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L508C9-L549C32" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L560C9-L632C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L560C9-L632C20" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L641C9-L754C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L641C9-L754C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L758C9-L758C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L758C9-L758C68" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L760C79-L760C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L760C79-L760C102" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L762C87-L762C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L762C87-L762C116" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseEnterUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L767C9-L767C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L767C9-L767C118" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseLeaveUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L770C68-L770C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L770C68-L770C107" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L772C85-L772C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L772C85-L772C114" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L801C76-L801C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L801C76-L801C99" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L803C82-L803C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L803C82-L803C105" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L807C9-L817C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L807C9-L817C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L821C9-L844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L821C9-L844C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnLeave(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L848C9-L858C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L848C9-L858C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L862C9-L872C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L862C9-L872C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L876C9-L898C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L876C9-L898C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L902C9-L934C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L902C9-L934C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L938C9-L948C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L938C9-L948C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1008C9-L1029C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1008C9-L1029C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1573C9-L1662C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1573C9-L1662C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1700C9-L1700C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L1700C9-L1700C89" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L54C16-L54C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L54C16-L54C86" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L109C16-L109C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L109C16-L109C74" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L202C13-L202C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L202C13-L202C25" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L209C16-L209C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L209C16-L209C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L235C16-L235C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L235C16-L235C81" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L259C48-L259C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L259C48-L259C107" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L264C16-L264C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L264C16-L264C79" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L290C16-L290C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L290C16-L290C72" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L362C16-L362C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L362C16-L362C70" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L392C13-L398C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs#L392C13-L398C80" }, { "DocsId": "T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCheckBoxCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L13C11-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L13C11-L15C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxColumn.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L18C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L18C11-L27C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L316C9-L316C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L316C9-L316C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L33C16-L33C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L33C16-L33C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L53C16-L53C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L53C16-L53C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L66C13-L71C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L66C13-L71C52" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L109C13-L114C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L109C13-L114C51" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L153C13-L158C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L153C13-L158C60" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L196C13-L201C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L196C13-L201C52" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L247C13-L252C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs#L247C13-L252C51" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCheckBoxColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxColumn.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewClipboardCopyMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewClipboardCopyMode.Disable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewClipboardCopyMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewClipboardCopyMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L45C11-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L45C11-L47C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L34C5-L60C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L34C5-L60C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L817C9-L820C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L817C9-L820C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L847C13-L865C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L847C13-L865C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.GetPreferredWidth(System.Windows.Forms.DataGridViewAutoSizeColumnMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L888C9-L1025C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L888C9-L1025C41" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L1029C9-L1029C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L1029C9-L1029C63" }, { "DocsId": "E:System.Windows.Forms.DataGridViewColumn.Disposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L319C16-L319C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L319C16-L319C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L78C16-L78C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L78C16-L78C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L159C53-L159C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L159C53-L159C57" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.CellType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L163C30-L163C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L163C30-L163C53" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L170C16-L170C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L170C16-L170C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.DataPropertyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L183C16-L183C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L183C16-L183C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L202C16-L202C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L202C16-L202C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.DisplayIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L238C16-L238C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L238C16-L238C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.DividerWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L328C16-L328C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L328C16-L328C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.FillWeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L337C16-L337C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L337C16-L337C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L371C16-L371C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L371C16-L371C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.HeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L380C16-L380C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L380C16-L380C60" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.HeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L392C13-L405C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L392C13-L405C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L424C68-L424C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L424C68-L424C106" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.InheritedStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L431C13-L566C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L431C13-L566C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.IsDataBound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L588C32-L588C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L588C32-L588C51" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.MinimumWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L613C16-L613C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L613C16-L613C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L641C13-L646C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L641C13-L646C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L671C16-L671C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L671C16-L671C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L692C16-L692C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L692C16-L692C30" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L698C26-L698C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L698C26-L698C30" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.SortMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L707C13-L717C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L707C13-L717C63" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L764C16-L764C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L764C16-L764C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L791C16-L791C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L791C16-L791C85" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L801C16-L801C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L801C16-L801C28" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumn.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L811C16-L811C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs#L811C16-L811C25" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L27C31-L27C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L27C31-L27C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L29C30-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L29C30-L29C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L33C16-L33C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L33C16-L33C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L34C16-L34C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L34C16-L34C49" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L37C37-L37C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L37C37-L37C68" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L39C27-L39C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L39C27-L39C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L41C43-L41C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L41C43-L41C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L43C41-L43C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L43C41-L43C83" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L45C52-L45C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L45C52-L45C93" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L47C41-L47C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L47C41-L47C75" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L49C39-L49C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L49C39-L49C54" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L53C30-L53C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L53C30-L53C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L55C40-L55C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L55C40-L55C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L57C36-L57C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L57C36-L57C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L59C56-L59C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L59C56-L59C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L63C48-L63C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L63C48-L63C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.#ctor(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L18C5-L70C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L18C5-L70C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L131C9-L137C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L131C9-L137C47" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Add(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L146C9-L171C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L146C9-L171C22" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.AddRange(System.Windows.Forms.DataGridViewColumn[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L176C9-L263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L176C9-L263C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L267C9-L312C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L267C9-L312C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L331C76-L331C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L331C76-L331C116" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L335C9-L348C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L335C9-L348C22" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L353C9-L354C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L353C9-L354C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetColumnCount(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L410C9-L470C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L410C9-L470C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetColumnsWidth(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L549C9-L594C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L549C9-L594C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L599C9-L625C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L599C9-L625C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L632C9-L670C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L632C9-L670C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetLastColumn(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L677C9-L710C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L677C9-L710C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetNextColumn(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L718C9-L783C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L718C9-L783C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.GetPreviousColumn(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L791C9-L856C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L791C9-L856C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.IndexOf(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L859C66-L859C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L859C66-L859C100" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L867C9-L907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L867C9-L907C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L953C80-L953C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L953C80-L953C117" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Remove(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L989C9-L1010C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L989C9-L1010C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L1014C9-L1028C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L1014C9-L1028C132" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L1033C9-L1052C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L1033C9-L1052C6" }, { "DocsId": "E:System.Windows.Forms.DataGridViewColumnCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L109C16-L109C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L109C16-L109C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L27C31-L27C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L27C31-L27C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L29C30-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L29C30-L29C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L33C16-L33C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L33C16-L33C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L53C30-L53C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L53C30-L53C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L55C40-L55C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L55C40-L55C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L57C36-L57C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L57C36-L57C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L74C42-L74C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L74C42-L74C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.DataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L76C43-L76C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L76C43-L76C47" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L81C50-L81C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L81C50-L81C63" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L90C13-L103C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs#L90C13-L103C25" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L9C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L9C5-L11C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L13C5-L13C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L13C5-L13C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L24C9-L24C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L24C9-L24C111" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L26C42-L26C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L26C42-L26C121" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.IsDefaultAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L28C50-L28C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L28C50-L28C76" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Yes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.No", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L15C27-L15C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs#L15C27-L15C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDesignTimeVisibleAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.#ctor(System.Int32,System.Windows.Forms.HandledMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs#L9C11-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs#L9C11-L15C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs#L17C30-L17C34" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnDividerDoubleClickEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs#L8C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs#L8C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs#L16C40-L16C44" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L34C5-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L34C5-L56C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L98C9-L111C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L98C9-L111C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L115C9-L115C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L115C9-L115C63" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L125C9-L206C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L125C9-L206C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L213C9-L263C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L213C9-L263C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedContextMenuStrip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L268C9-L272C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L268C9-L272C67" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L277C9-L473C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L277C9-L473C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L482C9-L702C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L482C9-L702C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L707C9-L708C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L707C9-L708C110" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L724C9-L737C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L724C9-L737C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.SetValue(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L1190C9-L1199C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L1190C9-L1199C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L1202C42-L1202C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L1202C42-L1202C105" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L63C16-L63C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs#L63C16-L63C35" }, { "DocsId": "T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnHeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeadersHeightSizeMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewColumnSortMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnSortMode.NotSortable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnSortMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnSortMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L8C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L8C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L16C40-L16C44" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.StateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L18C53-L18C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs#L18C53-L18C57" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L62C5-L77C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L62C5-L77C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L86C74-L86C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L86C74-L86C124" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L636C9-L664C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L636C9-L664C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.DetachEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L711C9-L726C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L711C9-L726C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L730C9-L787C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L730C9-L787C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L833C9-L890C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L833C9-L890C32" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L901C9-L1030C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L901C9-L1030C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1165C9-L1223C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1165C9-L1223C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1253C9-L1334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1253C9-L1334C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1509C9-L1521C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1509C9-L1521C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnDataGridViewChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1606C9-L1614C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1606C9-L1614C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnEnter(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1618C9-L1627C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1618C9-L1627C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnLeave(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1650C9-L1656C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1650C9-L1656C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1660C9-L1683C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1660C9-L1683C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseEnter(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1687C9-L1698C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1687C9-L1698C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1702C9-L1725C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1702C9-L1725C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1729C9-L1801C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1729C9-L1801C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1822C9-L1839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L1822C9-L1839C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L2379C9-L2424C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L2379C9-L2424C37" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L2438C42-L2438C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L2438C42-L2438C122" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L91C16-L91C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L91C16-L91C78" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L132C16-L132C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L132C16-L132C82" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L199C16-L199C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L199C16-L199C82" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L233C16-L233C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L233C16-L233C125" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L269C16-L269C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L269C16-L269C100" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L318C16-L318C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L318C16-L318C80" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L341C38-L341C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L341C38-L341C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L346C16-L346C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L346C16-L346C93" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L368C48-L368C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L368C48-L368C75" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L373C46-L373C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L373C46-L373C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L378C16-L378C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L378C16-L378C105" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L412C16-L412C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L412C16-L412C72" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ValueMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L455C16-L455C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L455C16-L455C80" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L490C13-L506C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs#L490C13-L506C43" }, { "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L18C11-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L18C11-L21C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxColumn.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L496C9-L510C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L496C9-L510C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L541C9-L541C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L541C9-L541C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L32C13-L37C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L32C13-L37C54" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L69C16-L69C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L69C16-L69C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L95C13-L100C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L95C13-L100C52" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L141C13-L146C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L141C13-L146C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L184C13-L189C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L184C13-L189C54" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L228C13-L233C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L228C13-L233C72" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L272C13-L277C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L272C13-L277C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L313C13-L318C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L313C13-L318C51" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L356C13-L361C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L356C13-L361C64" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L376C13-L381C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L376C13-L381C53" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L419C13-L424C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L419C13-L424C58" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxColumn.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L460C13-L465C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs#L460C13-L465C48" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxColumn.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.Nothing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxDisplayStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L14C51-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L14C51-L17C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L21C9-L23C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L21C9-L23C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L73C9-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L73C9-L87C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L91C9-L100C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L91C9-L100C43" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L103C101-L103C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L103C101-L103C105" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.PrepareEditingControlForEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L107C9-L111C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L107C9-L111C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxEditingControl.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L121C9-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L121C9-L126C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L30C13-L30C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L30C13-L30C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L41C16-L41C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L41C16-L41C89" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L57C16-L57C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L57C16-L57C25" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L63C16-L63C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L63C16-L63C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingPanelCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L67C49-L67C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L67C49-L67C64" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxEditingControl.RepositionEditingControlOnValueChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L69C66-L69C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs#L69C66-L69C71" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxEditingControl.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.NotSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.TopCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.BottomCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewContentAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewContentAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewContentAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.Formatting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.Display", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.PreferredSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.RowDeletion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.Parsing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.InitialValueRestoration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.LeaveControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.CurrentCellChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewDataErrorContexts.ClipboardContent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewDataErrorContexts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorContexts.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewDataErrorEventArgs.#ctor(System.Exception,System.Int32,System.Int32,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L15C11-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L15C11-L19C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewDataErrorEventArgs.Context", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L21C52-L21C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L21C52-L21C56" }, { "DocsId": "P:System.Windows.Forms.DataGridViewDataErrorEventArgs.Exception", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L23C35-L23C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L23C35-L23C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L28C16-L28C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs#L28C16-L28C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewDataErrorEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewDataErrorEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.#ctor(System.Windows.Forms.Control,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L10C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L10C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L16C30-L16C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L20C16-L20C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs#L20C16-L20C26" } ], "DocsId": "T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditingControlShowingEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.EditOnEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystroke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.EditOnF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewEditMode.EditProgrammatically", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewEditMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEditMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewElement.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L18C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L18C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.OnDataGridViewChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L76C5-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L76C5-L76C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseCellClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L80C9-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L80C9-L81C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L85C9-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L85C9-L86C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L90C9-L91C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L90C9-L91C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L95C9-L96C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L95C9-L96C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseDataError(System.Windows.Forms.DataGridViewDataErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L100C9-L101C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L100C9-L101C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewElement.RaiseMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L105C9-L106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L105C9-L106C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewElement.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L47C54-L47C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L47C54-L47C58" }, { "DocsId": "P:System.Windows.Forms.DataGridViewElement.DataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L63C16-L63C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs#L63C16-L63C29" } ], "DocsId": "T:System.Windows.Forms.DataGridViewElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElement.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.Displayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.ResizableSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewElementStates.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewElementStates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewElementStates.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewAutoSizeModeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewBindingCompleteEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBindingCompleteEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewBindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBindingCompleteEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewBindingCompleteEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewBindingCompleteEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewBindingCompleteEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellCancelEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCancelEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCancelEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellCancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellCancelEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellCancelEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellFormattingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellFormattingEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellFormattingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellFormattingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellFormattingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellFormattingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellFormattingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellMouseEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellMouseEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellMouseEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellMouseEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellMouseEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellMouseEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellPaintingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellPaintingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellPaintingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellPaintingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellParsingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellParsingEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellParsingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellParsingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellParsingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellParsingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellParsingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellStateChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStateChangedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStateChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellStateChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStateChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStateChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellValidatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValidatingEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellValidatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValidatingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellValidatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValidatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellValidatingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCellValueEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValueEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewCellValueEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValueEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewCellValueEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCellValueEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCellValueEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewColumnEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewColumnEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewColumnStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewColumnStateChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewEditingControlShowingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewEditingControlShowingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewDataErrorEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewDataErrorEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewDataErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewDataErrorEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewDataErrorEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewDataErrorEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewDataErrorEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowCancelEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCancelEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCancelEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowCancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCancelEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowCancelEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowPostPaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowPostPaintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowPostPaintEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowPrePaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowPrePaintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowPrePaintEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowsAddedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsAddedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowsAddedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsAddedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowsAddedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsAddedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowsAddedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowsRemovedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsRemovedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowsRemovedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsRemovedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowsRemovedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowsRemovedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowsRemovedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowStateChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowStateChangedEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewRowStateChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowStateChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewRowStateChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowStateChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowStateChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewSortCompareEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSortCompareEventHandler.Invoke(System.Object,System.Windows.Forms.DataGridViewSortCompareEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSortCompareEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DataGridViewSortCompareEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSortCompareEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSortCompareEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewEventHandlers.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHeaderBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewHeaderBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L25C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L25C5-L27C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L37C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L37C9-L48C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L193C9-L205C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L193C9-L205C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.GetInheritedContextMenuStrip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L210C9-L222C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L210C9-L222C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.GetInheritedState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L228C9-L339C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L228C9-L339C22" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.GetSize(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L344C9-L377C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L344C9-L377C93" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L424C9-L425C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L424C9-L425C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L429C9-L429C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L429C9-L429C113" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.MouseEnterUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L432C9-L435C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L432C9-L435C59" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.MouseLeaveUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L438C9-L438C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L438C9-L438C117" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L441C9-L441C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L441C9-L441C113" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L445C9-L456C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L445C9-L456C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseEnter(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L460C9-L478C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L460C9-L478C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L482C9-L499C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L482C9-L499C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L503C9-L512C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L503C9-L512C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L527C9-L553C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L527C9-L553C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewHeaderCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L559C12-L559C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L559C12-L559C90" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.ButtonState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L31C16-L31C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L31C16-L31C83" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.Displayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L55C13-L74C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L55C13-L74C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L84C48-L84C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L84C48-L84C75" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L91C13-L110C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L91C13-L110C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L120C16-L120C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L120C16-L120C20" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L129C13-L143C243" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L129C13-L143C243" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L151C16-L151C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L151C16-L151C21" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L157C16-L157C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L157C16-L157C88" }, { "DocsId": "P:System.Windows.Forms.DataGridViewHeaderCell.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L166C13-L186C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs#L166C13-L186C26" } ], "DocsId": "T:System.Windows.Forms.DataGridViewHeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHeaderCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.Cell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.RowHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.TopLeftHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.HorizontalScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewHitTestType.VerticalScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewHitTestType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewHitTestType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L26C11-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L26C11-L28C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L30C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L30C5-L36C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L205C9-L220C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L205C9-L220C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L223C74-L223C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L223C74-L223C121" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L227C9-L282C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L227C9-L282C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L289C9-L347C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L289C9-L347C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L358C9-L391C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L358C9-L391C24" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L401C9-L536C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L401C9-L536C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L541C9-L565C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L541C9-L565C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L690C9-L706C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L690C9-L706C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L908C42-L908C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L908C42-L908C119" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.DefaultNewRowValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L42C13-L52C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L42C13-L52C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L61C16-L61C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L61C16-L61C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L71C13-L71C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L71C13-L71C25" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L84C13-L90C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L84C13-L90C43" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.ImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L98C16-L98C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L98C16-L98C103" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.ValueIsIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L123C16-L123C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L123C16-L123C52" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L179C13-L192C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs#L179C13-L192C43" }, { "DocsId": "T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewImageCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewImageCellLayout.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewImageCellLayout.NotSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewImageCellLayout.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewImageCellLayout.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewImageCellLayout.Zoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewImageCellLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCellLayout.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewImageColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L18C11-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L18C11-L20C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageColumn.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L23C11-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L23C11-L34C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageColumn.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L239C9-L254C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L239C9-L254C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L292C9-L292C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L292C9-L292C68" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L40C16-L40C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L40C16-L40C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L58C16-L58C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L58C16-L58C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L72C13-L77C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L72C13-L77C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L110C16-L110C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L110C16-L110C21" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L123C16-L123C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L123C16-L123C22" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.ImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L141C13-L152C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L141C13-L152C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L189C13-L194C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs#L189C13-L194C50" } ], "DocsId": "T:System.Windows.Forms.DataGridViewImageColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L39C5-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L39C5-L41C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L365C9-L413C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L365C9-L413C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L418C74-L418C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L418C74-L418C120" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L422C9-L477C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L422C9-L477C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L489C9-L530C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L489C9-L530C32" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L539C9-L664C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L539C9-L664C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L669C9-L677C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L669C9-L677C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L682C9-L688C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L682C9-L688C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L693C9-L693C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L693C9-L693C53" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.MouseLeaveUnsharesRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L696C9-L696C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L696C9-L696C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L700C9-L715C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L700C9-L715C22" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L719C9-L719C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L719C9-L719C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L723C9-L744C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L723C9-L744C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L748C9-L760C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L748C9-L760C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.OnMouseLeave(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L764C9-L782C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L764C9-L782C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L786C9-L817C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L786C9-L817C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L821C9-L830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L821C9-L830C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L845C9-L861C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L845C9-L861C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L1088C9-L1088C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L1088C9-L1088C85" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L47C13-L58C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L47C13-L58C96" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.EditType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L108C13-L108C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L108C13-L108C25" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L112C49-L112C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L112C49-L112C76" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.LinkBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L117C16-L117C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L117C16-L117C100" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L155C13-L166C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L155C13-L166C90" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.LinkVisited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L212C16-L212C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L212C16-L212C47" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L241C16-L241C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L241C16-L241C83" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L272C16-L272C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L272C16-L272C91" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L292C13-L303C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L292C13-L303C97" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L360C39-L360C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs#L360C39-L360C75" }, { "DocsId": "T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewLinkCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewLinkColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L18C11-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L18C11-L20C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkColumn.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L370C9-L384C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L370C9-L384C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L388C9-L388C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L388C9-L388C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L31C13-L36C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L31C13-L36C53" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L80C16-L80C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L80C16-L80C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L100C13-L105C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L100C13-L105C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L142C13-L147C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L142C13-L147C47" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L192C16-L192C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L192C16-L192C21" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L237C13-L242C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L237C13-L242C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L280C13-L285C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L280C13-L285C63" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L322C13-L327C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs#L322C13-L327C54" } ], "DocsId": "T:System.Windows.Forms.DataGridViewLinkColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkColumn.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.Background", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.Border", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.ContentBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.ContentForeground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.ErrorIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewPaintParts.SelectionBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewPaintParts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewPaintParts.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRow.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L30C32-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L30C32-L34C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.AdjustRowHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L362C9-L595C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L362C9-L595C53" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1044C9-L1072C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1044C9-L1072C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1094C9-L1094C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1094C9-L1094C58" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1099C9-L1120C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1099C9-L1120C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1124C9-L1131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1124C9-L1131C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.CreateCellsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1140C9-L1140C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1140C9-L1140C53" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DrawFocus(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewCellStyle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1183C9-L1202C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1183C9-L1202C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.GetContextMenuStrip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1206C9-L1223C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1206C9-L1223C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.GetErrorText(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1233C9-L1257C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1233C9-L1257C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.GetPreferredHeight(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1280C9-L1335C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1280C9-L1335C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.GetState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1369C9-L1386C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1369C9-L1386C60" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1418C9-L1481C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1418C9-L1481C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.PaintCells(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1494C9-L1674C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1494C9-L1674C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1687C9-L1731C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1687C9-L1731C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.SetValues(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1774C9-L1789C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1774C9-L1789C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1822C9-L1822C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L1822C9-L1822C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.AccessibilityObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L41C13-L47C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L41C13-L47C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Cells", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L53C48-L53C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L53C48-L53C83" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L60C16-L60C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L60C16-L60C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataBoundItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L70C13-L80C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L70C13-L80C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L93C16-L93C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L93C16-L93C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Displayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L110C13-L115C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L110C13-L115C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DividerHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L125C16-L125C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L125C16-L125C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L146C13-L146C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L146C13-L146C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Frozen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L181C13-L186C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L181C13-L186C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.HeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L206C16-L206C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L206C16-L206C57" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L215C16-L215C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L215C16-L215C25" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.InheritedStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L231C13-L238C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L231C13-L238C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.IsNewRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L248C16-L248C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L248C16-L248C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.MinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L255C16-L255C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L255C16-L255C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L276C13-L281C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L276C13-L281C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Resizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L293C13-L298C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L293C13-L298C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L307C13-L312C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L307C13-L312C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L321C13-L326C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L321C13-L326C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L335C13-L340C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs#L335C13-L340C38" }, { "DocsId": "T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowCancelEventArgs.#ctor(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs#L10C5-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs#L10C5-L13C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCancelEventArgs.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs#L15C35-L15C39" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowCancelEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCancelEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L39C37-L39C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L39C37-L39C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L41C27-L41C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L41C27-L41C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L43C43-L43C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L43C43-L43C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L45C41-L45C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L45C41-L45C80" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L47C52-L47C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L47C52-L47C90" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L49C41-L49C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L49C41-L49C72" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L51C39-L51C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L51C39-L51C54" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L53C31-L53C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L53C31-L53C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L55C30-L55C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L55C30-L55C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L59C16-L59C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L59C16-L59C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L60C16-L60C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L60C16-L60C49" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L67C9-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L67C9-L68C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L70C30-L70C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L70C30-L70C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L72C40-L72C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L72C40-L72C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L74C36-L74C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L74C36-L74C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L78C48-L78C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L78C48-L78C80" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.#ctor(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L80C5-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L80C5-L87C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.SharedRow(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L112C55-L112C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L112C55-L112C75" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Add", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L177C9-L187C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L177C9-L187C57" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L275C9-L292C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L275C9-L292C51" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L300C9-L315C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L300C9-L315C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L323C9-L377C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L323C9-L377C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.AddCopy(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L462C9-L472C166" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L462C9-L472C166" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.AddCopies(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L533C9-L543C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L533C9-L543C54" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.AddRange(System.Windows.Forms.DataGridViewRow[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L714C9-L783C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L714C9-L783C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L787C9-L807C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L787C9-L807C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Contains(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L844C9-L844C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L844C9-L844C54" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L849C9-L850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L849C9-L850C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L880C9-L919C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L880C9-L919C52" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L925C9-L975C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L925C9-L975C52" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetLastRow(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L980C9-L1019C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L980C9-L1019C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetNextRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1039C9-L1053C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1039C9-L1053C52" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetNextRow(System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1060C9-L1085C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1060C9-L1085C52" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1090C9-L1104C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1090C9-L1104C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1111C9-L1136C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1111C9-L1136C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1141C9-L1198C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1141C9-L1198C25" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetRowsHeight(System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1237C9-L1284C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1237C9-L1284C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.GetRowState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1329C9-L1342C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1329C9-L1342C55" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.IndexOf(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1348C9-L1348C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1348C9-L1348C48" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1355C9-L1370C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1355C9-L1370C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1377C9-L1388C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1377C9-L1388C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1392C9-L1450C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1392C9-L1450C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.InsertCopy(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1562C9-L1563C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1562C9-L1563C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.InsertCopies(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1567C9-L1578C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1567C9-L1578C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.InsertRange(System.Int32,System.Windows.Forms.DataGridViewRow[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1751C9-L1833C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1751C9-L1833C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1903C9-L1904C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L1903C9-L1904C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.Remove(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L2144C9-L2159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L2144C9-L2159C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L2163C9-L2205C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L2163C9-L2205C6" }, { "DocsId": "E:System.Windows.Forms.DataGridViewRowCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L170C16-L170C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L170C16-L170C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L53C31-L53C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L53C31-L53C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L55C30-L55C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L55C30-L55C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L59C16-L59C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L59C16-L59C27" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L70C30-L70C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L70C30-L70C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L72C40-L72C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L72C40-L72C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L74C36-L74C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L74C36-L74C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L89C25-L89C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L89C25-L89C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L99C13-L106C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L99C13-L106C46" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.DataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L114C44-L114C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L114C44-L114C57" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L123C13-L163C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs#L123C13-L163C40" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L8C5-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L8C5-L13C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L21C27-L21C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L21C27-L21C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L23C49-L23C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs#L23C49-L23C53" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowContextMenuStripNeededEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.#ctor(System.Int32,System.Windows.Forms.HandledMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs#L9C11-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs#L9C11-L14C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs#L16C27-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs#L16C27-L16C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowDividerDoubleClickEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs#L15C27-L15C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs#L15C27-L15C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs#L17C31-L17C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs#L17C31-L17C35" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowErrorTextNeededEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowEventArgs.#ctor(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowEventArgs.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs#L13C34-L13C38" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L33C5-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L33C5-L35C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L54C9-L67C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L54C9-L67C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L71C9-L71C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L71C9-L71C60" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L94C9-L178C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L94C9-L178C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L185C9-L239C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L185C9-L239C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L244C9-L284C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L244C9-L284C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorText(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L288C9-L290C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L288C9-L290C47" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedContextMenuStrip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L294C9-L302C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L294C9-L302C67" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L309C9-L498C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L309C9-L498C38" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L512C9-L557C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L512C9-L557C20" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L564C9-L570C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L564C9-L570C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L586C9-L602C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L586C9-L602C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.SetValue(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L1059C9-L1067C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L1059C9-L1067C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L1073C9-L1073C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs#L1073C9-L1073C63" }, { "DocsId": "T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToFirstHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeadersWidthSizeMode.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L18C27-L18C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L18C27-L18C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L22C16-L22C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L22C16-L22C23" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L38C16-L38C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs#L38C16-L38C30" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoNeededEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L18C27-L18C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L18C27-L18C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L20C25-L20C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L20C25-L20C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.MinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs#L22C32-L22C36" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeightInfoPushedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L12C5-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L12C5-L34C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L64C9-L77C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L64C9-L77C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L81C9-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L81C9-L95C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L99C9-L119C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L99C9-L119C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L123C9-L137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L123C9-L137C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L141C9-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L141C9-L148C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L152C9-L166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L152C9-L166C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L44C32-L44C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L44C32-L44C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L46C35-L46C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L46C35-L46C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L48C34-L48C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L48C34-L48C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L50C27-L50C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L50C27-L50C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L52C46-L52C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L52C46-L52C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L54C32-L54C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L54C32-L54C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.InheritedRowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L56C54-L56C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L56C54-L56C58" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsFirstDisplayedRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L58C39-L58C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L58C39-L58C43" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsLastVisibleRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L60C36-L60C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs#L60C36-L60C40" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPostPaintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L14C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L14C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L81C9-L94C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L81C9-L94C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L98C9-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L98C9-L112C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L116C9-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L116C9-L136C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L140C9-L154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L140C9-L154C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L158C9-L165C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L158C9-L165C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L169C9-L183C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L169C9-L183C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L47C32-L47C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L47C32-L47C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L49C35-L49C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L49C35-L49C39" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L51C34-L51C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L51C34-L51C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L53C27-L53C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L53C27-L53C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L55C46-L55C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L55C46-L55C50" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L57C32-L57C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L57C32-L57C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.InheritedRowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L59C54-L59C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L59C54-L59C58" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsFirstDisplayedRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L61C39-L61C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L61C39-L61C43" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsLastVisibleRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L63C36-L63C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L63C36-L63C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L67C16-L67C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs#L67C16-L67C27" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowPrePaintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowsAddedEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L14C27-L14C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L14C27-L14C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L16C27-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs#L16C27-L16C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowsAddedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsAddedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L8C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L8C5-L15C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L17C27-L17C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L17C27-L17C31" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L19C27-L19C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs#L19C27-L19C31" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowsRemovedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewRow,System.Windows.Forms.DataGridViewElementStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L14C34-L14C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L14C34-L14C38" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.StateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs#L16C53-L16C57" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L20C9-L20C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L20C9-L20C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L25C9-L25C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L25C9-L25C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L28C43-L28C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L28C43-L28C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L30C41-L30C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L30C41-L30C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L34C9-L34C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L34C9-L34C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L39C9-L39C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L39C9-L39C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L44C9-L44C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L44C9-L44C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L47C31-L47C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L49C30-L49C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L53C15-L53C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L53C15-L53C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L54C15-L54C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L54C15-L54C83" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L57C56-L57C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L57C56-L57C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L59C30-L59C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L59C30-L59C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L61C40-L61C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L61C40-L61C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L63C36-L63C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L63C36-L63C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L65C48-L65C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L65C48-L65C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L112C9-L112C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L112C9-L112C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.Contains(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L118C64-L118C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L118C64-L118C106" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L120C64-L120C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L120C64-L120C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedCellCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L125C9-L125C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L125C9-L125C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L47C31-L47C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L49C30-L49C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L53C15-L53C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L53C15-L53C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L59C30-L59C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L59C30-L59C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L61C40-L61C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L61C40-L61C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L63C36-L63C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L63C36-L63C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L75C13-L75C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L75C13-L75C46" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedCellCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L83C13-L83C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs#L83C13-L83C34" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSelectedCellCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedCellCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L16C9-L16C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L16C9-L16C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L21C9-L21C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L21C9-L21C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L24C43-L24C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L24C43-L24C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L26C41-L26C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L26C41-L26C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L30C9-L30C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L30C9-L30C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L35C9-L35C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L35C9-L35C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L40C9-L40C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L40C9-L40C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L43C31-L43C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L43C31-L43C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L45C30-L45C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L45C30-L45C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L49C15-L49C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L49C15-L49C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L50C15-L50C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L50C15-L50C83" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L53C56-L53C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L53C56-L53C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L55C30-L55C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L55C30-L55C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L57C40-L57C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L57C40-L57C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L59C36-L59C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L59C36-L59C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L61C48-L61C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L61C48-L61C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L79C9-L79C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L79C9-L79C77" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L85C68-L85C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L85C68-L85C112" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L87C66-L87C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L87C66-L87C93" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewColumn)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L92C9-L92C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L92C9-L92C77" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L43C31-L43C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L43C31-L43C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L45C30-L45C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L45C30-L45C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L49C15-L49C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L49C15-L49C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L55C30-L55C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L55C30-L55C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L57C40-L57C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L57C40-L57C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L59C36-L59C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L59C36-L59C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L67C42-L67C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L67C42-L67C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedColumnCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L69C50-L69C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs#L69C50-L69C63" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSelectedColumnCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedColumnCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L18C37-L18C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L18C37-L18C104" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L20C27-L20C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L20C27-L20C94" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L22C43-L22C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L22C43-L22C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L24C41-L24C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L24C41-L24C71" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L26C52-L26C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L26C52-L26C119" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L28C41-L28C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L28C41-L28C108" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L30C39-L30C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L30C39-L30C106" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L32C31-L32C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L32C31-L32C35" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L34C30-L34C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L34C30-L34C34" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L38C15-L38C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L38C15-L38C36" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L39C15-L39C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L39C15-L39C83" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L42C56-L42C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L42C56-L42C98" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L44C30-L44C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L44C30-L44C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L46C40-L46C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L46C40-L46C45" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L48C36-L48C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L48C36-L48C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L50C48-L50C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L50C48-L50C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L66C28-L66C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L66C28-L66C95" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.Contains(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L71C62-L71C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L71C62-L71C103" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L73C63-L73C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L73C63-L73C90" }, { "DocsId": "M:System.Windows.Forms.DataGridViewSelectedRowCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L76C71-L76C138" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L76C71-L76C138" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L32C31-L32C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L32C31-L32C35" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L34C30-L34C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L34C30-L34C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L38C15-L38C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L38C15-L38C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L44C30-L44C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L44C30-L44C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L46C40-L46C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L46C40-L46C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L48C36-L48C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L48C36-L48C40" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L56C42-L56C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L56C42-L56C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSelectedRowCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L58C47-L58C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs#L58C47-L58C60" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSelectedRowCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectedRowCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.CellSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSelectionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSelectionMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewSortCompareEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Object,System.Object,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L10C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L10C5-L24C6" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L26C33-L26C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L26C33-L26C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L28C33-L28C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L28C33-L28C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L30C40-L30C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L30C40-L30C44" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L32C28-L32C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L32C28-L32C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L34C28-L34C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L34C28-L34C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L36C29-L36C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs#L36C29-L36C33" } ], "DocsId": "T:System.Windows.Forms.DataGridViewSortCompareEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewSortCompareEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L36C5-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L36C5-L38C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L47C74-L47C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L47C74-L47C123" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L103C9-L115C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L103C9-L115C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.DetachEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L121C9-L135C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L121C9-L135C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L258C9-L313C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L258C9-L313C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L325C9-L382C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L325C9-L382C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L391C9-L502C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L391C9-L502C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L510C9-L527C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L510C9-L527C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L531C9-L541C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L531C9-L541C42" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.OnEnter(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L546C9-L555C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L546C9-L555C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.OnLeave(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L559C9-L565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L559C9-L565C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L569C9-L587C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L569C9-L587C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L608C9-L629C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L608C9-L629C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L791C9-L802C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L791C9-L802C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L805C12-L805C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L805C12-L805C91" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxCell.FormattedValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L60C13-L60C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L60C13-L60C48" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L67C16-L67C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L67C16-L67C100" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxCell.ValueType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L84C13-L90C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs#L84C13-L90C39" }, { "DocsId": "T:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTextBoxCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L14C42-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L14C42-L17C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxColumn.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L86C9-L86C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L86C9-L86C70" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L23C16-L23C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L23C16-L23C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L43C13-L48C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L43C13-L48C55" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxColumn.SortMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L79C16-L79C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs#L79C16-L79C29" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTextBoxColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L17C50-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L17C50-L20C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L24C9-L26C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L24C9-L26C40" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L96C9-L120C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L96C9-L120C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L124C9-L207C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L124C9-L207C43" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L212C9-L212C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L212C9-L212C21" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.PrepareEditingControlForEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L217C9-L227C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L217C9-L227C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L238C9-L239C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L238C9-L239C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L243C9-L247C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L243C9-L247C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxEditingControl.ProcessKeyEventArgs(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L251C9-L284C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L251C9-L284C48" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L33C13-L33C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L33C13-L33C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L46C13-L46C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L46C13-L46C94" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L58C13-L58C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L58C13-L58C30" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L70C13-L70C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L70C13-L70C34" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingPanelCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L82C13-L82C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L82C13-L82C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTextBoxEditingControl.RepositionEditingControlOnValueChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L90C13-L90C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs#L90C13-L90C45" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTextBoxEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxEditingControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L17C5-L19C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L23C9-L23C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L23C9-L23C72" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L28C9-L80C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L28C9-L80C30" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L85C9-L131C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L85C9-L131C28" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L136C9-L162C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L136C9-L162C20" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L178C9-L194C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L178C9-L194C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L363C9-L394C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L363C9-L394C6" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L396C42-L396C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs#L396C42-L396C73" }, { "DocsId": "T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTopLeftHeaderCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridViewTriState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewTriState.NotSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewTriState.True", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridViewTriState.False", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTriState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTriState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridColumnStyleEditingNotificationService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridColumnStyleEditingNotificationService.cs" } ], "DocsId": "T:System.Windows.Forms.IDataGridColumnStyleEditingNotificationService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridColumnStyleEditingNotificationService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridColumnStyleEditingNotificationService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" }, { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingCell.PrepareEditingCellForEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" } ], "DocsId": "T:System.Windows.Forms.IDataGridViewEditingCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "M:System.Windows.Forms.IDataGridViewEditingControl.PrepareEditingControlForEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.EditingPanelCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "DocsId": "P:System.Windows.Forms.IDataGridViewEditingControl.RepositionEditingControlOnValueChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" } ], "DocsId": "T:System.Windows.Forms.IDataGridViewEditingControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/IDataGridViewEditingControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QuestionEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L8C5-L10C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L8C5-L10C6" }, { "DocsId": "M:System.Windows.Forms.QuestionEventArgs.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L12C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L12C5-L15C6" }, { "DocsId": "P:System.Windows.Forms.QuestionEventArgs.Response", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L17C28-L17C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs#L17C28-L17C32" } ], "DocsId": "T:System.Windows.Forms.QuestionEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QuestionEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QuestionEventHandler.Invoke(System.Object,System.Windows.Forms.QuestionEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QuestionEventHandler.BeginInvoke(System.Object,System.Windows.Forms.QuestionEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QuestionEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.QuestionEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/QuestionEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DateTimePicker.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L74C5-L124C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L74C5-L124C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L950C74-L950C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L950C74-L950C114" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L957C9-L991C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L957C9-L991C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.DestroyHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L998C9-L1000C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L998C9-L1000C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1030C9-L1038C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1030C9-L1038C42" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnCloseUp(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1047C9-L1058C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1047C9-L1058C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnDropDown(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1065C9-L1076C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1065C9-L1076C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnFormatChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1080C9-L1084C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1080C9-L1084C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1088C9-L1096C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1088C9-L1096C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1103C9-L1105C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1103C9-L1105C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1112C9-L1114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1112C9-L1114C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1118C9-L1131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1118C9-L1131C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1138C9-L1154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1138C9-L1154C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1159C9-L1170C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1159C9-L1170C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1174C9-L1186C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1174C9-L1186C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1430C42-L1430C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1430C42-L1430C80" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.OnSystemColorsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1522C9-L1524C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1522C9-L1524C6" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1551C9-L1573C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L1551C9-L1573C6" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L138C16-L138C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L138C16-L138C46" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L154C16-L154C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L154C16-L154C52" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L170C16-L170C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L170C16-L170C58" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L379C16-L379C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L379C16-L379C35" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L465C16-L465C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L465C16-L465C41" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L503C16-L503C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L503C16-L503C46" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.FormatChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L535C16-L535C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L535C16-L535C62" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L547C16-L547C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L547C16-L547C35" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L701C16-L701C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L701C16-L701C40" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L709C16-L709C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L709C16-L709C46" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L726C16-L726C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L726C16-L726C44" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L842C16-L842C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L842C16-L842C41" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.CloseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L916C16-L916C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L916C16-L916C35" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L924C16-L924C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L924C16-L924C52" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.ValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L935C16-L935C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L935C16-L935C40" }, { "DocsId": "E:System.Windows.Forms.DateTimePicker.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L946C16-L946C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L946C16-L946C36" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.DefaultTitleBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.DefaultTitleForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.DefaultMonthBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.DefaultTrailingForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.MinDateTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePicker.MaxDateTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L130C16-L130C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L130C16-L130C81" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L146C16-L146C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L146C16-L146C36" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L162C16-L162C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L162C16-L162C42" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L181C16-L181C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L181C16-L181C34" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L207C16-L207C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L207C16-L207C37" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarTitleBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L241C16-L241C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L241C16-L241C39" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarTitleForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L264C16-L264C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L264C16-L264C39" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L287C16-L287C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L287C16-L287C37" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CalendarMonthBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L310C16-L310C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L310C16-L310C40" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L338C13-L346C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L338C13-L346C35" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L390C13-L419C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L390C13-L419C23" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.CustomFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L433C16-L433C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L433C16-L433C29" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L452C44-L452C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L452C44-L452C69" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L457C16-L457C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L457C16-L457C35" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DropDownAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L478C16-L478C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L478C16-L478C107" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L491C16-L494C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L491C16-L494C42" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L516C16-L516C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L516C16-L516C23" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.MaxDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L590C13-L590C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L590C13-L590C51" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.MaximumDateTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L627C13-L633C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L627C13-L633C41" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.MinDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L646C13-L646C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L646C13-L646C51" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.MinimumDateTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L687C13-L693C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L687C13-L693C41" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L718C16-L718C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L718C16-L718C28" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L739C13-L751C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L739C13-L751C27" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L766C16-L766C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L766C16-L766C34" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.ShowCheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L788C16-L788C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L788C16-L788C52" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.ShowUpDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L800C16-L800C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L800C16-L800C50" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L823C16-L823C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L823C16-L823C25" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L858C13-L858C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs#L858C13-L858C77" }, { "DocsId": "T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DateTimePicker", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DateTimePickerFormat.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePickerFormat.Long", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePickerFormat.Short", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePickerFormat.Time", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DateTimePickerFormat.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" } ], "DocsId": "T:System.Windows.Forms.DateTimePickerFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePickerFormats.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GroupBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L21C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L21C5-L39C6" }, { "DocsId": "M:System.Windows.Forms.GroupBox.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L404C9-L454C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L420C9-L483C6" }, { "DocsId": "M:System.Windows.Forms.GroupBox.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L610C9-L614C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L651C9-L656C6" }, { "DocsId": "M:System.Windows.Forms.GroupBox.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L622C9-L628C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L664C9-L670C22" }, { "DocsId": "M:System.Windows.Forms.GroupBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L633C9-L643C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L675C9-L686C6" }, { "DocsId": "M:System.Windows.Forms.GroupBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L650C42-L650C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L693C42-L693C76" }, { "DocsId": "M:System.Windows.Forms.GroupBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L682C9-L711C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L725C9-L754C6" }, { "DocsId": "M:System.Windows.Forms.GroupBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L713C74-L713C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L756C74-L756C108" + }, + { + "DocsId": "M:System.Windows.Forms.GroupBox.OnSystemVisualSettingsChanged(System.Windows.Forms.SystemVisualSettingsChangedEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.Modern.cs#L740C9-L771C6" + }, + { + "DocsId": "M:System.Windows.Forms.GroupBox.GetVisualStylesModeChangeImpact(System.Windows.Forms.VisualStylesMode,System.Windows.Forms.VisualStylesMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.Modern.cs#L784C9-L794C52" + }, + { + "DocsId": "M:System.Windows.Forms.GroupBox.RescaleConstantsForDpi(System.Int32,System.Int32)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.Modern.cs#L802C9-L804C6" + }, + { + "DocsId": "M:System.Windows.Forms.GroupBox.Dispose(System.Boolean)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.Modern.cs#L809C9-L815C6" }, { "DocsId": "E:System.Windows.Forms.GroupBox.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L71C16-L71C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L71C16-L71C45" }, { "DocsId": "E:System.Windows.Forms.GroupBox.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L233C16-L233C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L255C16-L255C44" }, { "DocsId": "E:System.Windows.Forms.GroupBox.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L293C16-L293C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L315C16-L315C35" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L302C16-L302C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L324C16-L324C40" }, { "DocsId": "E:System.Windows.Forms.GroupBox.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L311C16-L311C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L333C16-L333C41" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L320C16-L320C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L342C16-L342C46" }, { "DocsId": "E:System.Windows.Forms.GroupBox.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L329C16-L329C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L351C16-L351C35" }, { "DocsId": "E:System.Windows.Forms.GroupBox.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L338C16-L338C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L360C16-L360C37" }, { "DocsId": "E:System.Windows.Forms.GroupBox.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L347C16-L347C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L369C16-L369C38" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L356C16-L356C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L378C16-L378C39" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L365C16-L365C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L387C16-L387C37" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L374C16-L374C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L396C16-L396C39" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L383C16-L383C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L405C16-L405C40" }, { "DocsId": "E:System.Windows.Forms.GroupBox.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L392C16-L392C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L414C16-L414C40" }, { "DocsId": "P:System.Windows.Forms.GroupBox.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L49C16-L49C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L49C16-L49C30" }, { "DocsId": "P:System.Windows.Forms.GroupBox.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L61C16-L61C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L61C16-L61C29" }, { "DocsId": "P:System.Windows.Forms.GroupBox.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L85C16-L85C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L85C16-L85C33" }, { "DocsId": "P:System.Windows.Forms.GroupBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L115C13-L130C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L115C13-L130C23" }, { "DocsId": "P:System.Windows.Forms.GroupBox.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L135C50-L135C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L135C50-L135C56" }, { "DocsId": "P:System.Windows.Forms.GroupBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L137C44-L137C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L137C44-L137C57" }, { "DocsId": "P:System.Windows.Forms.GroupBox.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L146C13-L167C76" - }, - { - "DocsId": "P:System.Windows.Forms.GroupBox.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L178C13-L178C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L146C13-L172C76" }, { "DocsId": "P:System.Windows.Forms.GroupBox.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L225C16-L225C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L247C16-L247C28" }, { "DocsId": "P:System.Windows.Forms.GroupBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L241C16-L241C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L263C16-L263C25" }, { "DocsId": "P:System.Windows.Forms.GroupBox.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L277C16-L277C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L299C16-L299C50" + }, + { + "DocsId": "P:System.Windows.Forms.GroupBox.FlatStyle", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs#L180C13-L180C31" } ], "DocsId": "T:System.Windows.Forms.GroupBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L35C9-L42C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L35C9-L42C26" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L52C9-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L52C9-L57C6" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L64C9-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L64C9-L72C6" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L78C12-L78C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L78C12-L78C106" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Color,System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L90C12-L90C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L90C12-L90C117" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L102C12-L102C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L102C12-L102C85" }, { "DocsId": "M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Color,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.GroupBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L133C12-L133C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L133C12-L133C96" }, { "DocsId": "P:System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs#L25C57-L25C61" } ], "DocsId": "T:System.Windows.Forms.GroupBoxRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/GroupBox/GroupBoxRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ColorDepth.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "DocsId": "F:System.Windows.Forms.ColorDepth.Depth4Bit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "DocsId": "F:System.Windows.Forms.ColorDepth.Depth8Bit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "DocsId": "F:System.Windows.Forms.ColorDepth.Depth16Bit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "DocsId": "F:System.Windows.Forms.ColorDepth.Depth24Bit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "DocsId": "F:System.Windows.Forms.ColorDepth.Depth32Bit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" } ], "DocsId": "T:System.Windows.Forms.ColorDepth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ColorDepth.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImageList.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L35C5-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L35C5-L61C6" }, { "DocsId": "M:System.Windows.Forms.ImageList.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L67C46-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L67C46-L72C6" }, { "DocsId": "M:System.Windows.Forms.ImageList.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L481C9-L504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L481C9-L504C6" }, { "DocsId": "M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Drawing.Point,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L510C58-L510C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L510C58-L510C84" }, { "DocsId": "M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L516C62-L516C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L516C62-L516C119" }, { "DocsId": "M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L525C9-L547C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L525C9-L547C6" }, { "DocsId": "M:System.Windows.Forms.ImageList.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L755C12-L757C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L755C12-L757C87" }, { "DocsId": "M:System.Windows.Forms.ImageList.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L759C46-L759C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L759C46-L759C56" }, { "DocsId": "E:System.Windows.Forms.ImageList.RecreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L269C16-L269C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L269C16-L269C41" }, { "DocsId": "P:System.Windows.Forms.ImageList.ColorDepth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L81C16-L81C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L81C16-L81C27" }, { "DocsId": "P:System.Windows.Forms.ImageList.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L112C13-L117C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L112C13-L117C48" }, { "DocsId": "P:System.Windows.Forms.ImageList.HandleCreated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L129C34-L129C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L129C34-L129C62" }, { "DocsId": "P:System.Windows.Forms.ImageList.Images", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L136C38-L136C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L136C38-L136C84" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L146C16-L146C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L146C16-L146C26" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L188C13-L195C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L188C13-L195C48" }, { "DocsId": "P:System.Windows.Forms.ImageList.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L253C26-L253C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L253C26-L253C30" }, { "DocsId": "P:System.Windows.Forms.ImageList.TransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L260C37-L260C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L260C37-L260C41" }, { "DocsId": "P:System.Windows.Forms.ImageList.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L759C46-L759C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs#L759C46-L759C56" }, { "DocsId": "T:System.Windows.Forms.ImageList.ImageCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImageListStreamer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs#L87C9-L87C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs#L87C9-L87C41" }, { "DocsId": "M:System.Windows.Forms.ImageListStreamer.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs#L145C9-L147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs#L145C9-L147C6" } ], "DocsId": "T:System.Windows.Forms.ImageListStreamer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageListStreamer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RelatedImageListAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs#L15C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs#L15C5-L18C6" }, { "DocsId": "P:System.Windows.Forms.RelatedImageListAttribute.RelatedImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs#L24C13-L24C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs#L24C13-L24C38" } ], "DocsId": "T:System.Windows.Forms.RelatedImageListAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/RelatedImageListAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Label.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L63C22-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L63C22-L86C6" }, { "DocsId": "M:System.Windows.Forms.Label.CalcImageRenderBounds(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.ContentAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L873C9-L900C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L873C9-L900C87" }, { "DocsId": "M:System.Windows.Forms.Label.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L903C74-L903C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L903C74-L903C105" }, { "DocsId": "M:System.Windows.Forms.Label.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L942C9-L962C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L942C9-L962C6" }, { "DocsId": "M:System.Windows.Forms.Label.DrawImage(System.Drawing.Graphics,System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.ContentAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L981C12-L981C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L981C12-L981C49" }, { "DocsId": "M:System.Windows.Forms.Label.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1032C9-L1042C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1032C9-L1042C52" }, { "DocsId": "M:System.Windows.Forms.Label.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1148C9-L1162C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1148C9-L1162C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1166C9-L1174C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1166C9-L1174C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1194C9-L1198C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1194C9-L1198C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1202C9-L1207C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1202C9-L1207C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1211C9-L1231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1211C9-L1231C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnTextAlignChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1235C9-L1239C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1235C9-L1239C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnPaddingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1243C9-L1245C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1243C9-L1245C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1249C9-L1310C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1249C9-L1310C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1321C9-L1323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1321C9-L1323C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1327C9-L1335C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1327C9-L1335C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1339C9-L1341C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1339C9-L1341C6" }, { "DocsId": "M:System.Windows.Forms.Label.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1345C9-L1347C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1345C9-L1347C6" }, { "DocsId": "M:System.Windows.Forms.Label.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1360C9-L1374C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1360C9-L1374C22" }, { "DocsId": "M:System.Windows.Forms.Label.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1379C9-L1400C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1379C9-L1400C6" }, { "DocsId": "M:System.Windows.Forms.Label.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1423C42-L1423C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1423C42-L1423C76" }, { "DocsId": "M:System.Windows.Forms.Label.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1427C9-L1442C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L1427C9-L1442C6" }, { "DocsId": "E:System.Windows.Forms.Label.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L118C16-L118C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L118C16-L118C45" }, { "DocsId": "E:System.Windows.Forms.Label.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L178C16-L178C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L178C16-L178C52" }, { "DocsId": "E:System.Windows.Forms.Label.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L197C16-L197C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L197C16-L197C58" }, { "DocsId": "E:System.Windows.Forms.Label.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L595C16-L595C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L595C16-L595C44" }, { "DocsId": "E:System.Windows.Forms.Label.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L604C16-L604C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L604C16-L604C35" }, { "DocsId": "E:System.Windows.Forms.Label.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L613C16-L613C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L613C16-L613C37" }, { "DocsId": "E:System.Windows.Forms.Label.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L622C16-L622C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L622C16-L622C38" }, { "DocsId": "E:System.Windows.Forms.Label.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L681C16-L681C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L681C16-L681C44" }, { "DocsId": "E:System.Windows.Forms.Label.TextAlignChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L731C16-L731C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L731C16-L731C65" }, { "DocsId": "P:System.Windows.Forms.Label.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L101C16-L101C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L101C16-L101C29" }, { "DocsId": "P:System.Windows.Forms.Label.AutoEllipsis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L133C16-L133C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L133C16-L133C53" }, { "DocsId": "P:System.Windows.Forms.Label.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L170C16-L170C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L170C16-L170C36" }, { "DocsId": "P:System.Windows.Forms.Label.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L189C16-L189C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L189C16-L189C42" }, { "DocsId": "P:System.Windows.Forms.Label.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L210C16-L210C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L210C16-L210C60" }, { "DocsId": "P:System.Windows.Forms.Label.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L246C13-L304C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L246C13-L304C23" }, { "DocsId": "P:System.Windows.Forms.Label.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L308C50-L308C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L308C50-L308C65" }, { "DocsId": "P:System.Windows.Forms.Label.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L310C49-L310C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L310C49-L310C64" }, { "DocsId": "P:System.Windows.Forms.Label.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L316C44-L316C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L316C44-L316C85" }, { "DocsId": "P:System.Windows.Forms.Label.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L323C16-L323C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L323C16-L323C56" }, { "DocsId": "P:System.Windows.Forms.Label.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L370C13-L378C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L370C13-L378C30" }, { "DocsId": "P:System.Windows.Forms.Label.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L417C13-L429C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L417C13-L429C51" }, { "DocsId": "P:System.Windows.Forms.Label.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L464C16-L464C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L464C16-L464C33" }, { "DocsId": "P:System.Windows.Forms.Label.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L505C16-L505C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L505C16-L505C72" }, { "DocsId": "P:System.Windows.Forms.Label.ImageAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L550C16-L550C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L550C16-L550C93" }, { "DocsId": "P:System.Windows.Forms.Label.LiveSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L575C16-L575C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L575C16-L575C28" }, { "DocsId": "P:System.Windows.Forms.Label.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L587C16-L587C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L587C16-L587C28" }, { "DocsId": "P:System.Windows.Forms.Label.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L640C43-L640C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L640C43-L640C63" }, { "DocsId": "P:System.Windows.Forms.Label.PreferredWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L650C42-L650C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L650C42-L650C61" }, { "DocsId": "P:System.Windows.Forms.Label.RenderTransparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L659C16-L659C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L659C16-L659C49" }, { "DocsId": "P:System.Windows.Forms.Label.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L673C16-L673C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L673C16-L673C28" }, { "DocsId": "P:System.Windows.Forms.Label.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L694C16-L694C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L694C16-L694C87" }, { "DocsId": "P:System.Windows.Forms.Label.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L723C16-L723C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L723C16-L723C25" }, { "DocsId": "P:System.Windows.Forms.Label.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L745C13-L751C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L745C13-L751C25" }, { "DocsId": "P:System.Windows.Forms.Label.UseMnemonic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L773C16-L773C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs#L773C16-L773C52" } ], "DocsId": "T:System.Windows.Forms.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/Label.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkArea.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L19C9-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L19C9-L21C6" }, { "DocsId": "M:System.Windows.Forms.LinkArea.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L41C9-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L41C9-L46C26" }, { "DocsId": "M:System.Windows.Forms.LinkArea.Equals(System.Windows.Forms.LinkArea)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L50C12-L50C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L50C12-L50C58" }, { "DocsId": "M:System.Windows.Forms.LinkArea.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L52C51-L52C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L52C51-L52C88" }, { "DocsId": "M:System.Windows.Forms.LinkArea.op_Equality(System.Windows.Forms.LinkArea,System.Windows.Forms.LinkArea)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L55C12-L55C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L55C12-L55C39" }, { "DocsId": "M:System.Windows.Forms.LinkArea.op_Inequality(System.Windows.Forms.LinkArea,System.Windows.Forms.LinkArea)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L58C12-L58C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L58C12-L58C40" }, { "DocsId": "M:System.Windows.Forms.LinkArea.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L60C51-L60C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L60C51-L60C82" }, { "DocsId": "P:System.Windows.Forms.LinkArea.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L25C25-L25C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L25C25-L25C30" }, { "DocsId": "P:System.Windows.Forms.LinkArea.Length", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L31C25-L31C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L31C25-L31C31" }, { "DocsId": "P:System.Windows.Forms.LinkArea.IsEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L37C37-L37C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs#L37C37-L37C66" }, { "DocsId": "T:System.Windows.Forms.LinkArea.LinkAreaConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" } ], "DocsId": "T:System.Windows.Forms.LinkArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.LinkBehavior.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.LinkBehavior.SystemDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.LinkBehavior.AlwaysUnderline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.LinkBehavior.HoverUnderline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.LinkBehavior.NeverUnderline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" } ], "DocsId": "T:System.Windows.Forms.LinkBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkBehavior.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkClickedEventArgs.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L15C53-L15C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L15C53-L15C77" }, { "DocsId": "M:System.Windows.Forms.LinkClickedEventArgs.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L28C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L28C5-L39C6" }, { "DocsId": "P:System.Windows.Forms.LinkClickedEventArgs.LinkLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L44C29-L44C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L44C29-L44C33" }, { "DocsId": "P:System.Windows.Forms.LinkClickedEventArgs.LinkStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L49C28-L49C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L49C28-L49C32" }, { "DocsId": "P:System.Windows.Forms.LinkClickedEventArgs.LinkText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L54C31-L54C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs#L54C31-L54C35" } ], "DocsId": "T:System.Windows.Forms.LinkClickedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkClickedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkClickedEventHandler.Invoke(System.Object,System.Windows.Forms.LinkClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkClickedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.LinkClickedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkClickedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.LinkClickedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkClickedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L21C9-L26C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L21C9-L26C57" }, { "DocsId": "M:System.Windows.Forms.LinkConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L35C9-L40C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L35C9-L40C60" }, { "DocsId": "M:System.Windows.Forms.LinkConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L48C9-L72C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L48C9-L72C58" }, { "DocsId": "M:System.Windows.Forms.LinkConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L84C9-L117C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs#L84C9-L117C73" }, { "DocsId": "M:System.Windows.Forms.LinkConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs" } ], "DocsId": "T:System.Windows.Forms.LinkConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkLabel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L29C5-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L29C5-L63C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L426C74-L426C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L438C74-L438C109" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L446C9-L448C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L458C9-L460C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.PointInLink(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L675C9-L689C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L687C9-L701C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#get_DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L738C16-L738C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L750C16-L750C29" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#set_DialogResult(System.Windows.Forms.DialogResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L742C13-L745C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L754C13-L757C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#NotifyDefault(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L750C5-L750C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L762C5-L762C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L754C9-L782C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L766C9-L794C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L786C9-L792C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L798C9-L804C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L796C9-L805C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L808C9-L817C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L809C9-L831C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L821C9-L843C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L835C9-L860C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L847C9-L872C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L864C9-L893C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L876C9-L905C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L897C9-L948C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L909C9-L960C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnLinkClicked(System.Windows.Forms.LinkLabelLinkClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L955C9-L956C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L967C9-L968C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnPaddingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L960C9-L962C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L972C9-L974C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L966C9-L1144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L978C9-L1156C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1148C9-L1166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1160C9-L1178C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1170C9-L1174C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1182C9-L1186C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnAutoSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1178C9-L1180C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1190C9-L1192C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1190C9-L1204C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1202C9-L1216C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1208C9-L1211C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1220C9-L1223C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.OnTextAlignChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1215C9-L1218C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1227C9-L1230C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1382C9-L1402C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1394C9-L1414C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1406C9-L1441C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1418C9-L1453C47" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1543C9-L1547C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1555C9-L1559C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1553C9-L1587C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1565C9-L1599C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1760C9-L1769C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1772C9-L1781C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1773C9-L1780C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1785C9-L1792C6" }, { "DocsId": "E:System.Windows.Forms.LinkLabel.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L314C16-L314C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L322C16-L322C44" }, { "DocsId": "E:System.Windows.Forms.LinkLabel.LinkClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L368C16-L368C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L380C16-L380C60" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.ActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L72C16-L72C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L72C16-L76C36" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.DisabledLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L90C16-L90C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L94C16-L94C85" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L151C16-L151C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L155C16-L155C30" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L165C16-L167C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L169C16-L171C62" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L216C16-L216C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L220C16-L220C29" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L237C16-L239C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L241C16-L247C34" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Links", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L255C36-L255C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L263C36-L263C80" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkVisited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L265C16-L265C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L273C16-L273C54" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.OverrideCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L286C16-L286C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L294C16-L294C31" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L322C16-L322C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L330C16-L330C28" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L330C16-L330C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L338C16-L338C25" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L337C16-L337C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L345C16-L345C28" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.VisitedLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L348C16-L350C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L356C16-L362C41" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L738C16-L738C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L750C16-L750C29" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1727C13-L1727C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs#L1739C13-L1739C52" }, { "DocsId": "T:System.Windows.Forms.LinkLabel.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs" }, { "DocsId": "T:System.Windows.Forms.LinkLabel.LinkCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs" } ], "DocsId": "T:System.Windows.Forms.LinkLabel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventArgs.#ctor(System.Windows.Forms.LinkLabel.Link)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L15C11-L17C6" }, { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventArgs.#ctor(System.Windows.Forms.LinkLabel.Link,System.Windows.Forms.MouseButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L19C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L19C5-L23C6" }, { "DocsId": "P:System.Windows.Forms.LinkLabelLinkClickedEventArgs.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L28C35-L28C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L28C35-L28C39" }, { "DocsId": "P:System.Windows.Forms.LinkLabelLinkClickedEventArgs.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L33C34-L33C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs#L33C34-L33C38" } ], "DocsId": "T:System.Windows.Forms.LinkLabelLinkClickedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventHandler.Invoke(System.Object,System.Windows.Forms.LinkLabelLinkClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.LinkLabelLinkClickedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LinkLabelLinkClickedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.LinkLabelLinkClickedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabelLinkClickedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.LinkState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" }, { "DocsId": "F:System.Windows.Forms.LinkState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" }, { "DocsId": "F:System.Windows.Forms.LinkState.Hover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" }, { "DocsId": "F:System.Windows.Forms.LinkState.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" }, { "DocsId": "F:System.Windows.Forms.LinkState.Visited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" } ], "DocsId": "T:System.Windows.Forms.LinkState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckedListBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L19C5-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L19C5-L68C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L358C9-L358C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L358C9-L358C57" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CreateItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L363C9-L363C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L363C9-L363C43" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.GetItemCheckState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L372C9-L375C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L372C9-L375C52" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.GetItemChecked(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L382C46-L382C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L382C46-L382C94" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L454C9-L456C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L454C9-L456C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L463C9-L465C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L463C9-L465C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L478C9-L746C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L478C9-L746C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L750C9-L756C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L750C9-L756C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L761C9-L768C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L761C9-L768C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L779C9-L788C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L779C9-L788C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L797C9-L805C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L797C9-L805C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L809C9-L817C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L809C9-L817C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L828C9-L830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L828C9-L830C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.RefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L837C9-L851C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L837C9-L851C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.SetItemCheckState(System.Int32,System.Windows.Forms.CheckState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L859C9-L877C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L859C9-L877C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.SetItemChecked(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L885C9-L886C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L885C9-L886C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.WmReflectCommand(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L893C9-L910C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L893C9-L910C6" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L935C9-L977C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L935C9-L977C6" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.DataSourceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L279C16-L279C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L279C16-L279C47" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.DisplayMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L287C16-L287C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L287C16-L287C50" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.ItemCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L295C16-L295C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L295C16-L295C37" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L304C16-L304C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L304C16-L304C35" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L313C16-L313C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L313C16-L313C40" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L322C16-L322C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L322C16-L322C38" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.MeasureItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L331C16-L331C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L331C16-L331C41" }, { "DocsId": "E:System.Windows.Forms.CheckedListBox.ValueMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L348C16-L348C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L348C16-L348C48" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckOnClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L79C32-L79C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L79C32-L79C36" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L86C53-L86C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L86C53-L86C113" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L93C50-L93C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L93C50-L93C108" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L99C13-L101C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L99C13-L101C23" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L113C16-L113C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L113C16-L113C31" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.DisplayMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L125C16-L125C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L125C16-L125C34" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L136C13-L136C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L136C13-L136C36" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.ItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L151C13-L151C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L151C13-L151C57" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L171C13-L171C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L171C13-L171C49" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.SelectionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L190C16-L190C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L190C16-L190C34" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L218C13-L218C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L218C13-L218C27" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L246C16-L246C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L246C16-L246C50" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.ValueMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L271C16-L271C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L271C16-L271C32" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L340C16-L340C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs#L340C16-L340C28" }, { "DocsId": "T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs" }, { "DocsId": "T:System.Windows.Forms.CheckedListBox.CheckedItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs" }, { "DocsId": "T:System.Windows.Forms.CheckedListBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs" } ], "DocsId": "T:System.Windows.Forms.CheckedListBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L46C5-L128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L46C5-L128C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L134C9-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L134C9-L136C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.AddItemsCore(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1176C9-L1182C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1176C9-L1182C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1263C9-L1265C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1263C9-L1265C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1287C9-L1287C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1287C9-L1287C50" }, { "DocsId": "M:System.Windows.Forms.ListBox.CreateItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1292C9-L1292C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1292C9-L1292C43" }, { "DocsId": "M:System.Windows.Forms.ListBox.ClearSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1322C9-L1342C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1322C9-L1342C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1355C9-L1357C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1353C32-L1353C59" }, { "DocsId": "M:System.Windows.Forms.ListBox.FindString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1363C40-L1363C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1365C40-L1365C69" }, { "DocsId": "M:System.Windows.Forms.ListBox.FindString(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1371C9-L1371C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1373C9-L1373C100" }, { "DocsId": "M:System.Windows.Forms.ListBox.FindStringExact(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1378C45-L1378C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1380C45-L1380C79" }, { "DocsId": "M:System.Windows.Forms.ListBox.FindStringExact(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1386C9-L1386C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1388C9-L1388C99" }, { "DocsId": "M:System.Windows.Forms.ListBox.GetItemHeight(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1409C9-L1432C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1411C9-L1434C28" }, { "DocsId": "M:System.Windows.Forms.ListBox.GetItemRectangle(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1442C9-L1449C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1444C9-L1451C21" }, { "DocsId": "M:System.Windows.Forms.ListBox.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1461C9-L1462C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1463C9-L1464C64" }, { "DocsId": "M:System.Windows.Forms.ListBox.GetSelected(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1470C9-L1471C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1472C9-L1473C43" }, { "DocsId": "M:System.Windows.Forms.ListBox.IndexFromPoint(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1502C9-L1502C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1504C9-L1504C41" }, { "DocsId": "M:System.Windows.Forms.ListBox.IndexFromPoint(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1512C9-L1523C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1514C9-L1525C26" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnChangeUICues(System.Windows.Forms.UICuesEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1699C9-L1702C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1701C9-L1704C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1706C9-L1721C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1708C9-L1723C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1732C9-L1733C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1734C9-L1735C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1742C9-L1799C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1744C9-L1801C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1808C9-L1815C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1810C9-L1817C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1819C9-L1820C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1821C9-L1822C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1824C9-L1831C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1826C9-L1833C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1838C9-L1845C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1840C9-L1847C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1849C9-L1856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1851C9-L1858C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1867C9-L1906C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1869C9-L1908C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnSelectedValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1910C9-L1912C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1912C9-L1914C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1916C9-L1926C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1918C9-L1928C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.OnDisplayMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1930C9-L1939C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1932C9-L1941C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1947C9-L1961C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1949C9-L1963C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.RefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1969C9-L2027C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1971C9-L2029C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.RefreshItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2034C9-L2035C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2036C9-L2037C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2053C9-L2054C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2055C9-L2056C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2058C9-L2059C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2060C9-L2061C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2069C9-L2075C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2071C9-L2077C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2083C9-L2089C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2085C9-L2091C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.SetItemsCore(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2096C9-L2129C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2098C9-L2131C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.SetItemCore(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2133C9-L2134C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2135C9-L2136C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.SetSelected(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2142C9-L2160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2144C9-L2162C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.Sort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2176C9-L2201C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2178C9-L2203C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2208C9-L2223C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2210C9-L2225C18" }, { "DocsId": "M:System.Windows.Forms.ListBox.WmReflectCommand(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2335C9-L2346C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2337C9-L2348C6" }, { "DocsId": "M:System.Windows.Forms.ListBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2399C9-L2490C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L2401C9-L2492C6" + }, + { + "DocsId": "M:System.Windows.Forms.ListBox.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SuspendMutation.cs#L12C9-L14C6" + }, + { + "DocsId": "M:System.Windows.Forms.ListBox.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SuspendMutation.cs#L19C9-L23C6" }, { "DocsId": "E:System.Windows.Forms.ListBox.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L177C16-L177C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L177C16-L177C52" }, { "DocsId": "E:System.Windows.Forms.ListBox.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L193C16-L193C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L193C16-L193C58" }, { "DocsId": "E:System.Windows.Forms.ListBox.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1101C16-L1101C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1101C16-L1101C41" }, { "DocsId": "E:System.Windows.Forms.ListBox.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1188C16-L1188C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1188C16-L1188C35" }, { "DocsId": "E:System.Windows.Forms.ListBox.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1196C16-L1196C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1196C16-L1196C40" }, { "DocsId": "E:System.Windows.Forms.ListBox.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1213C16-L1213C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1213C16-L1213C44" }, { "DocsId": "E:System.Windows.Forms.ListBox.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1224C16-L1224C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1224C16-L1224C35" }, { "DocsId": "E:System.Windows.Forms.ListBox.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1232C16-L1232C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1232C16-L1232C57" }, { "DocsId": "E:System.Windows.Forms.ListBox.MeasureItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1240C16-L1240C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1240C16-L1240C60" }, { "DocsId": "E:System.Windows.Forms.ListBox.SelectedIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1248C16-L1248C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1248C16-L1248C69" }, { "DocsId": "F:System.Windows.Forms.ListBox.NoMatches", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" }, { "DocsId": "F:System.Windows.Forms.ListBox.DefaultItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" }, { "DocsId": "P:System.Windows.Forms.ListBox.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L153C13-L159C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L153C13-L159C44" }, { "DocsId": "P:System.Windows.Forms.ListBox.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L169C16-L169C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L169C16-L169C36" }, { "DocsId": "P:System.Windows.Forms.ListBox.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L185C16-L185C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L185C16-L185C42" }, { "DocsId": "P:System.Windows.Forms.ListBox.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L207C16-L207C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L207C16-L207C28" }, { "DocsId": "P:System.Windows.Forms.ListBox.ColumnWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L239C13-L239C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L239C13-L239C33" }, { "DocsId": "P:System.Windows.Forms.ListBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L267C13-L334C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L267C13-L334C23" }, { "DocsId": "P:System.Windows.Forms.ListBox.UseCustomTabOffsets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L349C13-L349C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L349C13-L349C41" }, { "DocsId": "P:System.Windows.Forms.ListBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L378C13-L378C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L378C13-L378C38" }, { "DocsId": "P:System.Windows.Forms.ListBox.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L395C13-L395C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L395C13-L395C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L430C16-L430C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L430C16-L430C25" }, { "DocsId": "P:System.Windows.Forms.ListBox.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L448C13-L454C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L448C13-L454C48" }, { "DocsId": "P:System.Windows.Forms.ListBox.HorizontalExtent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L472C13-L472C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L472C13-L472C38" }, { "DocsId": "P:System.Windows.Forms.ListBox.HorizontalScrollbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L500C13-L500C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L500C13-L500C41" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegralHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L541C13-L541C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L541C13-L541C36" }, { "DocsId": "P:System.Windows.Forms.ListBox.ItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L577C13-L582C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L577C13-L582C37" }, { "DocsId": "P:System.Windows.Forms.ListBox.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L625C13-L627C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L625C13-L627C37" }, { "DocsId": "P:System.Windows.Forms.ListBox.MultiColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L682C13-L682C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L682C13-L682C33" }, { "DocsId": "P:System.Windows.Forms.ListBox.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L710C13-L751C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L710C13-L751C27" }, { "DocsId": "P:System.Windows.Forms.ListBox.ScrollAlwaysVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L788C13-L788C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L788C13-L788C41" }, { "DocsId": "P:System.Windows.Forms.ListBox.AllowSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L808C13-L808C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L808C13-L808C57" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L828C13-L845C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L828C13-L845C23" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L917C13-L919C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L917C13-L919C37" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L939C13-L944C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L939C13-L944C25" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L976C13-L978C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L976C13-L978C35" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L993C13-L993C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L993C13-L993C35" }, { "DocsId": "P:System.Windows.Forms.ListBox.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1033C13-L1033C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1033C13-L1033C28" }, { "DocsId": "P:System.Windows.Forms.ListBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1060C13-L1073C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1060C13-L1073C34" }, { "DocsId": "P:System.Windows.Forms.ListBox.TopIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1115C16-L1115C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1115C16-L1115C104" }, { "DocsId": "P:System.Windows.Forms.ListBox.UseTabStops", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1140C13-L1140C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1140C13-L1140C33" }, { "DocsId": "P:System.Windows.Forms.ListBox.CustomTabOffsets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1164C13-L1166C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1164C13-L1166C38" }, { "DocsId": "P:System.Windows.Forms.ListBox.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1205C16-L1205C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs#L1205C16-L1205C28" }, { "DocsId": "T:System.Windows.Forms.ListBox.IntegerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListBox.SelectedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListBox.SelectedObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ListBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListControl.FilterItemOnProperty(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L427C9-L427C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L427C9-L427C72" }, { "DocsId": "M:System.Windows.Forms.ListControl.FilterItemOnProperty(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L432C9-L462C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L432C9-L462C21" }, { "DocsId": "M:System.Windows.Forms.ListControl.GetItemText(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L517C9-L571C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L517C9-L571C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L578C9-L586C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L578C9-L586C42" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnBindingContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L592C9-L594C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L592C9-L594C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L598C9-L600C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L598C9-L600C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnDisplayMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L604C9-L606C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L604C9-L606C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnFormat(System.Windows.Forms.ListControlConvertEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L610C9-L612C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L610C9-L612C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnFormatInfoChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L616C9-L618C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L616C9-L618C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnFormatStringChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L622C9-L624C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L622C9-L624C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnFormattingEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L628C9-L630C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L628C9-L630C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L641C9-L642C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L641C9-L642C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnValueMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L646C9-L648C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L646C9-L648C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.OnSelectedValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L652C9-L654C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L652C9-L654C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.RefreshItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" }, { "DocsId": "M:System.Windows.Forms.ListControl.RefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L660C5-L660C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L660C5-L660C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.SetItemsCore(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" }, { "DocsId": "M:System.Windows.Forms.ListControl.SetItemCore(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L821C5-L821C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L821C5-L821C6" }, { "DocsId": "M:System.Windows.Forms.ListControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L28C5-L28C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L28C5-L28C49" }, { "DocsId": "E:System.Windows.Forms.ListControl.DataSourceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L94C16-L94C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L94C16-L94C66" }, { "DocsId": "E:System.Windows.Forms.ListControl.DisplayMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L131C16-L131C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L131C16-L131C69" }, { "DocsId": "E:System.Windows.Forms.ListControl.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L170C13-L172C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L170C13-L172C10" }, { "DocsId": "E:System.Windows.Forms.ListControl.FormatInfoChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L203C16-L203C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L203C16-L203C66" }, { "DocsId": "E:System.Windows.Forms.ListControl.FormatStringChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L231C16-L231C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L231C16-L231C68" }, { "DocsId": "E:System.Windows.Forms.ListControl.FormattingEnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L255C16-L255C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L255C16-L255C73" }, { "DocsId": "E:System.Windows.Forms.ListControl.ValueMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L336C16-L336C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L336C16-L336C67" }, { "DocsId": "E:System.Windows.Forms.ListControl.SelectedValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L390C16-L390C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L390C16-L390C69" }, { "DocsId": "P:System.Windows.Forms.ListControl.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L50C16-L50C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L50C16-L50C27" }, { "DocsId": "P:System.Windows.Forms.ListControl.DataManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L98C47-L98C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L98C47-L98C59" }, { "DocsId": "P:System.Windows.Forms.ListControl.DisplayMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L112C16-L112C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L112C16-L112C44" }, { "DocsId": "P:System.Windows.Forms.ListControl.FormatInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L185C16-L185C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L185C16-L185C27" }, { "DocsId": "P:System.Windows.Forms.ListControl.FormatString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L213C16-L213C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L213C16-L213C29" }, { "DocsId": "P:System.Windows.Forms.ListControl.FormattingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L239C16-L239C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L239C16-L239C34" }, { "DocsId": "P:System.Windows.Forms.ListControl.ValueMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L301C16-L301C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L301C16-L301C42" }, { "DocsId": "P:System.Windows.Forms.ListControl.AllowSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L343C46-L343C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L343C46-L343C50" }, { "DocsId": "P:System.Windows.Forms.ListControl.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" }, { "DocsId": "P:System.Windows.Forms.ListControl.SelectedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L358C13-L364C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs#L358C13-L364C25" } ], "DocsId": "T:System.Windows.Forms.ListControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListControlConvertEventArgs.#ctor(System.Object,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs#L9C11-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs#L9C11-L12C6" }, { "DocsId": "P:System.Windows.Forms.ListControlConvertEventArgs.ListItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs#L14C31-L14C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs#L14C31-L14C35" } ], "DocsId": "T:System.Windows.Forms.ListControlConvertEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListControlConvertEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListControlConvertEventHandler.Invoke(System.Object,System.Windows.Forms.ListControlConvertEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListControlConvertEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ListControlConvertEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListControlConvertEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ListControlConvertEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListControl/ListControlConvertEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CacheVirtualItemsEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.CacheVirtualItemsEventArgs.StartIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L14C29-L14C33" }, { "DocsId": "P:System.Windows.Forms.CacheVirtualItemsEventArgs.EndIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L16C27-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs#L16C27-L16C31" } ], "DocsId": "T:System.Windows.Forms.CacheVirtualItemsEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CacheVirtualItemsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.CacheVirtualItemsEventHandler.Invoke(System.Object,System.Windows.Forms.CacheVirtualItemsEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.CacheVirtualItemsEventHandler.BeginInvoke(System.Object,System.Windows.Forms.CacheVirtualItemsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.CacheVirtualItemsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.CacheVirtualItemsEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/CacheVirtualItemsEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnClickEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.ColumnClickEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs#L16C25-L16C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs#L16C25-L16C29" } ], "DocsId": "T:System.Windows.Forms.ColumnClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnClickEventHandler.Invoke(System.Object,System.Windows.Forms.ColumnClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ColumnClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnClickEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnHeader.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L21C5-L59C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L21C5-L59C6" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L64C43-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L64C43-L67C6" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L72C44-L75C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L72C44-L75C6" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.AutoResize(System.Windows.Forms.ColumnHeaderAutoResizeStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L417C9-L423C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L417C9-L423C6" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L430C9-L445C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L430C9-L445C29" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L450C9-L463C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L450C9-L463C6" }, { "DocsId": "M:System.Windows.Forms.ColumnHeader.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L508C9-L508C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L508C9-L508C56" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.DisplayIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L112C13-L112C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L112C13-L112C41" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L179C13-L184C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L179C13-L184C23" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L197C13-L202C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L197C13-L202C40" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L228C13-L228C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L228C13-L228C44" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L241C13-L241C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L241C13-L241C38" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L263C33-L263C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L263C33-L263C37" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L274C13-L274C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L274C13-L274C68" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L301C13-L301C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L301C13-L301C50" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L328C13-L339C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L328C13-L339C31" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L368C26-L368C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L368C26-L368C30" }, { "DocsId": "P:System.Windows.Forms.ColumnHeader.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L392C13-L406C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs#L392C13-L406C27" } ], "DocsId": "T:System.Windows.Forms.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeader.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.HeaderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.ColumnContent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnHeaderAutoResizeStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderAutoResizeStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnHeaderConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs#L19C9-L24C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs#L19C9-L24C60" }, { "DocsId": "M:System.Windows.Forms.ColumnHeaderConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs#L36C9-L79C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs#L36C9-L79C73" }, { "DocsId": "M:System.Windows.Forms.ColumnHeaderConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnHeaderConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderConverter.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ColumnHeaderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderStyle.Nonclickable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ColumnHeaderStyle.Clickable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnHeaderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnHeaderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnReorderedEventArgs.#ctor(System.Int32,System.Int32,System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L10C103-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L10C103-L15C6" }, { "DocsId": "P:System.Windows.Forms.ColumnReorderedEventArgs.OldDisplayIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L17C34-L17C38" }, { "DocsId": "P:System.Windows.Forms.ColumnReorderedEventArgs.NewDisplayIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L19C34-L19C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L19C34-L19C38" }, { "DocsId": "P:System.Windows.Forms.ColumnReorderedEventArgs.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs#L21C35-L21C39" } ], "DocsId": "T:System.Windows.Forms.ColumnReorderedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnReorderedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnReorderedEventHandler.Invoke(System.Object,System.Windows.Forms.ColumnReorderedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnReorderedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ColumnReorderedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnReorderedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnReorderedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnReorderedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnWidthChangedEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs#L13C30-L13C34" } ], "DocsId": "T:System.Windows.Forms.ColumnWidthChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnWidthChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangedEventHandler.Invoke(System.Object,System.Windows.Forms.ColumnWidthChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ColumnWidthChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnWidthChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventArgs.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L10C74-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L10C74-L12C6" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventArgs.#ctor(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L14C87-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L14C87-L18C6" }, { "DocsId": "P:System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L23C30-L23C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L23C30-L23C34" }, { "DocsId": "P:System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L28C27-L28C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs#L28C27-L28C31" } ], "DocsId": "T:System.Windows.Forms.ColumnWidthChangingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventHandler.Invoke(System.Object,System.Windows.Forms.ColumnWidthChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ColumnWidthChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ColumnWidthChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ColumnWidthChangingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ColumnWidthChangingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.ColumnHeader,System.Windows.Forms.ListViewItemStates,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L18C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L18C5-L36C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L88C9-L120C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L88C9-L120C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L127C9-L134C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L127C9-L134C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L141C9-L146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L141C9-L146C6" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L41C32-L41C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L41C32-L41C36" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L46C31-L46C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L46C31-L46C35" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L51C30-L51C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L51C30-L51C34" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L56C35-L56C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L56C35-L56C39" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L61C39-L61C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L61C39-L61C43" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L66C30-L66C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L66C30-L66C34" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L71C30-L71C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L71C30-L71C34" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L76C25-L76C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L76C25-L76C29" }, { "DocsId": "P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L81C31-L81C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs#L81C31-L81C35" } ], "DocsId": "T:System.Windows.Forms.DrawListViewColumnHeaderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventHandler.Invoke(System.Object,System.Windows.Forms.DrawListViewColumnHeaderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawListViewColumnHeaderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewColumnHeaderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawListViewColumnHeaderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewColumnHeaderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ListViewItem,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.ListViewItemStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L16C5-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L16C5-L28C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventArgs.DrawBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L65C9-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L65C9-L67C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventArgs.DrawFocusRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L75C9-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L75C9-L79C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventArgs.DrawText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L84C31-L84C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L84C31-L84C61" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L91C9-L92C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L91C9-L92C6" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L33C32-L33C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L33C32-L33C36" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L38C32-L38C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L38C32-L38C36" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L43C31-L43C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L43C31-L43C35" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.ItemIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L48C28-L48C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L48C28-L48C32" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L53C39-L53C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L53C39-L53C43" }, { "DocsId": "P:System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L58C31-L58C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs#L58C31-L58C35" } ], "DocsId": "T:System.Windows.Forms.DrawListViewItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventHandler.Invoke(System.Object,System.Windows.Forms.DrawListViewItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawListViewItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawListViewItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewItemEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ListViewItem,System.Windows.Forms.ListViewItem.ListViewSubItem,System.Int32,System.Int32,System.Windows.Forms.ColumnHeader,System.Windows.Forms.ListViewItemStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L16C5-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L16C5-L44C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L96C9-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L96C9-L99C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawFocusRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L106C9-L115C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L106C9-L115C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L123C9-L130C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L123C9-L130C6" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L137C9-L144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L137C9-L144C6" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L49C32-L49C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L49C32-L49C36" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L54C31-L54C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L54C31-L54C35" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L59C33-L59C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L59C33-L59C37" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.SubItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L64C52-L64C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L64C52-L64C56" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.ItemIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L69C28-L69C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L69C28-L69C32" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L74C30-L74C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L74C30-L74C34" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L79C35-L79C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L79C35-L79C39" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.ItemState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L84C43-L84C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L84C43-L84C47" }, { "DocsId": "P:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L89C31-L89C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs#L89C31-L89C35" } ], "DocsId": "T:System.Windows.Forms.DrawListViewSubItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventHandler.Invoke(System.Object,System.Windows.Forms.DrawListViewSubItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawListViewSubItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawListViewSubItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawListViewSubItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/DrawListViewSubItemEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ItemActivation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" }, { "DocsId": "F:System.Windows.Forms.ItemActivation.Standard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" }, { "DocsId": "F:System.Windows.Forms.ItemActivation.OneClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" }, { "DocsId": "F:System.Windows.Forms.ItemActivation.TwoClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" } ], "DocsId": "T:System.Windows.Forms.ItemActivation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemActivation.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ItemBoundsPortion.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" }, { "DocsId": "F:System.Windows.Forms.ItemBoundsPortion.Entire", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" }, { "DocsId": "F:System.Windows.Forms.ItemBoundsPortion.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" }, { "DocsId": "F:System.Windows.Forms.ItemBoundsPortion.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" }, { "DocsId": "F:System.Windows.Forms.ItemBoundsPortion.ItemOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" } ], "DocsId": "T:System.Windows.Forms.ItemBoundsPortion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ItemBoundsPortion.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LabelEditEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L16C43-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L16C43-L18C6" }, { "DocsId": "M:System.Windows.Forms.LabelEditEventArgs.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L25C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L25C5-L29C6" }, { "DocsId": "P:System.Windows.Forms.LabelEditEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L35C23-L35C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L35C23-L35C27" }, { "DocsId": "P:System.Windows.Forms.LabelEditEventArgs.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L40C28-L40C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L40C28-L40C32" }, { "DocsId": "P:System.Windows.Forms.LabelEditEventArgs.CancelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L46C30-L46C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs#L46C30-L46C34" } ], "DocsId": "T:System.Windows.Forms.LabelEditEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LabelEditEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LabelEditEventHandler.Invoke(System.Object,System.Windows.Forms.LabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LabelEditEventHandler.BeginInvoke(System.Object,System.Windows.Forms.LabelEditEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LabelEditEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.LabelEditEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/LabelEditEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L52C5-L235C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L52C5-L235C6" }, { "DocsId": "M:System.Windows.Forms.ListView.ArrangeIcons(System.Windows.Forms.ListViewAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2247C9-L2273C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2247C9-L2273C6" }, { "DocsId": "M:System.Windows.Forms.ListView.ArrangeIcons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2279C35-L2279C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2279C35-L2279C68" }, { "DocsId": "M:System.Windows.Forms.ListView.AutoResizeColumns(System.Windows.Forms.ColumnHeaderAutoResizeStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2333C9-L2339C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2333C9-L2339C6" }, { "DocsId": "M:System.Windows.Forms.ListView.AutoResizeColumn(System.Int32,System.Windows.Forms.ColumnHeaderAutoResizeStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2343C9-L2349C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2343C9-L2349C6" }, { "DocsId": "M:System.Windows.Forms.ListView.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2359C9-L2367C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2359C9-L2367C6" }, { "DocsId": "M:System.Windows.Forms.ListView.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2462C9-L2464C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2462C9-L2464C6" }, { "DocsId": "M:System.Windows.Forms.ListView.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2558C9-L2574C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2558C9-L2574C6" }, { "DocsId": "M:System.Windows.Forms.ListView.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3057C9-L3150C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3057C9-L3150C6" }, { "DocsId": "M:System.Windows.Forms.ListView.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3165C9-L3171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3161C32-L3161C59" }, { "DocsId": "M:System.Windows.Forms.ListView.EnsureVisible(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3191C9-L3198C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3193C9-L3200C6" }, { "DocsId": "M:System.Windows.Forms.ListView.FindItemWithText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3200C59-L3202C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3202C59-L3204C101" }, { "DocsId": "M:System.Windows.Forms.ListView.FindItemWithText(System.String,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3205C9-L3205C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3207C9-L3207C90" }, { "DocsId": "M:System.Windows.Forms.ListView.FindItemWithText(System.String,System.Boolean,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3209C9-L3212C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3211C9-L3214C133" }, { "DocsId": "M:System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3217C9-L3217C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3219C9-L3219C55" }, { "DocsId": "M:System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3222C9-L3271C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3224C9-L3273C97" }, { "DocsId": "M:System.Windows.Forms.ListView.GetItemAt(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3481C9-L3496C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3483C9-L3498C19" }, { "DocsId": "M:System.Windows.Forms.ListView.GetItemRect(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3574C48-L3574C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3576C48-L3576C69" }, { "DocsId": "M:System.Windows.Forms.ListView.GetItemRect(System.Int32,System.Windows.Forms.ItemBoundsPortion)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3581C9-L3602C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3583C9-L3604C35" }, { "DocsId": "M:System.Windows.Forms.ListView.HitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3708C56-L3708C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3710C56-L3710C81" }, { "DocsId": "M:System.Windows.Forms.ListView.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3712C9-L3756C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L3714C9-L3758C66" }, { "DocsId": "M:System.Windows.Forms.ListView.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4264C9-L4294C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4266C9-L4296C22" }, { "DocsId": "M:System.Windows.Forms.ListView.OnAfterLabelEdit(System.Windows.Forms.LabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4340C9-L4341C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4342C9-L4343C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnBackgroundImageChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4345C9-L4351C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4347C9-L4353C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4358C9-L4360C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4360C9-L4362C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnMouseHover(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4371C9-L4399C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4373C9-L4401C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnBeforeLabelEdit(System.Windows.Forms.LabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4406C9-L4407C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4408C9-L4409C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnCacheVirtualItems(System.Windows.Forms.CacheVirtualItemsEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4411C9-L4412C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4413C9-L4414C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnGroupCollapsedStateChanged(System.Windows.Forms.ListViewGroupEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4419C9-L4435C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4421C9-L4437C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnColumnClick(System.Windows.Forms.ColumnClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4442C9-L4443C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4444C9-L4445C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnGroupTaskLinkClick(System.Windows.Forms.ListViewGroupEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4450C9-L4451C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4452C9-L4453C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnColumnReordered(System.Windows.Forms.ColumnReorderedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4458C9-L4459C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4460C9-L4461C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnColumnWidthChanged(System.Windows.Forms.ColumnWidthChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4466C9-L4467C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4468C9-L4469C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnColumnWidthChanging(System.Windows.Forms.ColumnWidthChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4474C9-L4475C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4476C9-L4477C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnDrawColumnHeader(System.Windows.Forms.DrawListViewColumnHeaderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4482C9-L4483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4484C9-L4485C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnDrawItem(System.Windows.Forms.DrawListViewItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4490C9-L4491C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4492C9-L4493C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnDrawSubItem(System.Windows.Forms.DrawListViewSubItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4498C9-L4499C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4500C9-L4501C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4503C9-L4524C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4505C9-L4526C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4529C9-L4665C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4531C9-L4667C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4713C9-L4746C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4715C9-L4748C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4750C9-L4768C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4752C9-L4770C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4772C9-L4774C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4774C9-L4776C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemActivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4781C9-L4782C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4783C9-L4784C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4791C9-L4792C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4793C9-L4794C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemChecked(System.Windows.Forms.ItemCheckedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4796C9-L4810C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4798C9-L4812C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4814C9-L4815C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4816C9-L4817C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemMouseHover(System.Windows.Forms.ListViewItemMouseHoverEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4822C9-L4823C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4824C9-L4825C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnItemSelectionChanged(System.Windows.Forms.ListViewItemSelectionChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4830C9-L4831C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4832C9-L4833C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4835C9-L4843C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4837C9-L4845C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4848C9-L4854C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4850C9-L4856C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnRetrieveVirtualItem(System.Windows.Forms.RetrieveVirtualItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4858C9-L4859C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4860C9-L4861C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4864C9-L4878C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4866C9-L4880C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnSearchForVirtualItem(System.Windows.Forms.SearchForVirtualItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4885C9-L4886C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4887C9-L4888C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4897C9-L4917C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4899C9-L4919C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnSystemColorsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4921C9-L4931C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4923C9-L4933C6" }, { "DocsId": "M:System.Windows.Forms.ListView.OnVirtualItemsSelectionRangeChanged(System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4935C9-L4936C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4937C9-L4938C6" }, { "DocsId": "M:System.Windows.Forms.ListView.RealizeProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4983C9-L5017C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L4985C9-L5019C6" }, { "DocsId": "M:System.Windows.Forms.ListView.RedrawItems(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5025C9-L5085C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5027C9-L5087C6" }, { "DocsId": "M:System.Windows.Forms.ListView.Sort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5573C9-L5586C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5575C9-L5588C6" }, { "DocsId": "M:System.Windows.Forms.ListView.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5604C9-L5627C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5606C9-L5629C18" }, { "DocsId": "M:System.Windows.Forms.ListView.UpdateExtendedStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5722C9-L5740C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L5724C9-L5742C6" }, { "DocsId": "M:System.Windows.Forms.ListView.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L6970C9-L7151C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L6972C9-L7153C6" }, { "DocsId": "M:System.Windows.Forms.ListView.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L7162C9-L7162C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L7164C9-L7164C51" + }, + { + "DocsId": "M:System.Windows.Forms.ListView.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SuspendMutation.cs#L12C9-L14C6" + }, + { + "DocsId": "M:System.Windows.Forms.ListView.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SuspendMutation.cs#L19C9-L23C6" }, { "DocsId": "E:System.Windows.Forms.ListView.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L371C16-L371C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L371C16-L371C58" }, { "DocsId": "E:System.Windows.Forms.ListView.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1352C16-L1352C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1352C16-L1352C73" }, { "DocsId": "E:System.Windows.Forms.ListView.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1634C16-L1634C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1634C16-L1634C41" }, { "DocsId": "E:System.Windows.Forms.ListView.AfterLabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1956C16-L1956C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1956C16-L1956C42" }, { "DocsId": "E:System.Windows.Forms.ListView.BeforeLabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1964C16-L1964C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1964C16-L1964C43" }, { "DocsId": "E:System.Windows.Forms.ListView.CacheVirtualItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1972C16-L1972C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1972C16-L1972C66" }, { "DocsId": "E:System.Windows.Forms.ListView.ColumnClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1980C16-L1980C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1980C16-L1980C39" }, { "DocsId": "E:System.Windows.Forms.ListView.GroupTaskLinkClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1991C16-L1991C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1991C16-L1991C67" }, { "DocsId": "E:System.Windows.Forms.ListView.ColumnReordered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2002C16-L2002C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2002C16-L2002C64" }, { "DocsId": "E:System.Windows.Forms.ListView.ColumnWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2013C16-L2013C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2013C16-L2013C67" }, { "DocsId": "E:System.Windows.Forms.ListView.ColumnWidthChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2024C16-L2024C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2024C16-L2024C68" }, { "DocsId": "E:System.Windows.Forms.ListView.DrawColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2035C16-L2035C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2035C16-L2035C65" }, { "DocsId": "E:System.Windows.Forms.ListView.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2046C16-L2046C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2046C16-L2046C57" }, { "DocsId": "E:System.Windows.Forms.ListView.DrawSubItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2057C16-L2057C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2057C16-L2057C60" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2065C16-L2065C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2065C16-L2065C40" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2073C16-L2073C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2073C16-L2073C37" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2081C16-L2081C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2081C16-L2081C39" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2089C16-L2089C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2089C16-L2089C36" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemMouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2097C16-L2097C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2097C16-L2097C42" }, { "DocsId": "E:System.Windows.Forms.ListView.ItemSelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2105C16-L2105C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2105C16-L2105C69" }, { "DocsId": "E:System.Windows.Forms.ListView.GroupCollapsedStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2116C16-L2116C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2116C16-L2116C75" }, { "DocsId": "E:System.Windows.Forms.ListView.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2133C16-L2133C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2133C16-L2133C44" }, { "DocsId": "E:System.Windows.Forms.ListView.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2144C16-L2144C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2144C16-L2144C35" }, { "DocsId": "E:System.Windows.Forms.ListView.RetrieveVirtualItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2152C16-L2152C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2152C16-L2152C68" }, { "DocsId": "E:System.Windows.Forms.ListView.SearchForVirtualItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2160C16-L2160C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2160C16-L2160C69" }, { "DocsId": "E:System.Windows.Forms.ListView.SelectedIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2168C16-L2168C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2168C16-L2168C69" }, { "DocsId": "E:System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2176C16-L2176C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2176C16-L2176C81" }, { "DocsId": "P:System.Windows.Forms.ListView.Activation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L248C13-L248C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L248C13-L248C32" }, { "DocsId": "P:System.Windows.Forms.ListView.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L281C13-L281C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L281C13-L281C32" }, { "DocsId": "P:System.Windows.Forms.ListView.AllowColumnReorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L308C13-L308C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L308C13-L308C69" }, { "DocsId": "P:System.Windows.Forms.ListView.AutoArrange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L333C13-L333C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L333C13-L333C62" }, { "DocsId": "P:System.Windows.Forms.ListView.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L348C16-L348C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L348C16-L348C81" }, { "DocsId": "P:System.Windows.Forms.ListView.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L363C16-L363C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L363C16-L363C42" }, { "DocsId": "P:System.Windows.Forms.ListView.BackgroundImageTiled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L382C13-L382C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L382C13-L382C71" }, { "DocsId": "P:System.Windows.Forms.ListView.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L420C16-L420C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L420C16-L420C28" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckBoxes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L444C13-L444C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L444C13-L444C61" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L586C13-L588C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L586C13-L588C44" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L603C13-L605C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L603C13-L605C51" }, { "DocsId": "P:System.Windows.Forms.ListView.Columns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L619C13-L619C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L619C13-L619C44" }, { "DocsId": "P:System.Windows.Forms.ListView.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L630C13-L734C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L630C13-L734C23" }, { "DocsId": "P:System.Windows.Forms.ListView.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L752C13-L752C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L752C13-L752C38" }, { "DocsId": "P:System.Windows.Forms.ListView.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L758C16-L758C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L758C16-L758C35" }, { "DocsId": "P:System.Windows.Forms.ListView.FocusedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L808C13-L822C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L808C13-L822C25" }, { "DocsId": "P:System.Windows.Forms.ListView.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L835C16-L835C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L835C16-L835C85" }, { "DocsId": "P:System.Windows.Forms.ListView.FullRowSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L878C13-L878C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L878C13-L878C64" }, { "DocsId": "P:System.Windows.Forms.ListView.GridLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L901C13-L901C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L901C13-L901C60" }, { "DocsId": "P:System.Windows.Forms.ListView.GroupImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L937C16-L937C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L937C16-L937C31" }, { "DocsId": "P:System.Windows.Forms.ListView.Groups", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L975C13-L977C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L975C13-L977C28" }, { "DocsId": "P:System.Windows.Forms.ListView.HeaderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L998C15-L998C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L998C15-L998C35" }, { "DocsId": "P:System.Windows.Forms.ListView.HideSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1035C13-L1035C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1035C13-L1035C64" }, { "DocsId": "P:System.Windows.Forms.ListView.HotTracking", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1055C13-L1055C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1055C13-L1055C62" }, { "DocsId": "P:System.Windows.Forms.ListView.HoverSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1083C13-L1083C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1083C13-L1083C65" }, { "DocsId": "P:System.Windows.Forms.ListView.InsertionMark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1116C13-L1118C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1116C13-L1118C35" }, { "DocsId": "P:System.Windows.Forms.ListView.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1144C13-L1144C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1144C13-L1144C40" }, { "DocsId": "P:System.Windows.Forms.ListView.LabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1158C13-L1158C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1158C13-L1158C60" }, { "DocsId": "P:System.Windows.Forms.ListView.LabelWrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1181C13-L1181C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1181C13-L1181C60" }, { "DocsId": "P:System.Windows.Forms.ListView.LargeImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1201C16-L1201C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1201C16-L1201C31" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemSorter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1257C13-L1257C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1257C13-L1257C36" }, { "DocsId": "P:System.Windows.Forms.ListView.MultiSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1283C13-L1283C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1283C13-L1283C62" }, { "DocsId": "P:System.Windows.Forms.ListView.OwnerDraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1306C13-L1306C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1306C13-L1306C60" }, { "DocsId": "P:System.Windows.Forms.ListView.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1332C13-L1332C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1332C13-L1332C39" }, { "DocsId": "P:System.Windows.Forms.ListView.Scrollable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1366C13-L1366C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1366C13-L1366C61" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndices", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1387C13-L1389C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1387C13-L1389C45" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1404C13-L1406C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1404C13-L1406C52" }, { "DocsId": "P:System.Windows.Forms.ListView.ShowGroups", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1417C13-L1417C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1417C13-L1417C61" }, { "DocsId": "P:System.Windows.Forms.ListView.SmallImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1440C16-L1440C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1440C16-L1440C31" }, { "DocsId": "P:System.Windows.Forms.ListView.ShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1483C13-L1483C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1483C13-L1483C67" }, { "DocsId": "P:System.Windows.Forms.ListView.Sorting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1502C13-L1502C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1502C13-L1502C29" }, { "DocsId": "P:System.Windows.Forms.ListView.StateImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1546C16-L1546C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1546C16-L1546C31" }, { "DocsId": "P:System.Windows.Forms.ListView.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1626C16-L1626C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1626C16-L1626C25" }, { "DocsId": "P:System.Windows.Forms.ListView.TileSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1645C13-L1663C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1645C13-L1663C42" }, { "DocsId": "P:System.Windows.Forms.ListView.TopItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1714C13-L1725C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1714C13-L1725C88" }, { "DocsId": "P:System.Windows.Forms.ListView.UseCompatibleStateImageBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1792C13-L1792C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1792C13-L1792C84" }, { "DocsId": "P:System.Windows.Forms.ListView.View", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1807C13-L1807C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1807C13-L1807C31" }, { "DocsId": "P:System.Windows.Forms.ListView.VirtualListSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1866C13-L1866C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1866C13-L1866C37" }, { "DocsId": "P:System.Windows.Forms.ListView.VirtualMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1916C13-L1916C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L1916C13-L1916C62" }, { "DocsId": "P:System.Windows.Forms.ListView.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2125C16-L2125C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs#L2125C16-L2125C28" }, { "DocsId": "T:System.Windows.Forms.ListView.CheckedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListView.CheckedListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListView.ColumnHeaderCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListView.ListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListView.SelectedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs" }, { "DocsId": "T:System.Windows.Forms.ListView.SelectedListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ListViewAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewAlignment.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewAlignment.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewAlignment.SnapToGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewGroup.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L39C30-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L39C30-L41C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroup.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L54C61-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L54C61-L58C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroup.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L63C5-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L63C5-L67C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroup.#ctor(System.String,System.Windows.Forms.HorizontalAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L72C81-L75C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L72C81-L75C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroup.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L460C42-L460C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L460C42-L460C48" }, { "DocsId": "M:System.Windows.Forms.ListViewGroup.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L472C9-L492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L472C9-L492C6" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L106C16-L106C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L106C16-L106C39" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.HeaderAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L126C16-L126C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L126C16-L126C32" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Footer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L149C16-L149C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L149C16-L149C39" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.FooterAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L176C16-L176C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L176C16-L176C32" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.CollapsedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L207C16-L207C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L207C16-L207C31" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Subtitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L230C16-L230C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L230C16-L230C41" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.TaskLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L251C16-L251C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L251C16-L251C41" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.TitleImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L285C13-L288C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L285C13-L288C46" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.TitleImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L320C16-L320C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L320C16-L320C32" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L341C53-L341C138" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L341C53-L341C138" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L345C33-L345C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L345C33-L345C37" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L351C27-L351C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L351C27-L351C31" }, { "DocsId": "P:System.Windows.Forms.ListViewGroup.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L359C26-L359C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs#L359C26-L359C30" } ], "DocsId": "T:System.Windows.Forms.ListViewGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroup.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ListViewGroupCollapsedState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewGroupCollapsedState.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewGroupCollapsedState.Expanded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewGroupCollapsedState.Collapsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewGroupCollapsedState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollapsedState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L26C36-L26C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L26C36-L26C40" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L28C40-L28C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L28C40-L28C44" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L30C31-L30C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L30C31-L30C36" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L32C30-L32C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L32C30-L32C35" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L102C16-L102C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L102C16-L102C27" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L105C13-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L105C13-L109C10" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Add(System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L114C9-L131C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L114C9-L131C22" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L136C9-L138C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L136C9-L138C22" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L143C9-L148C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L143C9-L148C27" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroup[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L153C9-L160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L153C9-L160C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroupCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L164C9-L171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L164C9-L171C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L187C9-L207C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L187C9-L207C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Contains(System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L209C50-L209C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L209C50-L209C70" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L213C9-L218C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L213C9-L218C32" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L221C51-L221C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L221C51-L221C91" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L223C43-L223C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L223C43-L223C63" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.IndexOf(System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L225C48-L225C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L225C48-L225C67" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L229C9-L234C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L229C9-L234C31" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Insert(System.Int32,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L239C9-L255C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L239C9-L255C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L259C9-L263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L259C9-L263C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.Remove(System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L280C9-L292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L280C9-L292C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L296C9-L300C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L296C9-L300C6" }, { "DocsId": "M:System.Windows.Forms.ListViewGroupCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L302C40-L302C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L302C40-L302C59" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L24C25-L24C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L24C25-L24C35" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L26C36-L26C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L26C36-L26C40" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L28C40-L28C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L28C40-L28C44" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L30C31-L30C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L30C31-L30C36" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L32C30-L32C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L32C30-L32C35" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L38C16-L38C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L38C16-L38C27" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L58C13-L71C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L58C13-L71C25" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L102C16-L102C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs#L102C16-L102C27" } ], "DocsId": "T:System.Windows.Forms.ListViewGroupCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewGroupEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs#L16C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs#L16C5-L19C6" }, { "DocsId": "P:System.Windows.Forms.ListViewGroupEventArgs.GroupIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs#L24C29-L24C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs#L24C29-L24C33" } ], "DocsId": "T:System.Windows.Forms.ListViewGroupEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewGroupEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewHitTestInfo.#ctor(System.Windows.Forms.ListViewItem,System.Windows.Forms.ListViewItem.ListViewSubItem,System.Windows.Forms.ListViewHitTestLocations)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L14C5-L19C6" }, { "DocsId": "P:System.Windows.Forms.ListViewHitTestInfo.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L24C48-L24C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L24C48-L24C52" }, { "DocsId": "P:System.Windows.Forms.ListViewHitTestInfo.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L29C33-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L29C33-L29C37" }, { "DocsId": "P:System.Windows.Forms.ListViewHitTestInfo.SubItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L34C52-L34C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs#L34C52-L34C56" } ], "DocsId": "T:System.Windows.Forms.ListViewHitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestInfo.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.AboveClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.BelowClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.LeftOfClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.RightOfClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.StateImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewHitTestLocations.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewHitTestLocations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewHitTestLocation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewInsertionMark.NearestIndex(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L116C9-L123C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L116C9-L123C35" }, { "DocsId": "P:System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L33C13-L33C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L33C13-L33C38" }, { "DocsId": "P:System.Windows.Forms.ListViewInsertionMark.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L56C13-L58C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L56C13-L58C27" }, { "DocsId": "P:System.Windows.Forms.ListViewInsertionMark.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L69C13-L74C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L69C13-L74C27" }, { "DocsId": "P:System.Windows.Forms.ListViewInsertionMark.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L96C13-L96C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs#L96C13-L96C27" } ], "DocsId": "T:System.Windows.Forms.ListViewInsertionMark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewInsertionMark.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L33C5-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L33C5-L62C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L68C11-L71C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L68C11-L71C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L74C11-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L74C11-L76C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L79C11-L83C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L79C11-L83C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L86C11-L88C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L86C11-L88C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L91C11-L104C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L91C11-L104C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L107C11-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L107C11-L112C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L115C11-L130C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L115C11-L130C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L133C11-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L133C11-L136C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L139C11-L142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L139C11-L142C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Int32,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L145C11-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L145C11-L148C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L151C11-L154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L151C11-L154C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L157C11-L160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L157C11-L160C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L163C11-L166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L163C11-L166C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.Int32,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L169C11-L172C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L169C11-L172C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L175C11-L179C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L175C11-L179C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L182C11-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L182C11-L195C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L198C11-L203C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L198C11-L203C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L206C11-L221C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L206C11-L221C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.String,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L224C11-L227C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L224C11-L227C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L230C11-L233C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L230C11-L233C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L236C11-L239C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L236C11-L239C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.String,System.Windows.Forms.ListViewGroup)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L242C11-L245C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L242C11-L245C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.BeginEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L867C9-L882C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L867C9-L882C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L886C9-L939C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L886C9-L939C24" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.EnsureVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L947C9-L951C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L947C9-L951C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L955C9-L959C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L955C9-L959C77" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L968C9-L973C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L968C9-L973C24" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.GetSubItemAt(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L978C9-L991C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L978C9-L991C21" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.Remove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1181C37-L1181C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1181C37-L1181C66" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1185C9-L1259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1185C9-L1259C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1266C9-L1291C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1266C9-L1291C6" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1307C42-L1307C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1307C42-L1307C69" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1350C91-L1350C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L1350C91-L1350C115" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#AllowsChildrenToShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L12C61-L12C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L12C61-L12C75" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#AllowsToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L14C46-L14C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L14C46-L14C50" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#CanShowToolTipsNow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L16C51-L16C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L16C51-L16C65" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#GetCaptionForTool(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L18C67-L18C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L18C67-L18C78" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#GetNativeScreenRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L20C62-L20C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L20C62-L20C87" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#GetNeighboringToolsRectangles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L24C9-L61C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L24C9-L61C38" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#GetOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L64C56-L64C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L64C56-L64C65" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#HasRtlModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L66C50-L66C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L66C50-L66C91" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#IsBeingTabbedTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L68C48-L68C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L68C48-L68C87" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#IsHoveredWithMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L70C51-L70C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L70C51-L70C129" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#OnHooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L72C56-L72C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L72C56-L72C86" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#OnUnhooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L74C58-L74C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L74C58-L74C90" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.System#Windows#Forms#IKeyboardToolTip#ShowsOwnToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L76C48-L76C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.IKeyboardToolTip.cs#L76C48-L76C62" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L284C13-L295C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L284C13-L295C47" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L310C13-L316C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L310C13-L316C32" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L326C16-L326C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L326C16-L326C35" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L362C13-L367C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L362C13-L367C26" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L392C13-L403C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L392C13-L403C42" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L415C13-L426C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L415C13-L426C47" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Group", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L440C16-L440C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L440C16-L440C22" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L477C13-L479C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L477C13-L479C46" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L508C16-L508C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L508C16-L508C32" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L525C13-L539C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L525C13-L539C25" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.IndentCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L548C16-L548C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L548C16-L548C28" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L575C13-L588C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L575C13-L588C27" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L598C34-L598C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L598C34-L598C43" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L611C13-L617C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L611C13-L617C42" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L630C13-L635C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L630C13-L635C30" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L685C13-L690C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L685C13-L690C34" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.StateImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L725C13-L731C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L725C13-L731C41" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.SubItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L777C13-L783C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L777C13-L783C87" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L795C16-L795C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L795C16-L795C25" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L810C13-L816C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L810C13-L816C42" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L830C16-L830C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L830C16-L830C28" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.UseItemStyleForSubItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L858C16-L858C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs#L858C16-L858C59" }, { "DocsId": "T:System.Windows.Forms.ListViewItem.ListViewSubItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs" }, { "DocsId": "T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs#L26C9-L31C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs#L26C9-L31C60" }, { "DocsId": "M:System.Windows.Forms.ListViewItemConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs#L43C9-L179C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs#L43C9-L179C73" }, { "DocsId": "M:System.Windows.Forms.ListViewItemConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewItemConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemMouseHoverEventArgs.#ctor(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.ListViewItemMouseHoverEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs#L16C33-L16C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs#L16C33-L16C37" } ], "DocsId": "T:System.Windows.Forms.ListViewItemMouseHoverEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemMouseHoverEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemMouseHoverEventHandler.Invoke(System.Object,System.Windows.Forms.ListViewItemMouseHoverEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemMouseHoverEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ListViewItemMouseHoverEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemMouseHoverEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewItemMouseHoverEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemMouseHoverEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.#ctor(System.Windows.Forms.ListViewItem,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L14C5-L19C6" }, { "DocsId": "P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L24C33-L24C37" }, { "DocsId": "P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ItemIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L29C28-L29C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L29C28-L29C32" }, { "DocsId": "P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.IsSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L34C30-L34C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs#L34C30-L34C34" } ], "DocsId": "T:System.Windows.Forms.ListViewItemSelectionChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemSelectionChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemSelectionChangedEventHandler.Invoke(System.Object,System.Windows.Forms.ListViewItemSelectionChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemSelectionChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ListViewItemSelectionChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewItemSelectionChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewItemSelectionChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemSelectionChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ListViewItemStates.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Grayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Indeterminate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Marked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "DocsId": "F:System.Windows.Forms.ListViewItemStates.ShowKeyboardCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewItemStates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItemStateImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs#L44C9-L101C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs#L44C9-L101C72" }, { "DocsId": "M:System.Windows.Forms.ListViewItemStateImageIndexConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs" }, { "DocsId": "P:System.Windows.Forms.ListViewItemStateImageIndexConverter.IncludeNoneAsStandardValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs#L25C13-L25C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs#L25C13-L25C26" } ], "DocsId": "T:System.Windows.Forms.ListViewItemStateImageIndexConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItemStateImageIndexConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.#ctor(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L14C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L14C5-L24C6" }, { "DocsId": "P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.StartIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L29C29-L29C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L29C29-L29C33" }, { "DocsId": "P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.EndIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L34C27-L34C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L34C27-L34C31" }, { "DocsId": "P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.IsSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L39C30-L39C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs#L39C30-L39C34" } ], "DocsId": "T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler.Invoke(System.Object,System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewVirtualItemsSelectionRangeChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RetrieveVirtualItemEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.RetrieveVirtualItemEventArgs.ItemIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L13C28-L13C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L13C28-L13C32" }, { "DocsId": "P:System.Windows.Forms.RetrieveVirtualItemEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L15C33-L15C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs#L15C33-L15C37" } ], "DocsId": "T:System.Windows.Forms.RetrieveVirtualItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RetrieveVirtualItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.RetrieveVirtualItemEventHandler.Invoke(System.Object,System.Windows.Forms.RetrieveVirtualItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.RetrieveVirtualItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.RetrieveVirtualItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.RetrieveVirtualItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.RetrieveVirtualItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/RetrieveVirtualItemEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SearchDirectionHint.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" }, { "DocsId": "F:System.Windows.Forms.SearchDirectionHint.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" }, { "DocsId": "F:System.Windows.Forms.SearchDirectionHint.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" }, { "DocsId": "F:System.Windows.Forms.SearchDirectionHint.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" }, { "DocsId": "F:System.Windows.Forms.SearchDirectionHint.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" } ], "DocsId": "T:System.Windows.Forms.SearchDirectionHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchDirectionHint.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SearchForVirtualItemEventArgs.#ctor(System.Boolean,System.Boolean,System.Boolean,System.String,System.Drawing.Point,System.Windows.Forms.SearchDirectionHint,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L32C38-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L32C38-L24C6" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.IsTextSearch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L26C32-L26C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L26C32-L26C36" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.IsPrefixSearch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L28C34-L28C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L28C34-L28C38" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.IncludeSubItemsInSearch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L30C43-L30C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L30C43-L30C47" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L32C24-L32C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L32C24-L32C28" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L34C27-L34C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L34C27-L34C31" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.StartingPoint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L36C34-L36C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L36C34-L36C38" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.Direction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L38C44-L38C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L38C44-L38C48" }, { "DocsId": "P:System.Windows.Forms.SearchForVirtualItemEventArgs.StartIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L40C29-L40C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs#L40C29-L40C33" } ], "DocsId": "T:System.Windows.Forms.SearchForVirtualItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SearchForVirtualItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SearchForVirtualItemEventHandler.Invoke(System.Object,System.Windows.Forms.SearchForVirtualItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SearchForVirtualItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.SearchForVirtualItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SearchForVirtualItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.SearchForVirtualItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/SearchForVirtualItemEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.View.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "DocsId": "F:System.Windows.Forms.View.LargeIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "DocsId": "F:System.Windows.Forms.View.Details", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "DocsId": "F:System.Windows.Forms.View.SmallIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "DocsId": "F:System.Windows.Forms.View.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "DocsId": "F:System.Windows.Forms.View.Tile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" } ], "DocsId": "T:System.Windows.Forms.View", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/View.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MenuGlyph.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "DocsId": "F:System.Windows.Forms.MenuGlyph.Arrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "DocsId": "F:System.Windows.Forms.MenuGlyph.Checkmark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "DocsId": "F:System.Windows.Forms.MenuGlyph.Bullet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "DocsId": "F:System.Windows.Forms.MenuGlyph.Min", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "DocsId": "F:System.Windows.Forms.MenuGlyph.Max", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" } ], "DocsId": "T:System.Windows.Forms.MenuGlyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuGlyph.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MenuStrip.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L18C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L18C5-L23C6" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L140C12-L140C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L140C12-L140C47" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L144C9-L150C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L144C9-L150C64" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.OnMenuActivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L167C9-L179C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L167C9-L179C6" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.OnMenuDeactivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L183C9-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L183C9-L195C6" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L227C9-L247C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L227C9-L247C51" }, { "DocsId": "M:System.Windows.Forms.MenuStrip.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L252C9-L266C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L252C9-L266C6" }, { "DocsId": "E:System.Windows.Forms.MenuStrip.MenuActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L98C16-L98C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L98C16-L98C61" }, { "DocsId": "E:System.Windows.Forms.MenuStrip.MenuDeactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L106C16-L106C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L106C16-L106C63" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.CanOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L52C16-L52C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L52C16-L52C32" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.DefaultShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L57C12-L57C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L57C12-L57C17" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.DefaultGripMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L62C9-L64C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L62C9-L64C40" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L67C9-L69C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L67C9-L69C29" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L77C13-L83C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L77C13-L83C47" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.GripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L90C16-L90C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L90C16-L90C30" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.ShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L115C16-L115C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L115C16-L115C37" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L124C16-L124C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L124C16-L124C28" }, { "DocsId": "P:System.Windows.Forms.MenuStrip.MdiWindowListItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L135C16-L135C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs#L135C16-L135C34" } ], "DocsId": "T:System.Windows.Forms.MenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Menus/MenuStrip.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.DateBoldEventArgs.StartDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L18C33-L18C37" }, { "DocsId": "P:System.Windows.Forms.DateBoldEventArgs.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L20C23-L20C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L20C23-L20C27" }, { "DocsId": "P:System.Windows.Forms.DateBoldEventArgs.DaysToBold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs#L22C32-L22C36" } ], "DocsId": "T:System.Windows.Forms.DateBoldEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DateBoldEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateBoldEventHandler.Invoke(System.Object,System.Windows.Forms.DateBoldEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateBoldEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DateBoldEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateBoldEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DateBoldEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateBoldEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DateRangeEventArgs.#ctor(System.DateTime,System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L12C5-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L12C5-L16C6" }, { "DocsId": "P:System.Windows.Forms.DateRangeEventArgs.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L18C29-L18C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L18C29-L18C33" }, { "DocsId": "P:System.Windows.Forms.DateRangeEventArgs.End", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L20C27-L20C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs#L20C27-L20C31" } ], "DocsId": "T:System.Windows.Forms.DateRangeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DateRangeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateRangeEventHandler.Invoke(System.Object,System.Windows.Forms.DateRangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateRangeEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DateRangeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DateRangeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DateRangeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/DateRangeEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Day.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Monday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Tuesday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Wednesday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Thursday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Friday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Saturday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Sunday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "DocsId": "F:System.Windows.Forms.Day.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" } ], "DocsId": "T:System.Windows.Forms.Day", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/Day.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MonthCalendar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L90C5-L142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L90C5-L142C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L147C12-L147C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L147C12-L147C51" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L151C9-L153C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L151C9-L153C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.AddAnnuallyBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L966C9-L968C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L966C9-L968C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.AddBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L976C9-L980C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L976C9-L980C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.AddMonthlyBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L988C9-L990C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L988C9-L990C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1116C9-L1127C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1116C9-L1127C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.GetDisplayRange(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1141C9-L1146C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1141C9-L1146C52" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1292C9-L1320C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1292C9-L1320C50" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.HitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1326C48-L1326C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1326C48-L1326C73" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1333C9-L1341C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1333C9-L1341C42" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1347C9-L1393C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1347C9-L1393C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1397C9-L1399C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1397C9-L1399C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnDateChanged(System.Windows.Forms.DateRangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1413C12-L1413C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1413C12-L1413C49" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnDateSelected(System.Windows.Forms.DateRangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1419C12-L1419C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1419C12-L1419C50" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1423C9-L1431C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1423C9-L1431C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1441C9-L1443C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1441C9-L1443C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1447C9-L1449C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1447C9-L1449C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1453C9-L1455C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1453C9-L1455C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1459C9-L1461C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1459C9-L1461C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1466C9-L1477C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1466C9-L1477C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveAllAnnuallyBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1494C9-L1500C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1494C9-L1500C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveAllBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1505C43-L1505C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1505C43-L1505C61" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveAllMonthlyBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1512C9-L1514C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1512C9-L1514C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveAnnuallyBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1525C9-L1546C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1525C9-L1546C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1556C9-L1565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1556C9-L1565C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.RemoveMonthlyBoldedDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1576C9-L1597C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1576C9-L1597C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1650C9-L1679C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1650C9-L1679C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.SetCalendarDimensions(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1755C9-L1788C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1755C9-L1788C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.SetDate(System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1796C9-L1800C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1796C9-L1800C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.SetSelectionRange(System.DateTime,System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1835C9-L1864C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1835C9-L1864C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1943C9-L1944C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1943C9-L1944C41" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.UpdateBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1952C9-L1959C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1952C9-L1959C6" }, { "DocsId": "M:System.Windows.Forms.MonthCalendar.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L2210C9-L2244C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L2210C9-L2244C6" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L218C16-L218C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L218C16-L218C52" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L234C16-L234C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L234C16-L234C58" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L434C16-L434C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L434C16-L434C44" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L563C16-L563C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L563C16-L563C44" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L840C16-L840C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L840C16-L840C41" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1002C16-L1002C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1002C16-L1002C35" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.DateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1010C16-L1010C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1010C16-L1010C39" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.DateSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1018C16-L1018C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1018C16-L1018C40" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1032C16-L1032C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1032C16-L1032C41" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1040C16-L1040C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1040C16-L1040C40" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1048C16-L1048C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1048C16-L1048C46" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1056C16-L1056C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1056C16-L1056C35" }, { "DocsId": "E:System.Windows.Forms.MonthCalendar.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1064C16-L1064C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L1064C16-L1064C52" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L168C16-L168C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L168C16-L168C37" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L196C13-L201C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L196C13-L201C40" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L210C16-L210C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L210C16-L210C36" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L226C16-L226C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L226C16-L226C42" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.BoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L245C16-L245C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L245C16-L245C31" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.CalendarDimensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L269C16-L269C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L269C16-L269C27" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L285C13-L314C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L285C13-L314C23" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L318C50-L318C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L318C50-L318C65" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L320C49-L320C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L320C49-L320C55" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L322C44-L322C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L322C44-L322C59" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L331C16-L331C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L331C16-L331C35" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.FirstDayOfWeek", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L373C16-L373C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L373C16-L373C31" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L412C13-L417C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L412C13-L417C44" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L426C16-L426C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L426C16-L426C28" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.MaxDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L447C16-L447C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L447C16-L447C57" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.MaxSelectionCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L472C16-L472C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L472C16-L472C34" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.MinDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L503C16-L503C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L503C16-L503C57" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.MonthlyBoldedDates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L526C16-L526C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L526C16-L526C38" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L555C16-L555C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L555C16-L555C28" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L578C16-L578C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L578C16-L578C34" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ScrollChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L605C16-L605C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L605C16-L605C29" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.SelectionEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L634C16-L634C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L634C16-L634C29" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.SelectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L671C16-L671C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L671C16-L671C31" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.SelectionRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L707C16-L707C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L707C16-L707C49" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ShowToday", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L720C16-L720C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L720C16-L720C26" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ShowTodayCircle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L743C16-L743C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L743C16-L743C32" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.ShowWeekNumbers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L766C16-L766C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L766C16-L766C32" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.SingleMonthSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L795C13-L806C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L795C13-L806C45" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L819C16-L819C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L819C16-L819C25" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L832C16-L832C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L832C16-L832C25" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.TodayDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L854C13-L867C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L854C13-L867C29" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.TodayDateSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L896C33-L896C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L896C33-L896C46" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.TitleBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L905C16-L905C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L905C16-L905C31" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.TitleForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L926C16-L926C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L926C16-L926C31" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.TrailingForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L947C16-L947C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs#L947C16-L947C34" }, { "DocsId": "T:System.Windows.Forms.MonthCalendar.HitArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "T:System.Windows.Forms.MonthCalendar.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs" } ], "DocsId": "T:System.Windows.Forms.MonthCalendar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SelectionRange.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L29C6" }, { "DocsId": "M:System.Windows.Forms.SelectionRange.#ctor(System.DateTime,System.DateTime)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L51C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L51C6" }, { "DocsId": "M:System.Windows.Forms.SelectionRange.#ctor(System.Windows.Forms.SelectionRange)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L60C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L17C5-L60C6" }, { "DocsId": "M:System.Windows.Forms.SelectionRange.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L97C9-L97C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L97C9-L97C64" }, { "DocsId": "P:System.Windows.Forms.SelectionRange.End", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L69C13-L69C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L69C13-L69C25" }, { "DocsId": "P:System.Windows.Forms.SelectionRange.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L84C13-L84C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs#L84C13-L84C27" } ], "DocsId": "T:System.Windows.Forms.SelectionRange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRange.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L25C9-L30C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L25C9-L30C57" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L39C9-L44C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L39C9-L44C60" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L52C9-L82C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L52C9-L82C58" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L94C9-L133C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L94C9-L133C73" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L145C13-L156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L145C13-L156C6" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L164C9-L164C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L164C9-L164C21" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L175C9-L176C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L175C9-L176C45" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L185C9-L185C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs#L185C9-L185C21" }, { "DocsId": "M:System.Windows.Forms.SelectionRangeConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs" } ], "DocsId": "T:System.Windows.Forms.SelectionRangeConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/SelectionRangeConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PictureBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L66C5-L115C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L66C5-L115C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.CancelAsync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L170C9-L171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L170C9-L171C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L459C9-L505C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L459C9-L505C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.Load(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L511C9-L513C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L511C9-L513C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.LoadAsync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L519C9-L563C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L519C9-L563C90" }, { "DocsId": "M:System.Windows.Forms.PictureBox.LoadAsync(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L742C9-L744C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L742C9-L744C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L997C12-L997C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L997C12-L997C48" }, { "DocsId": "M:System.Windows.Forms.PictureBox.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1001C9-L1008C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1001C9-L1008C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1041C9-L1043C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1041C9-L1043C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1071C5-L1078C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1071C5-L1078C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1082C5-L1089C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1082C5-L1089C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1092C9-L1092C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1092C9-L1092C85" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnLoadProgressChanged(System.ComponentModel.ProgressChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1095C9-L1095C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1095C9-L1095C92" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1102C9-L1136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1102C9-L1136C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1140C9-L1142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1140C9-L1142C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1146C9-L1148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1146C9-L1148C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1155C9-L1165C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1155C9-L1165C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.OnSizeModeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1169C9-L1173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1169C9-L1173C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1180C9-L1181C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1180C9-L1181C48" }, { "DocsId": "M:System.Windows.Forms.PictureBox.System#ComponentModel#ISupportInitialize#BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1196C9-L1197C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1196C9-L1197C6" }, { "DocsId": "M:System.Windows.Forms.PictureBox.System#ComponentModel#ISupportInitialize#EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1201C9-L1215C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1201C9-L1215C6" }, { "DocsId": "E:System.Windows.Forms.PictureBox.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L185C16-L185C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L185C16-L185C53" }, { "DocsId": "E:System.Windows.Forms.PictureBox.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L271C16-L271C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L271C16-L271C46" }, { "DocsId": "E:System.Windows.Forms.PictureBox.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L288C16-L288C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L288C16-L288C41" }, { "DocsId": "E:System.Windows.Forms.PictureBox.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L448C16-L448C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L448C16-L448C44" }, { "DocsId": "E:System.Windows.Forms.PictureBox.LoadCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L750C16-L750C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L750C16-L750C60" }, { "DocsId": "E:System.Windows.Forms.PictureBox.LoadProgressChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L758C16-L758C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L758C16-L758C66" }, { "DocsId": "E:System.Windows.Forms.PictureBox.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L791C16-L791C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L791C16-L791C48" }, { "DocsId": "E:System.Windows.Forms.PictureBox.SizeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L857C16-L857C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L857C16-L857C64" }, { "DocsId": "E:System.Windows.Forms.PictureBox.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L875C16-L875C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L875C16-L875C44" }, { "DocsId": "E:System.Windows.Forms.PictureBox.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L891C16-L891C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L891C16-L891C45" }, { "DocsId": "E:System.Windows.Forms.PictureBox.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L909C16-L909C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L909C16-L909C41" }, { "DocsId": "E:System.Windows.Forms.PictureBox.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L917C16-L917C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L917C16-L917C35" }, { "DocsId": "E:System.Windows.Forms.PictureBox.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L925C16-L925C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L925C16-L925C35" }, { "DocsId": "E:System.Windows.Forms.PictureBox.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L933C16-L933C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L933C16-L933C37" }, { "DocsId": "E:System.Windows.Forms.PictureBox.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L941C16-L941C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L941C16-L941C38" }, { "DocsId": "E:System.Windows.Forms.PictureBox.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L949C16-L949C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L949C16-L949C35" }, { "DocsId": "P:System.Windows.Forms.PictureBox.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L121C16-L121C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L121C16-L121C30" }, { "DocsId": "P:System.Windows.Forms.PictureBox.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L134C16-L134C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L134C16-L134C28" }, { "DocsId": "P:System.Windows.Forms.PictureBox.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L177C16-L177C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L177C16-L177C37" }, { "DocsId": "P:System.Windows.Forms.PictureBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L196C13-L210C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L196C13-L210C23" }, { "DocsId": "P:System.Windows.Forms.PictureBox.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L214C50-L214C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L214C50-L214C65" }, { "DocsId": "P:System.Windows.Forms.PictureBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L220C44-L220C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L220C44-L220C56" }, { "DocsId": "P:System.Windows.Forms.PictureBox.ErrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L233C13-L246C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L233C13-L246C32" }, { "DocsId": "P:System.Windows.Forms.PictureBox.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L263C16-L263C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L263C16-L263C30" }, { "DocsId": "P:System.Windows.Forms.PictureBox.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L280C16-L280C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L280C16-L280C25" }, { "DocsId": "P:System.Windows.Forms.PictureBox.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L301C16-L301C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L301C16-L301C22" }, { "DocsId": "P:System.Windows.Forms.PictureBox.ImageLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L313C16-L313C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L313C16-L313C30" }, { "DocsId": "P:System.Windows.Forms.PictureBox.InitialImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L392C13-L404C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L392C13-L404C34" }, { "DocsId": "P:System.Windows.Forms.PictureBox.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L440C16-L440C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L440C16-L440C28" }, { "DocsId": "P:System.Windows.Forms.PictureBox.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L783C16-L783C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L783C16-L783C32" }, { "DocsId": "P:System.Windows.Forms.PictureBox.SizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L823C16-L823C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L823C16-L823C25" }, { "DocsId": "P:System.Windows.Forms.PictureBox.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L867C16-L867C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L867C16-L867C28" }, { "DocsId": "P:System.Windows.Forms.PictureBox.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L883C16-L883C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L883C16-L883C29" }, { "DocsId": "P:System.Windows.Forms.PictureBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L901C16-L901C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L901C16-L901C25" }, { "DocsId": "P:System.Windows.Forms.PictureBox.WaitOnLoad", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1190C16-L1190C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs#L1190C16-L1190C49" } ], "DocsId": "T:System.Windows.Forms.PictureBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBox.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.StretchImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.CenterImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.PictureBoxSizeMode.Zoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" } ], "DocsId": "T:System.Windows.Forms.PictureBoxSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PictureBox/PictureBoxSizeMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ProgressBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L22C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L22C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnCreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L76C9-L97C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L76C9-L97C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L349C9-L354C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L349C9-L354C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L358C9-L363C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L358C9-L363C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L560C9-L571C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L560C9-L571C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.Increment(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L579C9-L598C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L579C9-L598C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L605C9-L617C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L605C9-L617C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L624C9-L626C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L624C9-L626C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L631C9-L642C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L631C9-L642C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.PerformStep", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L650C9-L656C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L650C9-L656C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L664C9-L665C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L664C9-L665C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L682C12-L682C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L682C12-L682C89" }, { "DocsId": "M:System.Windows.Forms.ProgressBar.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L719C12-L719C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L719C12-L719C49" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L150C16-L150C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L150C16-L150C52" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L166C16-L166C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L166C16-L166C58" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L182C16-L182C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L182C16-L182C53" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L210C16-L210C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L210C16-L210C41" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L226C16-L226C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L226C16-L226C44" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L378C16-L378C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L378C16-L378C44" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L411C16-L411C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L411C16-L411C52" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L447C16-L447C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L447C16-L447C44" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L465C16-L465C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L465C16-L465C41" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L498C16-L498C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L498C16-L498C41" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L506C16-L506C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L506C16-L506C46" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L514C16-L514C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L514C16-L514C35" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L522C16-L522C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L522C16-L522C37" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L530C16-L530C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L530C16-L530C38" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L538C16-L538C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L538C16-L538C35" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L546C16-L546C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L546C16-L546C35" }, { "DocsId": "E:System.Windows.Forms.ProgressBar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L554C16-L554C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L554C16-L554C35" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L48C13-L70C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L48C13-L70C23" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L103C16-L103C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L103C16-L103C30" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L111C16-L111C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L111C16-L111C36" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L125C16-L125C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L125C16-L125C22" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L158C16-L158C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L158C16-L158C42" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L174C16-L174C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L174C16-L174C37" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L186C50-L186C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L186C50-L186C65" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L188C44-L188C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L188C44-L188C56" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L193C16-L193C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L193C16-L193C35" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L202C16-L202C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L202C16-L202C25" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L218C16-L218C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L218C16-L218C28" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L240C16-L240C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L240C16-L240C38" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L280C16-L280C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L280C16-L280C24" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L318C16-L318C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L318C16-L318C24" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L370C16-L370C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L370C16-L370C28" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L393C16-L393C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L393C16-L393C34" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Step", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L424C16-L424C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L424C16-L424C21" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L439C16-L439C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L439C16-L439C28" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L457C16-L457C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L457C16-L457C25" }, { "DocsId": "P:System.Windows.Forms.ProgressBar.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L478C16-L478C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs#L478C16-L478C22" } ], "DocsId": "T:System.Windows.Forms.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ProgressBarRenderer.DrawHorizontalBar(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L29C9-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L29C9-L32C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBarRenderer.DrawVerticalBar(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L39C9-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L39C9-L42C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBarRenderer.DrawHorizontalChunks(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L49C9-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L49C9-L52C6" }, { "DocsId": "M:System.Windows.Forms.ProgressBarRenderer.DrawVerticalChunks(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L59C9-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L59C9-L62C6" }, { "DocsId": "P:System.Windows.Forms.ProgressBarRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L22C39-L22C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L22C39-L22C70" }, { "DocsId": "P:System.Windows.Forms.ProgressBarRenderer.ChunkThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L71C13-L73C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L71C13-L73C88" }, { "DocsId": "P:System.Windows.Forms.ProgressBarRenderer.ChunkSpaceThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L84C13-L86C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs#L84C13-L86C88" } ], "DocsId": "T:System.Windows.Forms.ProgressBarRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ProgressBarStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ProgressBarStyle.Blocks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ProgressBarStyle.Continuous", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ProgressBarStyle.Marquee", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ProgressBarStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ProgressBar/ProgressBarStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GridItem.Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "M:System.Windows.Forms.GridItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L30C26-L30C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L30C26-L30C30" }, { "DocsId": "P:System.Windows.Forms.GridItem.GridItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.GridItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.PropertyDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "DocsId": "P:System.Windows.Forms.GridItem.Expandable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L72C39-L72C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L72C39-L72C44" }, { "DocsId": "P:System.Windows.Forms.GridItem.Expanded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L79C16-L79C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs#L79C16-L79C21" } ], "DocsId": "T:System.Windows.Forms.GridItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItem.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L27C36-L27C40" }, { "DocsId": "M:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L29C40-L29C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L29C40-L29C45" }, { "DocsId": "M:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L54C9-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L54C9-L61C6" }, { "DocsId": "M:System.Windows.Forms.GridItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L66C43-L66C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L66C43-L66C67" }, { "DocsId": "F:System.Windows.Forms.GridItemCollection.Empty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs" }, { "DocsId": "P:System.Windows.Forms.GridItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L25C25-L25C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L25C25-L25C39" }, { "DocsId": "P:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L27C36-L27C40" }, { "DocsId": "P:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L29C40-L29C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L29C40-L29C45" }, { "DocsId": "P:System.Windows.Forms.GridItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L34C40-L34C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L34C40-L34C55" }, { "DocsId": "P:System.Windows.Forms.GridItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L40C39-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs#L40C39-L49C10" } ], "DocsId": "T:System.Windows.Forms.GridItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.GridItemType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" }, { "DocsId": "F:System.Windows.Forms.GridItemType.Property", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" }, { "DocsId": "F:System.Windows.Forms.GridItemType.Category", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" }, { "DocsId": "F:System.Windows.Forms.GridItemType.ArrayValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" }, { "DocsId": "F:System.Windows.Forms.GridItemType.Root", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" } ], "DocsId": "T:System.Windows.Forms.GridItemType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/GridItemType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyGrid.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L26C5-L243C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L26C5-L247C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#add_ComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1409C16-L1409C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1446C16-L1446C72" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#remove_ComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1410C19-L1410C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1447C19-L1447C78" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.CollapseAllGridItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1567C12-L1567C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1604C12-L1604C101" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1596C74-L1596C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1633C74-L1633C112" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.CreatePropertyTab(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1635C71-L1635C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1672C71-L1672C75" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1798C9-L1850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1835C9-L1887C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#EnsurePendingChangesCommitted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2121C13-L2137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2161C13-L2177C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.ExpandAllGridItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2140C12-L2140C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2180C12-L2180C119" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#get_InPropertySet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2244C47-L2244C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2284C47-L2284C70" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#DropDownDone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2246C48-L2246C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2286C48-L2286C73" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#HandleF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2250C9-L2261C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2290C9-L2301C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#SaveState(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2265C9-L2275C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2305C9-L2315C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#LoadState(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2279C9-L2329C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2319C9-L2369C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.Windows#Win32#System#Ole#IPropertyNotifySink#Interface#OnChanged(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2355C9-L2382C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2395C9-L2422C29" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2517C9-L2519C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2557C9-L2559C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2523C9-L2525C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2563C9-L2565C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2531C9-L2545C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2571C9-L2585C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2549C9-L2551C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2589C9-L2591C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2555C9-L2569C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2595C9-L2609C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2574C9-L2579C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2614C9-L2619C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2761C9-L2772C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2801C9-L2812C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2776C9-L2801C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2816C9-L2841C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2805C9-L2839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2845C9-L2879C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.Windows#Win32#System#Ole#IPropertyNotifySink#Interface#OnRequestEdit(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2849C9-L2849C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2889C9-L2889C29" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2854C9-L2860C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2894C9-L2900C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2873C9-L2874C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2913C9-L2914C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnNotifyPropertyValueUIItemsChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2878C9-L2880C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2918C9-L2920C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2886C9-L2916C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2926C9-L2956C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnPropertySortChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2921C9-L2922C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2961C9-L2962C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnPropertyTabChanged(System.Windows.Forms.PropertyTabChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2926C9-L2927C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2966C9-L2967C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnPropertyValueChanged(System.Windows.Forms.PropertyValueChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2931C9-L2932C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2971C9-L2972C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnSelectedGridItemChanged(System.Windows.Forms.SelectedGridItemChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2971C9-L2972C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3011C9-L3012C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnSelectedObjectsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2976C9-L2977C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3016C9-L3017C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3202C9-L3208C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3242C9-L3248C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3215C9-L3347C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3255C9-L3387C21" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3352C9-L3359C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3392C9-L3399C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.RefreshTabs(System.ComponentModel.PropertyTabScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3419C9-L3459C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3459C9-L3499C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.ResetSelectedProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3658C44-L3658C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3698C44-L3698C61" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.ShowEventsButton(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L3988C9-L3998C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4028C9-L4038C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.OnSystemColorsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4225C9-L4236C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4265C9-L4276C6" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4251C9-L4314C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4291C9-L4354C6" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L335C16-L335C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L339C16-L339C52" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L351C16-L351C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L355C16-L355C58" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L583C16-L583C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L587C16-L587C46" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L818C16-L818C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L822C16-L822C44" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1182C16-L1182C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1219C16-L1219C41" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1329C16-L1329C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1366C16-L1366C37" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1338C16-L1338C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1375C16-L1375C38" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1347C16-L1347C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1384C16-L1384C35" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1356C16-L1356C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1393C16-L1393C39" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1365C16-L1365C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1402C16-L1402C37" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1374C16-L1374C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1411C16-L1411C39" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1383C16-L1383C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1420C16-L1420C40" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1392C16-L1392C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1429C16-L1429C40" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.PropertyValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1403C16-L1403C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1440C16-L1440C69" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#ComComponentNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1409C16-L1409C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1446C16-L1446C72" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.PropertyTabChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1420C16-L1420C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1457C16-L1457C67" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.PropertySortChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1431C16-L1431C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1468C16-L1468C68" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.SelectedGridItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1442C16-L1442C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1479C16-L1479C72" }, { "DocsId": "E:System.Windows.Forms.PropertyGrid.SelectedObjectsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1450C16-L1450C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1487C16-L1487C71" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L308C16-L308C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L312C16-L312C31" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L314C16-L314C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L318C16-L318C30" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L327C16-L327C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L331C16-L331C36" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L343C16-L343C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L347C16-L347C42" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.BrowsableAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L361C16-L361C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L365C16-L365C68" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CanShowCommands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L398C44-L398C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L402C44-L402C72" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CategoryForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L408C16-L408C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L412C16-L412C40" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L426C16-L426C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L430C16-L430C39" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L441C16-L441C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L445C16-L445C39" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L456C16-L456C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L460C16-L460C45" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L467C16-L467C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L471C16-L471C51" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L478C16-L478C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L482C16-L482C53" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsBorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L490C16-L490C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L494C16-L494C41" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L499C44-L499C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L503C44-L503C65" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L510C16-L510C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L514C16-L514C42" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ContextMenuDefaultLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L532C48-L532C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L536C48-L536C84" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L542C16-L542C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L546C16-L546C29" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L545C44-L545C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L549C44-L549C57" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.DefaultTabType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L550C46-L550C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L554C46-L554C67" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.DrawFlatToolbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L558C16-L558C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L562C16-L562C32" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L575C16-L575C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L579C16-L579C30" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.HelpBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L629C16-L629C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L633C16-L633C35" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.HelpForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L641C16-L641C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L645C16-L645C35" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.HelpBorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L653C16-L653C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L657C16-L657C37" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.HelpVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L666C16-L666C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L670C16-L670C28" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L701C16-L701C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L705C16-L705C47" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L720C16-L720C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L724C16-L724C47" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.DisabledItemForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L739C16-L739C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L743C16-L743C39" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CategorySplitterColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L755C16-L755C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L759C16-L759C38" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L775C16-L775C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L779C16-L779C41" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.LineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L791C16-L791C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L795C16-L795C26" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L810C16-L810C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L814C16-L814C28" + }, + { + "DocsId": "P:System.Windows.Forms.PropertyGrid.VisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L855C16-L855C40" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertySort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L831C16-L831C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L868C16-L868C34" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertyTabs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L877C50-L877C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L914C50-L914C59" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L889C16-L889C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L926C16-L926C101" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedObjects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L898C16-L898C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L935C16-L935C82" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1132C13-L1132C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1169C13-L1169C39" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SelectedGridItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1142C16-L1142C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1179C16-L1179C57" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ShowFocusCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1146C55-L1146C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1183C55-L1183C59" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1150C16-L1150C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1187C16-L1187C25" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1175C16-L1175C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1212C16-L1212C25" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.LargeButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1191C16-L1191C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1228C16-L1228C29" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ToolbarVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1239C16-L1239C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1276C16-L1276C31" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ToolStripRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1258C16-L1258C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1295C16-L1295C36" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ViewBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1270C16-L1270C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1307C16-L1307C35" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ViewForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1283C16-L1283C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1320C16-L1320C35" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ViewBorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1299C16-L1299C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L1336C16-L1336C32" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#InPropertySet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2244C47-L2244C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L2284C47-L2284C70" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SortByPropertyImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4006C53-L4006C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4046C53-L4046C132" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.SortByCategoryImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4014C53-L4014C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4054C53-L4054C135" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.ShowPropertyPageImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4022C55-L4022C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4062C55-L4062C134" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4194C16-L4194C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs#L4234C16-L4234C50" }, { "DocsId": "T:System.Windows.Forms.PropertyGrid.PropertyTabCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs" } ], "DocsId": "T:System.Windows.Forms.PropertyGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.PropertySort.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" }, { "DocsId": "F:System.Windows.Forms.PropertySort.NoSort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" }, { "DocsId": "F:System.Windows.Forms.PropertySort.Alphabetical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" }, { "DocsId": "F:System.Windows.Forms.PropertySort.Categorized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" }, { "DocsId": "F:System.Windows.Forms.PropertySort.CategorizedAlphabetical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" } ], "DocsId": "T:System.Windows.Forms.PropertySort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertySort.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyTabChangedEventArgs.#ctor(System.Windows.Forms.Design.PropertyTab,System.Windows.Forms.Design.PropertyTab)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L10C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L10C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.PropertyTabChangedEventArgs.OldTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L16C34-L16C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L16C34-L16C38" }, { "DocsId": "P:System.Windows.Forms.PropertyTabChangedEventArgs.NewTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs#L18C34-L18C38" } ], "DocsId": "T:System.Windows.Forms.PropertyTabChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyTabChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyTabChangedEventHandler.Invoke(System.Object,System.Windows.Forms.PropertyTabChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyTabChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.PropertyTabChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyTabChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.PropertyTabChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyTabChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SelectedGridItemChangedEventArgs.#ctor(System.Windows.Forms.GridItem,System.Windows.Forms.GridItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L14C5-L18C6" }, { "DocsId": "P:System.Windows.Forms.SelectedGridItemChangedEventArgs.OldSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L23C37-L23C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L23C37-L23C41" }, { "DocsId": "P:System.Windows.Forms.SelectedGridItemChangedEventArgs.NewSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L28C37-L28C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs#L28C37-L28C41" } ], "DocsId": "T:System.Windows.Forms.SelectedGridItemChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SelectedGridItemChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SelectedGridItemChangedEventHandler.Invoke(System.Object,System.Windows.Forms.SelectedGridItemChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SelectedGridItemChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.SelectedGridItemChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SelectedGridItemChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.SelectedGridItemChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/SelectedGridItemChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ContentsResizedEventArgs.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs#L17C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs#L17C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.ContentsResizedEventArgs.NewRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs#L25C37-L25C41" } ], "DocsId": "T:System.Windows.Forms.ContentsResizedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ContentsResizedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ContentsResizedEventHandler.Invoke(System.Object,System.Windows.Forms.ContentsResizedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ContentsResizedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ContentsResizedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ContentsResizedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ContentsResizedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/ContentsResizedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RichTextBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L62C5-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L62C5-L110C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.CanPaste(System.Windows.Forms.DataFormats.Format)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1598C12-L1598C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1634C12-L1634C94" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1605C9-L1606C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1641C9-L1642C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1757C9-L1757C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1793C9-L1793C55" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.String,System.Windows.Forms.RichTextBoxFinds)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1765C9-L1765C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1801C9-L1801C41" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.String,System.Int32,System.Windows.Forms.RichTextBoxFinds)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1773C9-L1773C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1809C9-L1809C46" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.String,System.Int32,System.Int32,System.Windows.Forms.RichTextBoxFinds)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1781C9-L1833C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1817C9-L1869C25" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.Char[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1920C9-L1920C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1956C9-L1956C42" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.Char[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1928C9-L1928C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1964C9-L1964C46" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Find(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1939C9-L2092C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1975C9-L2128C22" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.GetCharIndexFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2209C9-L2221C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2245C9-L2257C22" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.GetLineFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2247C12-L2247C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2283C12-L2283C87" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.GetPositionFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2254C9-L2266C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2352C9-L2364C25" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.LoadFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2285C9-L2286C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2383C9-L2384C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.LoadFile(System.String,System.Windows.Forms.RichTextBoxStreamType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2294C9-L2305C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2392C9-L2403C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.LoadFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2312C9-L2334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2410C9-L2432C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2338C9-L2344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2436C9-L2442C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2348C9-L2380C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2446C9-L2478C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnContentsResized(System.Windows.Forms.ContentsResizedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2388C9-L2389C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2486C9-L2487C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2393C9-L2404C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2491C9-L2502C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2410C9-L2504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2508C9-L2607C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2508C9-L2521C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2611C9-L2624C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnHScroll(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2528C9-L2529C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2631C9-L2632C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnLinkClicked(System.Windows.Forms.LinkClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2536C9-L2537C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2639C9-L2640C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnImeChange(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2544C9-L2545C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2647C9-L2648C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnProtected(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2553C9-L2555C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2656C9-L2658C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnSelectionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2563C9-L2564C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2666C9-L2667C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.OnVScroll(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2572C9-L2573C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2675C9-L2676C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Paste(System.Windows.Forms.DataFormats.Format)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2580C9-L2581C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2683C9-L2684C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2585C9-L2596C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2688C9-L2699C51" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.Redo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2602C27-L2602C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2705C27-L2705C77" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.SaveFile(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2611C9-L2612C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2714C9-L2715C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.SaveFile(System.String,System.Windows.Forms.RichTextBoxStreamType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2620C9-L2631C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2723C9-L2734C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.SaveFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2638C9-L2649C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L2741C9-L2752C6" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3116C74-L3116C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3219C74-L3219C107" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.CreateRichEditOleCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3123C61-L3123C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3226C61-L3226C82" }, { "DocsId": "M:System.Windows.Forms.RichTextBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3427C9-L3570C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L3530C9-L3673C6" + }, + { + "DocsId": "M:System.Windows.Forms.RichTextBox.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.SuspendMutation.cs#L12C9-L14C6" + }, + { + "DocsId": "M:System.Windows.Forms.RichTextBox.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.SuspendMutation.cs#L19C9-L23C6" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L190C16-L190C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L190C16-L190C52" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L206C16-L206C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L206C16-L206C58" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.ContentsResized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1487C16-L1487C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1523C16-L1523C60" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.DragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1498C16-L1498C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1534C16-L1534C38" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.DragEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1509C16-L1509C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1545C16-L1545C39" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1517C16-L1517C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1553C16-L1553C39" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1525C16-L1525C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1561C16-L1561C38" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1533C16-L1533C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1569C16-L1569C42" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.QueryContinueDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1541C16-L1541C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1577C16-L1577C47" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.HScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1549C16-L1549C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1585C16-L1585C56" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.LinkClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1557C16-L1557C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1593C16-L1593C61" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.ImeChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1565C16-L1565C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1601C16-L1601C58" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.Protected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1573C16-L1573C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1609C16-L1609C58" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.SelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1581C16-L1581C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1617C16-L1617C64" }, { "DocsId": "E:System.Windows.Forms.RichTextBox.VScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1589C16-L1589C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1625C16-L1625C56" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L119C16-L119C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L119C16-L119C61" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L151C16-L151C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L151C16-L151C29" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.AutoWordSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L163C16-L163C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L163C16-L163C66" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L182C16-L182C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L182C16-L182C36" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L198C16-L198C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L198C16-L198C42" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.BulletIndent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L220C16-L220C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L220C16-L220C29" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.CanRedo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L250C28-L250C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L250C28-L250C110" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L257C13-L318C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L257C13-L320C23" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.DetectUrls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L335C16-L335C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L364C16-L364C62" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L350C44-L350C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L379C44-L379C56" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.EnableAutoDragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L361C16-L361C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L390C16-L390C67" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L371C16-L371C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L400C16-L400C30" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L391C16-L391C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L420C16-L420C25" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.LanguageOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L464C16-L466C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L499C16-L501C30" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L489C16-L489C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L524C16-L524C30" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L496C16-L496C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L531C16-L531C30" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.RedoActionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L526C13-L532C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L561C13-L567C43" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L542C16-L542C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L577C16-L577C73" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.RightMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L560C16-L560C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L595C16-L595C28" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.Rtf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L595C13-L606C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L630C13-L641C33" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.ScrollBars", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L638C16-L638C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L673C16-L673C77" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L665C13-L695C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L701C13-L731C39" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionBullet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L741C13-L766C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L777C13-L802C73" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionCharOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L807C13-L809C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L843C13-L845C50" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L844C13-L854C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L880C13-L890C29" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L880C13-L900C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L916C13-L936C29" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L940C16-L940C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L976C16-L976C39" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionHangingIndent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L957C13-L974C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L993C13-L1010C55" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionIndent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1005C13-L1022C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1041C13-L1058C48" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1052C13-L1062C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1088C13-L1098C40" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionProtected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1078C13-L1079C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1114C13-L1115C122" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectedRtf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1101C13-L1102C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1137C13-L1138C70" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionRightIndent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1126C13-L1144C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1162C13-L1180C53" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionTabs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1174C13-L1195C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1210C13-L1231C28" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1240C13-L1241C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1276C13-L1277C60" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.SelectionType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1263C13-L1271C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1299C13-L1307C56" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.ShowSelectionMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1285C15-L1285C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1321C15-L1321C66" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1310C13-L1336C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1346C13-L1372C36" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.TextLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1380C13-L1386C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1416C13-L1422C103" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.UndoActionName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1405C13-L1411C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1441C13-L1447C43" }, { "DocsId": "P:System.Windows.Forms.RichTextBox.ZoomFactor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1450C13-L1464C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs#L1486C13-L1500C40" } ], "DocsId": "T:System.Windows.Forms.RichTextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBox.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.WholeWord", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.MatchCase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.NoHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxFinds.Reverse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxFinds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxFinds.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoFontSizeAdjust", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.DualFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.ImeAlwaysSendNotify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.ImeCancelComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxLanguageOptions.UIFonts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxLanguageOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxLanguageOptions.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.Both", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxScrollBars", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxScrollBars.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionAttribute.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionAttribute.Mixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionAttribute.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionAttribute.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxSelectionAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.Empty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.Object", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.MultiChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxSelectionTypes.MultiObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxSelectionTypes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxSelectionTypes.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.RichText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.PlainText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.RichNoOleObjs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.TextTextOleObjs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxStreamType.UnicodePlainText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxStreamType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxStreamType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RichTextBoxWordPunctuations.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxWordPunctuations.Level1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxWordPunctuations.Level2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxWordPunctuations.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" }, { "DocsId": "F:System.Windows.Forms.RichTextBoxWordPunctuations.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" } ], "DocsId": "T:System.Windows.Forms.RichTextBoxWordPunctuations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/RichTextBox/RichTextBoxWordPunctuations.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Splitter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L29C5-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L29C5-L56C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L194C12-L194C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L194C12-L194C46" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L802C9-L807C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L802C9-L807C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L811C9-L816C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L811C9-L816C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L820C9-L830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L820C9-L830C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L834C9-L836C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L834C9-L836C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnSplitterMoving(System.Windows.Forms.SplitterEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L845C9-L851C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L845C9-L851C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L860C9-L866C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L860C9-L866C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L870C9-L890C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L870C9-L890C6" }, { "DocsId": "M:System.Windows.Forms.Splitter.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L970C9-L971C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L970C9-L971C65" }, { "DocsId": "E:System.Windows.Forms.Splitter.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L117C16-L117C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L117C16-L117C46" }, { "DocsId": "E:System.Windows.Forms.Splitter.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L133C16-L133C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L133C16-L133C52" }, { "DocsId": "E:System.Windows.Forms.Splitter.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L149C16-L149C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L149C16-L149C58" }, { "DocsId": "E:System.Windows.Forms.Splitter.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L166C16-L166C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L166C16-L166C41" }, { "DocsId": "E:System.Windows.Forms.Splitter.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L296C16-L296C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L296C16-L296C44" }, { "DocsId": "E:System.Windows.Forms.Splitter.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L437C16-L437C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L437C16-L437C44" }, { "DocsId": "E:System.Windows.Forms.Splitter.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L456C16-L456C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L456C16-L456C41" }, { "DocsId": "E:System.Windows.Forms.Splitter.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L464C16-L464C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L464C16-L464C35" }, { "DocsId": "E:System.Windows.Forms.Splitter.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L472C16-L472C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L472C16-L472C35" }, { "DocsId": "E:System.Windows.Forms.Splitter.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L480C16-L480C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L480C16-L480C37" }, { "DocsId": "E:System.Windows.Forms.Splitter.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L488C16-L488C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L488C16-L488C38" }, { "DocsId": "E:System.Windows.Forms.Splitter.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L496C16-L496C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L496C16-L496C35" }, { "DocsId": "E:System.Windows.Forms.Splitter.SplitterMoving", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L504C16-L504C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L504C16-L504C55" }, { "DocsId": "E:System.Windows.Forms.Splitter.SplitterMoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L512C16-L512C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L512C16-L512C54" }, { "DocsId": "P:System.Windows.Forms.Splitter.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L70C13-L70C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L70C13-L70C38" }, { "DocsId": "P:System.Windows.Forms.Splitter.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L82C16-L82C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L82C16-L82C30" }, { "DocsId": "P:System.Windows.Forms.Splitter.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L94C13-L94C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L94C13-L94C57" }, { "DocsId": "P:System.Windows.Forms.Splitter.DefaultCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L98C48-L102C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L98C48-L102C32" }, { "DocsId": "P:System.Windows.Forms.Splitter.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L109C16-L109C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L109C16-L109C30" }, { "DocsId": "P:System.Windows.Forms.Splitter.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L125C16-L125C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L125C16-L125C36" }, { "DocsId": "P:System.Windows.Forms.Splitter.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L141C16-L141C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L141C16-L141C42" }, { "DocsId": "P:System.Windows.Forms.Splitter.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L158C16-L158C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L158C16-L158C25" }, { "DocsId": "P:System.Windows.Forms.Splitter.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L180C16-L180C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L180C16-L180C28" }, { "DocsId": "P:System.Windows.Forms.Splitter.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L206C13-L222C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L206C13-L222C23" }, { "DocsId": "P:System.Windows.Forms.Splitter.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L230C13-L230C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L230C13-L230C36" }, { "DocsId": "P:System.Windows.Forms.Splitter.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L238C16-L238C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L238C16-L238C25" }, { "DocsId": "P:System.Windows.Forms.Splitter.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L288C16-L288C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L288C16-L288C28" }, { "DocsId": "P:System.Windows.Forms.Splitter.MinExtra", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L314C13-L314C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L314C13-L314C30" }, { "DocsId": "P:System.Windows.Forms.Splitter.MinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L340C13-L340C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L340C13-L340C29" }, { "DocsId": "P:System.Windows.Forms.Splitter.SplitPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L365C13-L370C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L365C13-L370C31" }, { "DocsId": "P:System.Windows.Forms.Splitter.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L429C16-L429C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L429C16-L429C28" }, { "DocsId": "P:System.Windows.Forms.Splitter.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L448C16-L448C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs#L448C16-L448C25" } ], "DocsId": "T:System.Windows.Forms.Splitter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/Splitter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitterEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L15C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L15C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.SplitterEventArgs.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L26C20-L26C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L26C20-L26C24" }, { "DocsId": "P:System.Windows.Forms.SplitterEventArgs.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L31C20-L31C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L31C20-L31C24" }, { "DocsId": "P:System.Windows.Forms.SplitterEventArgs.SplitX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L36C25-L36C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L36C25-L36C29" }, { "DocsId": "P:System.Windows.Forms.SplitterEventArgs.SplitY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L41C25-L41C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs#L41C25-L41C29" } ], "DocsId": "T:System.Windows.Forms.SplitterEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitterEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterEventHandler.Invoke(System.Object,System.Windows.Forms.SplitterEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterEventHandler.BeginInvoke(System.Object,System.Windows.Forms.SplitterEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.SplitterEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Splitter/SplitterEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TabAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.TabAlignment.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.TabAlignment.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.TabAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.TabAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.TabAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TabAppearance.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" }, { "DocsId": "F:System.Windows.Forms.TabAppearance.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" }, { "DocsId": "F:System.Windows.Forms.TabAppearance.Buttons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" }, { "DocsId": "F:System.Windows.Forms.TabAppearance.FlatButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" } ], "DocsId": "T:System.Windows.Forms.TabAppearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabAppearance.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L32C5-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L32C5-L87C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L953C74-L953C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L953C74-L953C110" }, { "DocsId": "M:System.Windows.Forms.TabControl.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L957C9-L957C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L957C9-L957C44" }, { "DocsId": "M:System.Windows.Forms.TabControl.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L962C9-L973C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L962C9-L973C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.DeselectTab(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L982C9-L994C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L982C9-L994C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.DeselectTab(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1001C9-L1005C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1001C9-L1005C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.DeselectTab(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1012C9-L1016C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1012C9-L1016C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1020C9-L1026C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1020C9-L1026C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.GetControl(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1053C9-L1053C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1053C9-L1053C34" }, { "DocsId": "M:System.Windows.Forms.TabControl.GetItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1069C9-L1074C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1069C9-L1074C39" }, { "DocsId": "M:System.Windows.Forms.TabControl.GetItems(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1082C9-L1092C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1082C9-L1092C23" }, { "DocsId": "M:System.Windows.Forms.TabControl.GetTabRect(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1105C9-L1123C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1105C9-L1123C21" }, { "DocsId": "M:System.Windows.Forms.TabControl.GetToolTipText(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1128C9-L1135C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1128C9-L1135C36" }, { "DocsId": "M:System.Windows.Forms.TabControl.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1179C9-L1187C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1179C9-L1187C42" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1210C9-L1217C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1210C9-L1217C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1226C9-L1294C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1226C9-L1294C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1310C9-L1323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1310C9-L1323C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1334C9-L1335C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1334C9-L1335C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1353C9-L1355C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1353C9-L1355C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1373C9-L1376C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1373C9-L1376C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1380C9-L1382C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1380C9-L1382C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1390C9-L1407C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1390C9-L1407C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1426C9-L1429C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1426C9-L1429C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1434C9-L1448C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1434C9-L1448C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1459C9-L1466C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1459C9-L1466C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnSelecting(System.Windows.Forms.TabControlCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1473C9-L1474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1473C9-L1474C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnSelected(System.Windows.Forms.TabControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1481C9-L1485C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1481C9-L1485C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnDeselecting(System.Windows.Forms.TabControlCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1492C9-L1493C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1492C9-L1493C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnDeselected(System.Windows.Forms.TabControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1500C9-L1508C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1500C9-L1508C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.ProcessKeyPreview(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1515C9-L1520C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1515C9-L1520C46" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1542C9-L1545C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1542C9-L1545C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.RemoveAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1589C9-L1597C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1589C9-L1597C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.SelectTab(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1677C9-L1682C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1677C9-L1682C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.SelectTab(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1689C9-L1693C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1689C9-L1693C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.SelectTab(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1700C9-L1704C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1700C9-L1704C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1799C9-L1809C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1809C9-L1819C18" }, { "DocsId": "M:System.Windows.Forms.TabControl.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1815C9-L1818C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1825C9-L1828C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.UpdateTabSelection(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1825C9-L1907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1835C9-L1917C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.OnStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1911C9-L1915C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L1921C9-L1925C6" }, { "DocsId": "M:System.Windows.Forms.TabControl.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L2059C9-L2131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L2069C9-L2141C6" }, { "DocsId": "E:System.Windows.Forms.TabControl.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L189C16-L189C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L189C16-L189C46" }, { "DocsId": "E:System.Windows.Forms.TabControl.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L205C16-L205C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L205C16-L205C52" }, { "DocsId": "E:System.Windows.Forms.TabControl.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L221C16-L221C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L221C16-L221C58" }, { "DocsId": "E:System.Windows.Forms.TabControl.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L260C16-L260C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L260C16-L260C46" }, { "DocsId": "E:System.Windows.Forms.TabControl.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L836C16-L836C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L836C16-L836C41" }, { "DocsId": "E:System.Windows.Forms.TabControl.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L844C16-L844C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L844C16-L844C36" }, { "DocsId": "E:System.Windows.Forms.TabControl.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L852C16-L852C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L852C16-L852C73" }, { "DocsId": "E:System.Windows.Forms.TabControl.SelectedIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L860C16-L860C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L860C16-L860C48" }, { "DocsId": "E:System.Windows.Forms.TabControl.Selecting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L871C16-L871C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L871C16-L871C58" }, { "DocsId": "E:System.Windows.Forms.TabControl.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L882C16-L882C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L882C16-L882C57" }, { "DocsId": "E:System.Windows.Forms.TabControl.Deselecting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L893C16-L893C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L893C16-L893C60" }, { "DocsId": "E:System.Windows.Forms.TabControl.Deselected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L904C16-L904C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L904C16-L904C59" }, { "DocsId": "E:System.Windows.Forms.TabControl.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L916C16-L916C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L916C16-L916C35" }, { "DocsId": "P:System.Windows.Forms.TabControl.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L105C13-L105C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L105C13-L105C31" }, { "DocsId": "P:System.Windows.Forms.TabControl.Appearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L140C13-L146C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L140C13-L146C36" }, { "DocsId": "P:System.Windows.Forms.TabControl.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L178C13-L178C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L178C13-L178C41" }, { "DocsId": "P:System.Windows.Forms.TabControl.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L197C16-L197C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L197C16-L197C36" }, { "DocsId": "P:System.Windows.Forms.TabControl.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L213C16-L213C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L213C16-L213C42" }, { "DocsId": "P:System.Windows.Forms.TabControl.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L233C13-L233C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L233C13-L233C39" }, { "DocsId": "P:System.Windows.Forms.TabControl.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L244C16-L244C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L244C16-L244C35" }, { "DocsId": "P:System.Windows.Forms.TabControl.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L252C16-L252C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L252C16-L252C30" }, { "DocsId": "P:System.Windows.Forms.TabControl.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L274C13-L347C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L274C13-L347C23" }, { "DocsId": "P:System.Windows.Forms.TabControl.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L362C13-L395C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L362C13-L395C22" }, { "DocsId": "P:System.Windows.Forms.TabControl.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L409C13-L409C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L409C13-L409C30" }, { "DocsId": "P:System.Windows.Forms.TabControl.HotTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L433C16-L433C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L433C16-L433C40" }, { "DocsId": "P:System.Windows.Forms.TabControl.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L459C13-L459C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L459C13-L459C31" }, { "DocsId": "P:System.Windows.Forms.TabControl.ItemSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L507C13-L519C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L507C13-L519C30" }, { "DocsId": "P:System.Windows.Forms.TabControl.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L561C16-L561C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L561C16-L561C41" }, { "DocsId": "P:System.Windows.Forms.TabControl.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L588C13-L588C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L588C13-L588C29" }, { "DocsId": "P:System.Windows.Forms.TabControl.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L621C13-L621C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L621C13-L621C39" }, { "DocsId": "P:System.Windows.Forms.TabControl.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L648C12-L648C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L648C12-L648C71" }, { "DocsId": "P:System.Windows.Forms.TabControl.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L662C16-L662C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L662C16-L662C108" }, { "DocsId": "P:System.Windows.Forms.TabControl.SelectedTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L730C13-L736C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L730C13-L736C37" }, { "DocsId": "P:System.Windows.Forms.TabControl.SizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L758C16-L758C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L758C16-L758C25" }, { "DocsId": "P:System.Windows.Forms.TabControl.ShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L784C16-L784C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L784C16-L784C44" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L804C28-L804C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L804C28-L804C49" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L818C13-L818C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L818C13-L818C35" }, { "DocsId": "P:System.Windows.Forms.TabControl.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L828C16-L828C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs#L828C16-L828C25" }, { "DocsId": "T:System.Windows.Forms.TabControl.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs" }, { "DocsId": "T:System.Windows.Forms.TabControl.TabPageCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs" } ], "DocsId": "T:System.Windows.Forms.TabControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TabControlAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" }, { "DocsId": "F:System.Windows.Forms.TabControlAction.Selecting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" }, { "DocsId": "F:System.Windows.Forms.TabControlAction.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" }, { "DocsId": "F:System.Windows.Forms.TabControlAction.Deselecting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" }, { "DocsId": "F:System.Windows.Forms.TabControlAction.Deselected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" } ], "DocsId": "T:System.Windows.Forms.TabControlAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlAction.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControlCancelEventArgs.#ctor(System.Windows.Forms.TabPage,System.Int32,System.Boolean,System.Windows.Forms.TabControlAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L19C11-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L19C11-L24C6" }, { "DocsId": "P:System.Windows.Forms.TabControlCancelEventArgs.TabPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L29C31-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L29C31-L29C35" }, { "DocsId": "P:System.Windows.Forms.TabControlCancelEventArgs.TabPageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L34C31-L34C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L34C31-L34C35" }, { "DocsId": "P:System.Windows.Forms.TabControlCancelEventArgs.Action", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L39C38-L39C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs#L39C38-L39C42" } ], "DocsId": "T:System.Windows.Forms.TabControlCancelEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControlCancelEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlCancelEventHandler.Invoke(System.Object,System.Windows.Forms.TabControlCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlCancelEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TabControlCancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlCancelEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TabControlCancelEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlCancelEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControlEventArgs.#ctor(System.Windows.Forms.TabPage,System.Int32,System.Windows.Forms.TabControlAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L14C5-L19C6" }, { "DocsId": "P:System.Windows.Forms.TabControlEventArgs.TabPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L24C31-L24C35" }, { "DocsId": "P:System.Windows.Forms.TabControlEventArgs.TabPageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L29C31-L29C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L29C31-L29C35" }, { "DocsId": "P:System.Windows.Forms.TabControlEventArgs.Action", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L34C38-L34C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs#L34C38-L34C42" } ], "DocsId": "T:System.Windows.Forms.TabControlEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControlEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlEventHandler.Invoke(System.Object,System.Windows.Forms.TabControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TabControlEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TabControlEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TabControlEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControlEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TabDrawMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.TabDrawMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.TabDrawMode.OwnerDrawFixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" } ], "DocsId": "T:System.Windows.Forms.TabDrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabDrawMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabPage.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L23C5-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L23C5-L39C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L44C36-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L44C36-L47C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L135C12-L135C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L135C12-L135C45" }, { "DocsId": "M:System.Windows.Forms.TabPage.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L150C70-L150C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L150C70-L150C104" }, { "DocsId": "M:System.Windows.Forms.TabPage.GetTabPageOfComponent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L505C9-L516C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L505C9-L516C28" }, { "DocsId": "M:System.Windows.Forms.TabPage.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L565C9-L574C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L565C9-L574C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L588C9-L597C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L588C9-L597C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L607C9-L646C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L607C9-L654C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L732C9-L746C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L740C9-L754C6" }, { "DocsId": "M:System.Windows.Forms.TabPage.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L757C42-L757C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L765C42-L765C64" }, { "DocsId": "E:System.Windows.Forms.TabPage.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L85C16-L85C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L85C16-L85C45" }, { "DocsId": "E:System.Windows.Forms.TabPage.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L296C16-L296C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L296C16-L296C41" }, { "DocsId": "E:System.Windows.Forms.TabPage.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L312C16-L312C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L312C16-L312C44" }, { "DocsId": "E:System.Windows.Forms.TabPage.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L349C16-L349C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L349C16-L349C45" }, { "DocsId": "E:System.Windows.Forms.TabPage.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L397C16-L397C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L397C16-L397C45" }, { "DocsId": "E:System.Windows.Forms.TabPage.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L413C16-L413C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L413C16-L413C44" }, { "DocsId": "E:System.Windows.Forms.TabPage.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L435C16-L435C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L435C16-L435C41" }, { "DocsId": "E:System.Windows.Forms.TabPage.VisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L481C16-L481C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L481C16-L481C44" }, { "DocsId": "P:System.Windows.Forms.TabPage.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L61C16-L61C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L61C16-L61C37" }, { "DocsId": "P:System.Windows.Forms.TabPage.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L75C16-L75C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L75C16-L75C29" }, { "DocsId": "P:System.Windows.Forms.TabPage.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L99C13-L113C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L99C13-L113C26" }, { "DocsId": "P:System.Windows.Forms.TabPage.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L141C13-L143C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L141C13-L143C38" }, { "DocsId": "P:System.Windows.Forms.TabPage.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L234C16-L234C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L234C16-L234C34" }, { "DocsId": "P:System.Windows.Forms.TabPage.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L262C16-L262C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L262C16-L262C32" }, { "DocsId": "P:System.Windows.Forms.TabPage.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L280C16-L280C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L280C16-L280C27" }, { "DocsId": "P:System.Windows.Forms.TabPage.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L288C16-L288C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L288C16-L288C25" }, { "DocsId": "P:System.Windows.Forms.TabPage.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L304C16-L304C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L304C16-L304C28" }, { "DocsId": "P:System.Windows.Forms.TabPage.UseVisualStyleBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L321C16-L321C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L321C16-L321C40" }, { "DocsId": "P:System.Windows.Forms.TabPage.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L341C16-L341C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L341C16-L341C29" }, { "DocsId": "P:System.Windows.Forms.TabPage.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L358C16-L358C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L358C16-L358C32" }, { "DocsId": "P:System.Windows.Forms.TabPage.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L366C16-L366C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L366C16-L366C32" }, { "DocsId": "P:System.Windows.Forms.TabPage.PreferredSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L372C38-L372C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L372C38-L372C56" }, { "DocsId": "P:System.Windows.Forms.TabPage.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L378C16-L378C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L378C16-L378C29" }, { "DocsId": "P:System.Windows.Forms.TabPage.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L405C16-L405C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L405C16-L405C28" }, { "DocsId": "P:System.Windows.Forms.TabPage.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L423C16-L423C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L423C16-L423C25" }, { "DocsId": "P:System.Windows.Forms.TabPage.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L449C16-L449C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L449C16-L449C28" }, { "DocsId": "P:System.Windows.Forms.TabPage.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L473C16-L473C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs#L473C16-L473C28" }, { "DocsId": "T:System.Windows.Forms.TabPage.TabPageControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs" } ], "DocsId": "T:System.Windows.Forms.TabPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L29C9-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L29C9-L32C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L39C9-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L39C9-L49C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L56C9-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L56C9-L57C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L64C9-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L64C9-L67C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L74C9-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L74C9-L86C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L93C9-L106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L93C9-L106C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L113C9-L116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L113C9-L116C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L123C9-L137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L123C9-L137C6" }, { "DocsId": "M:System.Windows.Forms.TabRenderer.DrawTabPage(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L143C12-L143C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L143C12-L143C50" }, { "DocsId": "P:System.Windows.Forms.TabRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L22C39-L22C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs#L22C39-L22C70" } ], "DocsId": "T:System.Windows.Forms.TabRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TabSizeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.TabSizeMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.TabSizeMode.FillToRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.TabSizeMode.Fixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" } ], "DocsId": "T:System.Windows.Forms.TabSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabSizeMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.CharacterCasing.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" }, { "DocsId": "F:System.Windows.Forms.CharacterCasing.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" }, { "DocsId": "F:System.Windows.Forms.CharacterCasing.Upper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" }, { "DocsId": "F:System.Windows.Forms.CharacterCasing.Lower", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" } ], "DocsId": "T:System.Windows.Forms.CharacterCasing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/CharacterCasing.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.InsertKeyMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" }, { "DocsId": "F:System.Windows.Forms.InsertKeyMode.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" }, { "DocsId": "F:System.Windows.Forms.InsertKeyMode.Insert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" }, { "DocsId": "F:System.Windows.Forms.InsertKeyMode.Overwrite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" } ], "DocsId": "T:System.Windows.Forms.InsertKeyMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/InsertKeyMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MaskedTextBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L109C5-L114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L109C5-L114C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L119C5-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L119C5-L126C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.#ctor(System.ComponentModel.MaskedTextProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L131C5-L137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L131C5-L137C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L534C9-L539C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L534C9-L539C41" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1344C9-L1364C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1344C9-L1364C20" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ClearUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1471C5-L1471C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1471C5-L1471C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1473C74-L1473C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1473C74-L1473C113" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1484C9-L1491C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1484C9-L1491C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetCharFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1616C9-L1626C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1616C9-L1626C19" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetCharIndexFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1636C9-L1646C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1636C9-L1646C22" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetFirstCharIndexOfCurrentLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1676C9-L1676C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1676C9-L1676C18" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetFirstCharIndexFromLine(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1685C9-L1685C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1685C9-L1685C18" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetLineFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1721C9-L1721C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1721C9-L1721C18" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.GetPositionFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1731C9-L1741C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1731C9-L1741C20" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1789C9-L1796C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1789C9-L1796C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1800C9-L1806C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1800C9-L1806C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1814C9-L1821C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1814C9-L1821C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnIsOverwriteModeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1829C9-L1833C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1829C9-L1833C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1840C9-L1945C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1840C9-L1945C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1952C9-L2014C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1952C9-L2014C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2021C9-L2039C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2021C9-L2039C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnMaskChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2047C9-L2051C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2047C9-L2051C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2074C9-L2084C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2074C9-L2084C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnMultilineChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2093C5-L2093C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2093C5-L2093C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnTextAlignChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2100C9-L2104C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2100C9-L2104C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnValidating(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2128C9-L2130C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2128C9-L2130C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2140C9-L2150C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2140C9-L2150C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2419C9-L2430C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2419C9-L2430C29" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ProcessKeyMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2443C9-L2457C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2443C9-L2457C29" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ScrollToCaret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2474C5-L2474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2474C5-L2474C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.Undo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2681C5-L2681C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2681C5-L2681C6" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.ValidateText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2688C9-L2688C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2688C9-L2688C44" }, { "DocsId": "M:System.Windows.Forms.MaskedTextBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2905C9-L2988C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L2907C9-L2990C6" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.AcceptsTabChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L228C15-L228C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L228C15-L228C16" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.IsOverwriteModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L585C16-L585C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L585C16-L585C71" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.MaskChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L726C16-L726C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L726C16-L726C60" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.MaskInputRejected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L777C16-L777C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L777C16-L777C66" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.MultilineChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L815C15-L815C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L815C15-L815C16" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.TextAlignChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1264C16-L1264C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1264C16-L1264C65" }, { "DocsId": "E:System.Windows.Forms.MaskedTextBox.TypeValidationCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1374C16-L1374C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1374C16-L1374C68" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.AcceptsTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L183C15-L183C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L183C15-L183C28" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.AllowPromptAsInput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L200C13-L200C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L200C13-L200C59" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.AsciiOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L244C13-L244C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L244C13-L244C50" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.BeepOnError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L275C13-L275C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L275C13-L275C46" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.CanUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L295C13-L295C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L295C13-L295C26" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L309C13-L327C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L309C13-L327C23" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L341C13-L341C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L341C13-L341C48" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L377C13-L392C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L377C13-L392C56" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.FormatProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L428C13-L428C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L428C13-L428C36" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.HidePromptOnLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L448C13-L448C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L448C13-L448C52" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.InsertKeyMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L509C13-L509C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L509C13-L509C32" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.IsOverwriteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L550C13-L573C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L550C13-L573C34" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.Lines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L602C13-L612C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L602C13-L612C26" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.Mask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L633C13-L633C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L633C13-L633C87" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.MaskCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L739C13-L739C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L739C13-L739C54" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.MaskFull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L751C13-L751C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L751C13-L751C49" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.MaskedTextProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L766C13-L766C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L766C13-L766C102" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L790C16-L790C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L790C16-L790C30" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L803C15-L803C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L803C15-L803C28" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.PasswordChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L834C13-L834C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L834C13-L834C53" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.PromptChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L892C13-L892C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L892C13-L892C51" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L931C16-L931C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L931C16-L931C29" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L960C13-L960C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L960C13-L960C60" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.ResetOnPrompt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L979C13-L979C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L979C13-L979C54" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.ResetOnSpace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L998C13-L998C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L998C13-L998C53" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.SkipLiterals", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1017C13-L1017C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1017C13-L1017C53" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1033C13-L1038C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1033C13-L1038C38" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1145C13-L1150C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1145C13-L1150C31" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.TextLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1200C13-L1211C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1200C13-L1211C55" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1240C13-L1240C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1240C13-L1240C31" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.TextMaskFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1282C13-L1297C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1282C13-L1297C56" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1390C13-L1390C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1390C13-L1390C56" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.ValidatingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1441C13-L1441C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1441C13-L1441C36" }, { "DocsId": "P:System.Windows.Forms.MaskedTextBox.WordWrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1460C15-L1460C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs#L1460C15-L1460C28" } ], "DocsId": "T:System.Windows.Forms.MaskedTextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskedTextBox.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MaskFormat.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" }, { "DocsId": "F:System.Windows.Forms.MaskFormat.IncludePrompt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" }, { "DocsId": "F:System.Windows.Forms.MaskFormat.IncludeLiterals", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" }, { "DocsId": "F:System.Windows.Forms.MaskFormat.IncludePromptAndLiterals", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" }, { "DocsId": "F:System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" } ], "DocsId": "T:System.Windows.Forms.MaskFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskFormat.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MaskInputRejectedEventArgs.#ctor(System.Int32,System.ComponentModel.MaskedTextResultHint)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L13C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L13C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.MaskInputRejectedEventArgs.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L22C27-L22C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L22C27-L22C31" }, { "DocsId": "P:System.Windows.Forms.MaskInputRejectedEventArgs.RejectionHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L27C49-L27C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs#L27C49-L27C53" } ], "DocsId": "T:System.Windows.Forms.MaskInputRejectedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MaskInputRejectedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MaskInputRejectedEventHandler.Invoke(System.Object,System.Windows.Forms.MaskInputRejectedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MaskInputRejectedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.MaskInputRejectedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MaskInputRejectedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.MaskInputRejectedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/MaskInputRejectedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TextBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L69C5-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L70C5-L82C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L104C12-L104C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L105C12-L105C45" }, { "DocsId": "M:System.Windows.Forms.TextBox.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L499C9-L512C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L534C9-L547C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L519C9-L528C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L554C9-L563C41" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L541C9-L548C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L576C9-L583C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L552C9-L558C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L587C9-L593C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L565C9-L583C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L600C9-L618C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L591C9-L621C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L626C9-L656C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L625C9-L629C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L660C9-L664C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L633C9-L639C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L668C9-L674C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L643C9-L653C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L678C9-L688C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.OnTextAlignChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L657C9-L661C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L692C9-L696C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L672C9-L679C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L707C9-L714C28" }, { "DocsId": "M:System.Windows.Forms.TextBox.Paste(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L691C9-L692C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L726C9-L727C6" }, { "DocsId": "M:System.Windows.Forms.TextBox.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L896C9-L956C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L935C9-L995C6" }, { "DocsId": "E:System.Windows.Forms.TextBox.TextAlignChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L493C16-L493C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L528C16-L528C65" }, { "DocsId": "P:System.Windows.Forms.TextBox.AcceptsReturn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L95C13-L95C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L96C13-L96C35" }, { "DocsId": "P:System.Windows.Forms.TextBox.AutoCompleteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L119C13-L119C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L120C13-L120C38" }, { "DocsId": "P:System.Windows.Forms.TextBox.AutoCompleteSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L148C13-L148C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L149C13-L149C40" }, { "DocsId": "P:System.Windows.Forms.TextBox.AutoCompleteCustomSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L188C13-L194C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L189C13-L195C46" }, { "DocsId": "P:System.Windows.Forms.TextBox.CharacterCasing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L219C13-L219C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L220C13-L220C37" }, { "DocsId": "P:System.Windows.Forms.TextBox.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L235C16-L235C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L236C16-L236C30" }, { "DocsId": "P:System.Windows.Forms.TextBox.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L265C13-L316C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L266C13-L317C23" }, { "DocsId": "P:System.Windows.Forms.TextBox.PasswordChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L333C13-L338C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L334C13-L339C88" }, { "DocsId": "P:System.Windows.Forms.TextBox.ScrollBars", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L376C13-L376C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L377C13-L377C32" }, { "DocsId": "P:System.Windows.Forms.TextBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L420C16-L420C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L455C16-L455C25" }, { "DocsId": "P:System.Windows.Forms.TextBox.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L440C13-L440C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L475C13-L475C31" }, { "DocsId": "P:System.Windows.Forms.TextBox.UseSystemPasswordChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L470C13-L470C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L505C13-L505C43" }, { "DocsId": "P:System.Windows.Forms.TextBox.PlaceholderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L827C13-L827C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs#L866C13-L866C37" } ], "DocsId": "T:System.Windows.Forms.TextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TextBoxBase.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L176C9-L225C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L182C9-L234C21" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.AppendText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1234C9-L1260C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1503C9-L1529C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1267C9-L1268C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1536C9-L1537C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.ClearUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1276C9-L1280C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1545C9-L1549C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.ContainsNavigationKeyCode(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1282C63-L1285C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1551C63-L1555C19" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1291C27-L1291C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1562C12-L1562C62" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1293C74-L1293C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1565C12-L1565C49" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1299C9-L1311C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1571C9-L1588C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Cut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1316C26-L1316C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1594C12-L1594C61" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1333C9-L1364C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1611C9-L1647C41" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1373C9-L1397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1656C9-L1683C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1401C9-L1406C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1687C9-L1694C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1700C9-L1706C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnSystemVisualSettingsChanged(System.Windows.Forms.SystemVisualSettingsChangedEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1711C9-L1727C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.GetVisualStylesModeChangeImpact(System.Windows.Forms.VisualStylesMode,System.Windows.Forms.VisualStylesMode)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1742C9-L1747C52" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Paste", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1411C28-L1411C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1754C12-L1754C63" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1415C9-L1423C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1758C9-L1766C47" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnAcceptsTabChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1440C9-L1444C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1783C9-L1787C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1448C9-L1452C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1791C9-L1795C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnGotFocus(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1799C9-L1814C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnLostFocus(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1818C9-L1833C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnSizeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1837C9-L1848C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1456C9-L1458C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1852C9-L1856C6" + }, + { + "DocsId": "M:System.Windows.Forms.TextBoxBase.OnDpiChangedAfterParent(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1860C9-L1870C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnHideSelectionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1462C9-L1466C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1874C9-L1878C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnModifiedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1470C9-L1474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1882C9-L1886C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1481C9-L1503C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1893C9-L1915C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnMultilineChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1507C9-L1511C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1919C9-L1923C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnPaddingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1515C9-L1517C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1927C9-L1938C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnReadOnlyChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1521C9-L1525C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1942C9-L1946C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1533C9-L1540C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1954C9-L1961C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetCharFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1557C9-L1559C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1978C9-L1980C70" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetCharIndexFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1567C9-L1586C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1988C9-L2007C22" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetLineFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1597C59-L1597C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2019C12-L2019C90" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetPositionFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1604C9-L1610C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2026C9-L2036C72" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetFirstCharIndexFromLine(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1618C9-L1620C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2044C9-L2049C41" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.GetFirstCharIndexOfCurrentLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1626C52-L1626C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2056C12-L2059C34" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.ScrollToCaret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1634C9-L1695C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2067C9-L2080C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.DeselectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1702C9-L1703C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2101C9-L2102C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Select(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1710C9-L1732C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2109C9-L2127C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.SelectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1773C9-L1775C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2173C9-L2175C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1782C9-L1793C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2182C9-L2193C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1971C9-L1979C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2368C9-L2377C36" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.Undo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1985C27-L1985C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2384C12-L2384C62" }, { "DocsId": "M:System.Windows.Forms.TextBoxBase.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L2082C9-L2126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L3049C9-L3110C6" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.AcceptsTabChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L137C16-L137C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L145C16-L145C66" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L313C16-L313C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L320C16-L320C45" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L321C16-L321C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L328C16-L328C52" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L337C16-L337C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L344C16-L344C58" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.BorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L376C16-L376C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L399C16-L399C67" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L459C16-L459C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L499C16-L499C35" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L467C16-L467C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L507C16-L507C40" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.HideSelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L542C16-L542C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L567C16-L567C69" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.ModifiedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L704C16-L704C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L733C16-L733C64" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.MultilineChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L754C16-L754C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L786C16-L786C65" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L774C16-L774C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L838C16-L838C44" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L964C16-L964C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1217C16-L1217C64" }, { "DocsId": "E:System.Windows.Forms.TextBoxBase.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1434C16-L1434C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1777C16-L1777C35" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.AcceptsTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L121C13-L121C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L130C16-L130C43" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.ShortcutsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L153C13-L153C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L159C16-L159C49" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L247C13-L247C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L254C16-L254C41" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L282C13-L294C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L289C13-L301C43" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L305C16-L305C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L312C16-L312C36" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L329C16-L329C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L336C16-L336C42" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L351C16-L351C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L358C16-L358C28" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.CanEnableIme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L382C45-L382C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L407C12-L407C63" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.CanUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L391C28-L391C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L417C12-L418C79" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L403C13-L440C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L430C13-L480C23" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L451C16-L451C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L491C16-L491C35" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.DefaultCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L475C13-L475C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L515C13-L515C34" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L487C13-L487C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L524C12-L524C42" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L501C13-L507C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L534C16-L536C38" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.HideSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L524C13-L524C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L550C16-L550C46" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.ImeModeBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L553C16-L553C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L578C16-L580C30" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.Lines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L572C13-L611C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L600C13-L641C30" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L639C13-L639C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L661C16-L661C26" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.Modified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L665C13-L679C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L687C13-L705C33" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L721C13-L721C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L748C16-L748C42" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L763C16-L763C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L818C16-L818C28" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L801C13-L807C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L859C9-L869C53" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L927C13-L927C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1176C16-L1176C41" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L980C13-L981C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1233C13-L1235C56" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.SelectionLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1034C13-L1035C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1286C13-L1287C27" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.SelectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1061C13-L1062C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1313C13-L1314C26" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1079C16-L1079C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1331C16-L1331C25" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.TextLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1099C12-L1099C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1353C12-L1353C81" }, { "DocsId": "P:System.Windows.Forms.TextBoxBase.WordWrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1165C13-L1165C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs#L1426C16-L1426C41" } ], "DocsId": "T:System.Windows.Forms.TextBoxBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxBase.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TextBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L44C9-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L44C9-L46C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.TextBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L53C9-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L53C9-L54C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TextBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L61C9-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L61C9-L62C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.TextBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L69C9-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L69C9-L73C6" }, { "DocsId": "M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.TextBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L80C9-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L80C9-L85C6" }, { "DocsId": "P:System.Windows.Forms.TextBoxRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L23C39-L23C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs#L23C39-L23C70" } ], "DocsId": "T:System.Windows.Forms.TextBoxRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TextBoxRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TypeValidationEventArgs.#ctor(System.Type,System.Boolean,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L11C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L11C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.TypeValidationEventArgs.ValidatingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L22C35-L22C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L22C35-L22C39" }, { "DocsId": "P:System.Windows.Forms.TypeValidationEventArgs.IsValidInput", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L27C32-L27C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L27C32-L27C36" }, { "DocsId": "P:System.Windows.Forms.TypeValidationEventArgs.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L33C30-L33C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L33C30-L33C34" }, { "DocsId": "P:System.Windows.Forms.TypeValidationEventArgs.ReturnValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L38C34-L38C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L38C34-L38C38" }, { "DocsId": "P:System.Windows.Forms.TypeValidationEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L43C26-L43C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs#L43C26-L43C30" } ], "DocsId": "T:System.Windows.Forms.TypeValidationEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TypeValidationEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TypeValidationEventHandler.Invoke(System.Object,System.Windows.Forms.TypeValidationEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TypeValidationEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TypeValidationEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TypeValidationEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TypeValidationEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TextBox/TypeValidationEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ArrowDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrowDirection.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrowDirection.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrowDirection.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrowDirection.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" } ], "DocsId": "T:System.Windows.Forms.ArrowDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ArrowDirection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.CaptionButton.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "DocsId": "F:System.Windows.Forms.CaptionButton.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "DocsId": "F:System.Windows.Forms.CaptionButton.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "DocsId": "F:System.Windows.Forms.CaptionButton.Maximize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "DocsId": "F:System.Windows.Forms.CaptionButton.Minimize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "DocsId": "F:System.Windows.Forms.CaptionButton.Restore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" } ], "DocsId": "T:System.Windows.Forms.CaptionButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/CaptionButton.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MergeAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "DocsId": "F:System.Windows.Forms.MergeAction.Append", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "DocsId": "F:System.Windows.Forms.MergeAction.Insert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "DocsId": "F:System.Windows.Forms.MergeAction.Replace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "DocsId": "F:System.Windows.Forms.MergeAction.Remove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "DocsId": "F:System.Windows.Forms.MergeAction.MatchOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" } ], "DocsId": "T:System.Windows.Forms.MergeAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/MergeAction.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.OpacityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L21C9-L26C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L21C9-L26C57" }, { "DocsId": "M:System.Windows.Forms.OpacityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L34C9-L89C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L34C9-L89C58" }, { "DocsId": "M:System.Windows.Forms.OpacityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L101C9-L107C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs#L101C9-L107C73" }, { "DocsId": "M:System.Windows.Forms.OpacityConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs" } ], "DocsId": "T:System.Windows.Forms.OpacityConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/OpacityConverter.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L35C52-L35C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L35C52-L35C86" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L38C58-L38C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L38C58-L38C98" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L41C51-L41C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L41C51-L41C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L44C57-L44C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L44C57-L44C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L47C51-L47C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L47C51-L47C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L50C57-L50C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L50C57-L50C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L53C48-L53C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L53C48-L53C78" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L56C49-L56C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L56C49-L56C80" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L59C55-L59C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L59C55-L59C92" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L62C56-L62C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L62C56-L62C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L65C53-L65C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L65C53-L65C88" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L68C56-L68C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L68C56-L68C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L71C57-L71C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L71C57-L71C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L74C54-L74C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L74C54-L74C90" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L77C55-L77C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L77C55-L77C92" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L80C56-L80C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L80C56-L80C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L83C53-L83C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L83C53-L83C88" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.CheckBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L86C44-L86C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L86C44-L86C70" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.CheckSelectedBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L89C52-L89C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L89C52-L89C86" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.CheckPressedBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L92C51-L92C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L92C51-L92C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.GripDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L95C37-L95C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L95C37-L95C56" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.GripLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L98C38-L98C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L98C38-L98C58" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L101C53-L101C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L101C53-L101C88" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L104C54-L104C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L104C54-L104C90" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L107C51-L107C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L107C51-L107C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L110C61-L110C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L110C61-L110C104" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L113C62-L113C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L113C62-L113C106" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L116C59-L116C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L116C59-L116C100" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L119C51-L119C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L119C51-L119C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L122C49-L122C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L122C49-L122C80" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L125C39-L125C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L125C39-L125C60" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L128C45-L128C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L128C45-L128C72" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L131C43-L131C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L131C43-L131C68" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L134C58-L134C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L134C58-L134C98" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L137C56-L137C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L137C56-L137C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L140C57-L140C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L140C57-L140C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L143C58-L143C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L143C58-L143C98" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L146C55-L146C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L146C55-L146C92" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.RaftingContainerGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L149C58-L149C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L149C58-L149C98" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.RaftingContainerGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L152C56-L152C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L152C56-L152C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.SeparatorDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L155C42-L155C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L155C42-L155C66" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.SeparatorLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L158C43-L158C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L158C43-L158C68" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.StatusStripBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L161C46-L161C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L161C46-L161C74" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.StatusStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L164C53-L164C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L164C53-L164C88" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.StatusStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L167C51-L167C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L167C51-L167C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L170C44-L170C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L170C44-L170C70" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripDropDownBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L173C56-L173C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L173C56-L173C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L176C51-L176C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L176C51-L176C84" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L179C52-L179C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L179C52-L179C86" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L182C49-L182C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L182C49-L182C80" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L185C63-L185C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L185C63-L185C108" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L188C61-L188C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L188C61-L188C104" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L191C56-L191C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L191C56-L191C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L194C54-L194C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L194C54-L194C90" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L197C56-L197C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L197C56-L197C94" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L200C57-L200C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L200C57-L200C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L203C54-L203C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs#L203C54-L203C90" } ], "DocsId": "T:System.Windows.Forms.ProfessionalColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColors.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ProfessionalColorTable.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L14C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L14C5-L29C6" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.UseSystemColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L74C16-L74C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L74C16-L74C32" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L107C53-L107C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L107C53-L107C104" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L110C59-L110C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L110C59-L110C78" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L113C52-L113C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L113C52-L113C102" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L116C58-L116C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L116C58-L116C80" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L119C52-L119C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L119C52-L119C102" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlightBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L122C58-L122C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L122C58-L122C80" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L125C49-L125C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L125C49-L125C102" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L128C50-L128C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L128C50-L128C103" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L131C56-L131C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L131C56-L131C111" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L134C57-L134C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L134C57-L134C113" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L137C54-L137C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L137C54-L137C107" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L140C57-L140C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L140C57-L140C113" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L143C58-L143C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L143C58-L143C115" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L146C55-L146C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L146C55-L146C109" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L149C56-L149C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L149C56-L149C112" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L152C57-L152C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L152C57-L152C114" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L155C54-L155C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L155C54-L155C108" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.CheckBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L157C45-L157C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L157C45-L157C98" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.CheckSelectedBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L160C53-L160C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L160C53-L160C115" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.CheckPressedBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L163C52-L163C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L163C52-L163C114" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.GripDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L166C38-L166C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L166C38-L166C86" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.GripLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L169C39-L169C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L169C39-L169C93" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L172C54-L172C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L172C54-L172C105" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L175C55-L175C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L175C55-L175C107" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L178C52-L178C147" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L178C52-L178C147" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L181C62-L181C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L181C62-L181C128" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L184C63-L184C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L184C63-L184C130" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L187C60-L187C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L187C60-L187C124" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L190C52-L190C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L190C52-L190C111" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L193C50-L193C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L193C50-L193C107" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L196C46-L196C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L196C46-L196C100" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L199C44-L199C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L199C44-L199C96" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L202C40-L202C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L202C40-L202C90" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L205C59-L205C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L205C59-L205C115" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L208C57-L208C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L208C57-L208C111" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L211C58-L211C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L211C58-L211C118" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L214C59-L214C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L214C59-L214C126" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L217C56-L217C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L217C56-L217C114" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L220C59-L220C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L220C59-L220C118" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L223C57-L223C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L223C57-L223C114" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.SeparatorDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L226C43-L226C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L226C43-L226C93" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.SeparatorLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L229C44-L229C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L229C44-L229C99" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.StatusStripBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L233C47-L233C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L233C47-L233C75" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.StatusStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L236C54-L236C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L236C54-L236C113" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.StatusStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L239C52-L239C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L239C52-L239C109" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L242C45-L242C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L242C45-L242C89" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripDropDownBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L245C57-L245C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L245C57-L245C103" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L248C52-L248C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L248C52-L248C103" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L251C53-L251C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L251C53-L251C105" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L254C50-L254C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L254C50-L254C99" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L257C64-L257C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L257C64-L257C123" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L260C62-L260C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L260C62-L260C119" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L263C57-L263C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L263C57-L263C116" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L266C55-L266C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L266C55-L266C112" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L269C57-L269C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L269C57-L269C111" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L272C58-L272C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L272C58-L272C113" }, { "DocsId": "P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L275C55-L275C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs#L275C55-L275C107" } ], "DocsId": "T:System.Windows.Forms.ProfessionalColorTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ProfessionalColorTable.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusStrip.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L29C5-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L29C5-L41C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L250C9-L250C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L250C9-L250C54" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L255C9-L255C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L255C9-L255C63" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L260C9-L267C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L260C9-L267C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L322C9-L328C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L322C9-L328C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L332C9-L362C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L332C9-L362C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.SetDisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L379C9-L441C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L379C9-L441C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.OnSpringTableLayoutCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L450C9-L565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L450C9-L565C6" }, { "DocsId": "M:System.Windows.Forms.StatusStrip.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L569C9-L610C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L569C9-L610C6" }, { "DocsId": "E:System.Windows.Forms.StatusStrip.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L136C16-L136C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L136C16-L136C44" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.CanOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L49C16-L49C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L49C16-L49C32" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.DefaultShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L57C13-L57C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L57C13-L57C26" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L65C13-L65C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L65C13-L65C38" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L73C13-L90C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L73C13-L90C64" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.DefaultDock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L99C13-L99C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L99C13-L99C37" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L106C16-L106C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L106C16-L106C25" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.GripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L113C16-L113C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L113C16-L113C30" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.LayoutStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L120C16-L120C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L120C16-L120C32" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L129C16-L129C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L129C16-L129C28" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.ShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L155C16-L155C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L155C16-L155C37" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.SizingGrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L189C13-L189C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L189C13-L189C46" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.SizeGripBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L207C13-L230C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L207C13-L230C47" }, { "DocsId": "P:System.Windows.Forms.StatusStrip.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L239C16-L239C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs#L239C16-L239C28" } ], "DocsId": "T:System.Windows.Forms.StatusStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/StatusStrip.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStrip.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L40C5-L153C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L40C5-L153C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.#ctor(System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L156C11-L159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L156C11-L159C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#get_ToolStripPanelCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1395C13-L1401C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1395C13-L1401C39" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#get_ToolStripPanelRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1407C16-L1407C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1407C16-L1407C53" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#set_ToolStripPanelRow(System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1410C13-L1448C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1410C13-L1448C10" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#BeginDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1718C48-L1718C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1718C48-L1718C76" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1762C97-L1766C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1762C97-L1766C18" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1770C9-L1770C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1770C9-L1770C91" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1871C9-L1951C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1871C9-L1951C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#EndDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1997C9-L1999C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1997C9-L1999C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.GetNextItem(System.Windows.Forms.ToolStripItem,System.Windows.Forms.ArrowDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2045C17-L2054C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2045C17-L2054C115" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2546C9-L2546C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2546C9-L2546C96" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2549C9-L2549C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2549C9-L2549C100" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2593C9-L2634C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2593C9-L2634C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2671C9-L2721C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2671C9-L2721C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2734C9-L2798C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2734C9-L2798C65" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2831C9-L2855C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L2831C9-L2855C22" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnBeginDrag(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3106C9-L3110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3106C9-L3110C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnEndDrag(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3114C9-L3116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3114C9-L3116C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnDockChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3120C9-L3121C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3120C9-L3121C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnRendererChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3125C9-L3128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3125C9-L3128C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3132C9-L3142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3132C9-L3142C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3161C9-L3166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3161C9-L3166C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3170C9-L3178C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3170C9-L3178C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3183C9-L3186C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3183C9-L3186C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnItemAdded(System.Windows.Forms.ToolStripItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3190C9-L3201C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3190C9-L3201C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3208C9-L3209C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3208C9-L3209C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnItemRemoved(System.Windows.Forms.ToolStripItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3214C9-L3217C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3214C9-L3217C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3245C9-L3266C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3245C9-L3266C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnLayoutCompleted(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3270C9-L3271C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3270C9-L3271C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnLayoutStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3275C9-L3276C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3275C9-L3276C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3280C9-L3283C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3280C9-L3283C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3287C9-L3292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3287C9-L3292C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3306C9-L3335C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3306C9-L3335C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3342C9-L3388C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3342C9-L3388C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3395C9-L3397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3395C9-L3397C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnMouseCaptureChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3401C9-L3410C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3401C9-L3410C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3417C9-L3436C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3417C9-L3436C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3440C9-L3599C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3440C9-L3599C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3604C9-L3618C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3604C9-L3618C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3629C9-L3660C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3629C9-L3660C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3664C9-L3669C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3664C9-L3669C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnPaintGrip(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3681C9-L3684C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3681C9-L3684C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnScroll(System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3688C9-L3694C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3688C9-L3694C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.OnTabStopChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3713C9-L3715C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3713C9-L3715C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3727C9-L3758C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3727C9-L3758C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3851C57-L3851C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3851C57-L3851C84" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point,System.Windows.Forms.GetChildAtPointSkip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3854C85-L3854C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3854C85-L3854C120" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.GetItemAt(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3865C54-L3865C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3865C54-L3865C80" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.GetItemAt(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3873C9-L3909C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3873C9-L3909C21" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.RestoreFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3997C9-L4017C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L3997C9-L4017C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ResetMinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4027C9-L4028C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4027C9-L4028C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetItemLocation(System.Windows.Forms.ToolStripItem,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4063C9-L4071C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4063C9-L4071C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetItemParent(System.Windows.Forms.ToolStripItem,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4078C9-L4079C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4078C9-L4079C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4083C9-L4105C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4083C9-L4105C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4131C9-L4147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4131C9-L4147C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetAutoScrollMargin(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4212C9-L4213C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4212C9-L4213C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.SetDisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4236C9-L4370C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4236C9-L4370C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4477C9-L4477C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4477C9-L4477C73" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4578C9-L4675C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4578C9-L4690C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4680C15-L4680C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4695C15-L4695C28" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#Layout#IArrangedElement#SetBounds(System.Drawing.Rectangle,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4685C9-L4686C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4700C9-L4701C6" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.System#Windows#Forms#Layout#IArrangedElement#get_ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4690C15-L4690C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4705C15-L4705C47" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4695C9-L4695C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4710C9-L4710C52" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4700C9-L4700C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4715C9-L4715C77" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L214C16-L214C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L214C16-L214C45" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.BeginDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L374C16-L374C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L374C16-L374C58" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L461C16-L461C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L461C16-L461C53" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ControlAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L476C16-L476C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L476C16-L476C42" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L495C16-L495C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L495C16-L495C43" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ControlRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L503C16-L503C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L503C16-L503C44" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.EndDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L511C16-L511C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L511C16-L511C56" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L768C16-L768C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L768C16-L768C46" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ItemAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1050C16-L1050C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1050C16-L1050C58" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ItemClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1061C16-L1061C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1061C16-L1061C60" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.ItemRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1093C16-L1093C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1093C16-L1093C60" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.LayoutCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1257C16-L1257C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1257C16-L1257C64" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.LayoutStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1267C16-L1267C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1267C16-L1267C67" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.PaintGrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1380C16-L1380C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1380C16-L1380C58" }, { "DocsId": "E:System.Windows.Forms.ToolStrip.RendererChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1531C16-L1531C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1531C16-L1531C64" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L191C16-L191C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L191C16-L191C29" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L223C16-L223C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L223C16-L223C31" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L235C16-L235C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L235C16-L235C37" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L244C16-L244C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L244C16-L244C38" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AutoScrollPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L253C16-L253C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L253C16-L253C39" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AllowClickThrough", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L266C37-L266C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L266C37-L266C41" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L270C16-L270C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L270C16-L270C30" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AllowItemReorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L300C15-L300C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L300C15-L300C64" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.AllowMerge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L335C15-L335C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L335C15-L335C58" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L347C16-L347C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L347C16-L347C27" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L366C16-L366C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L366C16-L366C30" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L382C13-L394C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L382C13-L394C25" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.CanOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L411C16-L411C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L411C16-L411C52" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L453C13-L453C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L453C13-L453C42" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L469C16-L469C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L469C16-L469C29" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L485C16-L485C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L485C16-L485C27" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L520C13-L530C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L520C13-L530C33" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L539C44-L541C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L539C44-L541C28" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L549C13-L549C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L549C13-L549C36" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L553C49-L553C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L553C49-L553C62" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultDock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L555C48-L555C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L555C48-L555C61" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultGripMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L558C9-L558C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L558C9-L558C87" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L560C55-L560C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L560C55-L560C59" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DefaultDropDownDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L569C13-L613C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L569C13-L613C30" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L642C16-L642C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L642C16-L642C25" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L713C13-L715C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L713C13-L715C36" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L729C13-L748C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L729C13-L748C25" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L758C16-L758C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L758C16-L758C30" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.GripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L804C13-L804C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L804C13-L804C40" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.GripDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L824C13-L825C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L824C13-L825C105" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.GripMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L838C13-L838C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L838C13-L838C32" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.GripRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L854C13-L854C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L854C13-L854C94" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.HasChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L863C16-L863C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L863C16-L863C32" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.HorizontalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L902C16-L902C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L902C16-L902C37" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.ImageScalingSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L912C13-L912C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L912C13-L912C45" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L952C13-L952C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L952C13-L952C31" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.IsCurrentlyDragging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1008C13-L1008C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1008C13-L1008C54" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1040C13-L1042C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1040C13-L1042C45" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.IsDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1101C15-L1101C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1101C15-L1101C50" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.LayoutSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1160C45-L1160C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1160C45-L1160C49" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.LayoutStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1172C13-L1183C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1172C13-L1183C33" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1275C13-L1275C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1275C13-L1275C34" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.MaxItemSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1289C13-L1289C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1289C13-L1289C42" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.OverflowButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1348C13-L1359C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1348C13-L1359C45" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1374C38-L1374C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1374C38-L1374C42" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#ToolStripPanelCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1395C13-L1401C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1395C13-L1401C39" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.System#Windows#Forms#ISupportToolStripPanel#ToolStripPanelRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1407C16-L1407C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1407C16-L1407C53" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1458C13-L1458C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1458C13-L1458C53" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.Renderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1484C13-L1513C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1484C13-L1513C30" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.RenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1541C13-L1557C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1541C13-L1557C50" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.ShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1604C13-L1604C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1604C13-L1604C38" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1660C16-L1660C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1660C16-L1660C28" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1687C13-L1694C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1687C13-L1694C34" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.VerticalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1716C52-L1716C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L1716C52-L1716C71" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4680C15-L4680C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4695C15-L4695C28" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.System#Windows#Forms#Layout#IArrangedElement#ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4690C15-L4690C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs#L4705C15-L4705C47" }, { "DocsId": "T:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripArrowRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.ArrowDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L10C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L10C5-L25C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L27C39-L27C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L27C39-L27C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L31C16-L31C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L31C16-L31C68" }, { "DocsId": "P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L41C39-L41C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L41C39-L41C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L43C32-L43C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L45C34-L45C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs#L45C34-L45C38" } ], "DocsId": "T:System.Windows.Forms.ToolStripArrowRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripArrowRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripArrowRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripArrowRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripArrowRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripArrowRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripArrowRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripArrowRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripArrowRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L24C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L30C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L36C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L48C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L16C5-L54C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L157C12-L157C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L157C12-L157C53" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L161C9-L163C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L161C9-L163C25" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.OnCheckedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L179C12-L179C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L179C12-L179C75" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.OnCheckStateChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L186C9-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L186C9-L195C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L202C9-L223C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L202C9-L223C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L227C9-L233C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L227C9-L233C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripButton.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L241C9-L247C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L241C9-L247C47" }, { "DocsId": "E:System.Windows.Forms.ToolStripButton.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L120C16-L120C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L120C16-L120C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripButton.CheckStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L130C16-L130C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L130C16-L130C66" }, { "DocsId": "P:System.Windows.Forms.ToolStripButton.AutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L59C16-L59C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L59C16-L59C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripButton.CheckOnClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L66C32-L66C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L66C32-L66C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L76C16-L76C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L76C16-L76C51" }, { "DocsId": "P:System.Windows.Forms.ToolStripButton.CheckState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L95C16-L95C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L95C16-L95C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripButton.DefaultAutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L134C51-L134C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs#L134C51-L134C55" } ], "DocsId": "T:System.Windows.Forms.ToolStripButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L26C11-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L26C11-L30C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L33C11-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L33C11-L36C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L40C11-L42C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L40C11-L42C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L310C33-L310C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L310C33-L310C58" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L311C31-L311C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L311C31-L311C54" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.FindString(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L312C40-L312C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L312C40-L312C70" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.FindString(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L313C56-L313C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L313C56-L313C98" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L314C45-L314C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L314C45-L314C80" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L315C61-L315C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L315C61-L315C108" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.GetItemHeight(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L316C43-L316C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L316C43-L316C80" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.Select(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L317C49-L317C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L317C49-L317C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.SelectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L318C31-L318C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L318C31-L318C54" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L324C9-L327C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L324C9-L327C30" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnDropDown(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L362C9-L369C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L362C9-L369C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnDropDownClosed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L373C9-L382C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L373C9-L382C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnDropDownStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L386C9-L387C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L386C9-L387C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnSelectedIndexChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L391C9-L392C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L391C9-L392C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnSelectionChangeCommitted(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L396C9-L397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L396C9-L397C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnTextUpdate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L401C9-L402C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L401C9-L402C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L406C9-L418C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L406C9-L418C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L422C9-L434C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L422C9-L434C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripComboBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L448C9-L448C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L448C9-L448C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L115C16-L115C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L115C16-L115C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L123C16-L123C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L123C16-L123C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.DropDownClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L131C16-L131C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L131C16-L131C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L139C16-L139C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L139C16-L139C69" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L250C16-L250C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L250C16-L250C69" }, { "DocsId": "E:System.Windows.Forms.ToolStripComboBox.TextUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L304C16-L304C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L304C16-L304C59" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L59C15-L59C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L59C15-L59C56" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.AutoCompleteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L69C15-L69C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L69C15-L69C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L79C15-L79C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L79C15-L79C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L88C16-L88C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L88C16-L88C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L97C16-L97C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L97C16-L97C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L103C33-L103C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L103C33-L103C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L105C44-L105C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L105C44-L105C56" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L107C58-L109C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L107C58-L109C74" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DropDownHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L150C15-L150C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L150C15-L150C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DropDownStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L160C15-L160C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L160C15-L160C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DropDownWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L168C15-L168C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L168C15-L168C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.DroppedDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L177C15-L177C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L177C15-L177C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L187C15-L187C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L187C15-L187C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.IntegralHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L197C15-L197C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L197C15-L197C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L213C13-L213C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L213C13-L213C35" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.MaxDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L223C15-L223C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L223C15-L223C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L233C15-L233C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L233C15-L233C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L242C15-L242C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L242C15-L242C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.SelectedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L260C15-L260C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L260C15-L260C44" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L269C15-L269C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L269C15-L269C44" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.SelectionLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L278C15-L278C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L278C15-L278C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.SelectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L287C15-L287C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L287C15-L287C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripComboBox.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L296C15-L296C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs#L296C15-L296C38" } ], "DocsId": "T:System.Windows.Forms.ToolStripComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripComboBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripContainer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L19C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L19C5-L55C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContainer.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L351C12-L351C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L351C12-L351C56" }, { "DocsId": "M:System.Windows.Forms.ToolStripContainer.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L356C9-L356C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L356C9-L356C87" }, { "DocsId": "M:System.Windows.Forms.ToolStripContainer.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L361C9-L375C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L361C9-L375C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContainer.OnSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L379C31-L389C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L379C31-L389C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L98C16-L98C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L98C16-L98C46" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L116C16-L116C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L116C16-L116C52" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L134C16-L134C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L134C16-L134C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L190C16-L190C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L190C16-L190C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.ContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L207C16-L207C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L207C16-L207C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L226C16-L226C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L226C16-L226C43" }, { "DocsId": "E:System.Windows.Forms.ToolStripContainer.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L252C16-L252C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L252C16-L252C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L62C16-L62C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L62C16-L62C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L71C16-L71C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L71C16-L71C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L80C16-L80C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L80C16-L80C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L89C16-L89C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L89C16-L89C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L107C16-L107C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L107C16-L107C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L125C16-L125C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L125C16-L125C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.BottomToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L146C13-L146C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L146C13-L146C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L157C13-L157C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L157C13-L157C49" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.ContentPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L173C13-L173C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L173C13-L173C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L182C16-L182C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L182C16-L182C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L199C16-L199C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L199C16-L199C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L217C16-L217C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L217C16-L217C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L234C13-L234C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L234C13-L234C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L243C16-L243C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L243C16-L243C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.LeftToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L264C13-L264C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L264C13-L264C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L275C13-L275C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L275C13-L275C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.RightToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L291C13-L291C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L291C13-L291C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L302C13-L302C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L302C13-L302C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.TopToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L320C13-L320C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L320C13-L320C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L331C13-L331C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L331C13-L331C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripContainer.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L347C16-L347C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs#L347C16-L347C29" } ], "DocsId": "T:System.Windows.Forms.ToolStripContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContainer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripContentPanel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L24C5-L28C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L24C5-L28C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanel.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L300C9-L305C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L300C9-L305C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanel.OnLoad(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L312C9-L313C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L312C9-L313C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L318C9-L326C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L318C9-L326C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanel.OnRendererChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L331C9-L348C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L331C9-L348C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L115C16-L115C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L115C16-L115C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L132C16-L132C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L132C16-L132C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L150C16-L150C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L150C16-L150C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L158C16-L158C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L158C16-L158C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L176C16-L176C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L176C16-L176C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L221C16-L221C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L221C16-L221C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L238C16-L238C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L238C16-L238C44" }, { "DocsId": "E:System.Windows.Forms.ToolStripContentPanel.RendererChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L289C16-L289C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L289C16-L289C64" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L41C13-L41C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L41C13-L41C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L53C16-L53C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L53C16-L53C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L61C16-L61C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L61C16-L61C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L70C16-L70C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L70C16-L70C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L79C16-L79C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L79C16-L79C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L88C16-L88C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L88C16-L88C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L94C16-L94C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L94C16-L94C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L124C16-L124C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L124C16-L124C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L141C16-L141C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L141C16-L141C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L167C16-L167C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L167C16-L167C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L185C16-L185C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L185C16-L185C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L194C16-L194C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L194C16-L194C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L204C16-L204C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L204C16-L204C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L213C16-L213C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L213C16-L213C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L230C16-L230C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L230C16-L230C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.Renderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L263C13-L263C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L263C13-L263C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanel.RenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L277C13-L277C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs#L277C13-L277C48" } ], "DocsId": "T:System.Windows.Forms.ToolStripContentPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripContentPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L13C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L13C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L22C32-L22C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L27C58-L27C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L27C58-L27C62" }, { "DocsId": "P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L29C27-L29C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs#L29C27-L29C31" } ], "DocsId": "T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripContentPanelRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanelRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripContentPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanelRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripContentPanelRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripContentPanelRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripContentPanelRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripContentPanelRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L18C5-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L18C5-L48C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.#ctor(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L51C11-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L51C11-L54C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L458C9-L468C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L458C9-L468C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L471C28-L471C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L471C28-L471C51" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L475C9-L477C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L475C9-L477C55" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L618C52-L618C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L618C52-L618C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L623C55-L623C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L623C55-L623C85" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L625C52-L625C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L625C52-L625C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L630C56-L630C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L630C56-L630C87" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L632C57-L632C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L632C57-L632C89" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L634C63-L634C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L634C63-L634C101" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L636C55-L636C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L636C55-L636C85" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnBoundsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L643C9-L665C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L643C9-L665C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L673C5-L673C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L673C5-L673C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L678C5-L678C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L678C5-L678C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnParentChanged(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L685C9-L699C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L685C9-L699C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnSubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L708C9-L745C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L708C9-L745C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnUnsubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L753C9-L790C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L753C9-L790C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnValidating(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L792C63-L792C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L792C63-L792C101" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnValidated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L794C56-L794C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L794C56-L794C87" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.OnHostedControlResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L811C9-L812C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L811C9-L812C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L814C84-L814C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L814C84-L814C89" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L817C12-L817C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L817C12-L817C102" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L819C72-L819C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L819C72-L819C77" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L825C9-L843C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L825C9-L843C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L846C46-L846C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L846C46-L846C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L849C46-L849C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L849C46-L849C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L894C12-L894C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L894C12-L894C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.DisplayStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L170C16-L170C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L170C16-L170C68" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L205C16-L205C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L205C16-L205C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.GotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L225C16-L225C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L225C16-L225C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L269C16-L269C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L269C16-L269C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.LostFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L282C16-L282C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L282C16-L282C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L293C16-L293C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L293C16-L293C56" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L304C16-L304C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L304C16-L304C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L315C16-L315C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L315C16-L315C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.Validating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L438C16-L438C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L438C16-L438C59" }, { "DocsId": "E:System.Windows.Forms.ToolStripControlHost.Validated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L446C16-L446C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L446C16-L446C58" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L58C16-L58C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L58C16-L58C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L71C16-L71C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L71C16-L71C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L81C16-L81C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L81C16-L81C53" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.CanSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L88C39-L88C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L88C39-L88C97" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L95C16-L95C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L95C16-L95C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.ControlAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L103C16-L103C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L103C16-L103C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L121C31-L121C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L121C31-L121C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L146C13-L153C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L146C13-L153C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.DisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L162C16-L162C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L162C16-L162C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L184C16-L184C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L184C16-L184C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L191C16-L191C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L191C16-L191C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L197C16-L197C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L197C16-L197C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L211C36-L211C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L211C36-L211C59" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L215C16-L215C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L215C16-L215C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L234C16-L234C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L234C16-L234C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.ImageScaling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L243C16-L243C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L243C16-L243C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.ImageTransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L252C16-L252C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L252C16-L252C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.ImageAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L261C16-L261C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L261C16-L261C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L328C13-L328C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L328C13-L328C83" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L346C16-L346C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L346C16-L346C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L350C38-L350C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L350C38-L350C78" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L354C16-L354C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L354C16-L354C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L388C16-L388C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L388C16-L388C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L405C16-L405C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L405C16-L405C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L413C16-L413C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L413C16-L413C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L422C16-L422C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L422C16-L422C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripControlHost.TextImageRelation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L430C16-L430C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs#L430C16-L430C38" }, { "DocsId": "T:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripControlHost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L16C5-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L16C5-L49C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L901C9-L907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L901C9-L907C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L919C74-L919C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L919C74-L919C117" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L923C9-L933C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L923C9-L933C31" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L938C9-L954C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L938C9-L954C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L958C9-L965C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L958C9-L965C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Close(System.Windows.Forms.ToolStripDropDownCloseReason)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L979C9-L981C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L979C9-L981C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1101C9-L1102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1101C9-L1102C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1106C9-L1107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1106C9-L1107C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1115C9-L1118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1115C9-L1118C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1124C13-L1138C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1124C13-L1138C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1144C9-L1146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1144C9-L1146C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnOpening(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1150C9-L1151C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1150C9-L1151C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnOpened(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1155C9-L1156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1155C9-L1156C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1160C9-L1193C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1160C9-L1193C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1197C9-L1200C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1197C9-L1200C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1204C9-L1224C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1204C9-L1224C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1350C9-L1379C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1350C9-L1379C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ProcessDialogChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1385C9-L1386C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1385C9-L1386C48" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1389C9-L1389C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1389C9-L1389C63" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1454C9-L1486C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1454C9-L1486C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1493C9-L1506C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1493C9-L1506C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1522C9-L1526C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1522C9-L1526C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1557C9-L1783C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1557C9-L1783C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1809C9-L1810C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1809C9-L1810C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1815C9-L1827C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1815C9-L1827C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Drawing.Point,System.Windows.Forms.ToolStripDropDownDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1831C9-L1835C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1831C9-L1835C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1840C9-L1842C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1840C9-L1842C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1847C9-L1850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1847C9-L1850C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point,System.Windows.Forms.ToolStripDropDownDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1854C9-L1857C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1854C9-L1857C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.Show(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1862C9-L1865C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1862C9-L1865C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1890C9-L1924C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L1890C9-L1924C24" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L142C16-L142C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L142C16-L142C52" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L149C16-L149C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L149C16-L149C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.BindingContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L156C16-L156C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L156C16-L156C51" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.ChangeUICues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L173C16-L173C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L173C16-L173C42" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.ContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L189C16-L189C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L189C16-L189C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L299C16-L299C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L299C16-L299C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Closed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L334C16-L334C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L334C16-L334C55" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Closing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L342C16-L342C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L342C16-L342C56" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L350C16-L350C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L350C16-L350C35" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L374C16-L374C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L374C16-L374C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L382C16-L382C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L382C16-L382C46" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L390C16-L390C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L390C16-L390C42" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.HelpRequested", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L430C16-L430C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L430C16-L430C43" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L438C16-L438C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L438C16-L438C44" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L489C16-L489C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L489C16-L489C37" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L497C16-L497C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L497C16-L497C38" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L505C16-L505C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L505C16-L505C35" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L513C16-L513C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L513C16-L513C35" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Opening", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L533C16-L533C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L533C16-L533C56" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Opened", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L544C16-L544C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L544C16-L544C55" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.RegionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L675C16-L675C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L675C16-L675C43" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L731C16-L731C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L731C16-L731C36" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.StyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L747C16-L747C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L747C16-L747C42" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L763C16-L763C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L763C16-L763C44" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L771C16-L771C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L771C16-L771C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L833C16-L833C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L833C16-L833C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Validated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L841C16-L841C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L841C16-L841C39" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDown.Validating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L849C16-L849C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L849C16-L849C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.AllowItemReorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L59C16-L59C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L59C16-L59C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.AllowTransparency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L71C16-L71C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L71C16-L71C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L96C16-L96C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L96C16-L96C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L105C13-L105C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L105C13-L105C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.AutoClose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L128C16-L128C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L128C16-L128C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.CanOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L165C16-L165C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L165C16-L165C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L181C16-L181C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L181C16-L181C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L203C13-L252C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L203C13-L252C23" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L258C15-L258C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L258C15-L258C44" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.DefaultShowItemToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L267C13-L267C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L267C13-L267C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.DefaultDock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L271C49-L271C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L271C49-L271C63" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L275C16-L277C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L275C16-L277C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L290C16-L290C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L290C16-L290C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.DropShadowEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L315C13-L315C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L315C13-L315C92" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L359C13-L365C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L359C13-L365C90" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.GripDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L398C16-L398C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L398C16-L398C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.GripRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L405C16-L405C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L405C16-L405C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.GripMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L413C16-L413C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L413C16-L413C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.GripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L422C16-L422C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L422C16-L422C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.IsAutoGenerated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L450C13-L450C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L450C13-L450C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L525C16-L525C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L525C16-L525C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.MaxItemSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L552C13-L552C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L552C13-L552C70" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Opacity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L568C16-L568C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L568C16-L568C65" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.OverflowButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L599C58-L599C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L599C58-L599C77" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.OwnerItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L605C16-L605C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L605C16-L605C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Region", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L667C16-L667C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L667C16-L667C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L700C13-L713C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L700C13-L713C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L739C16-L739C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L739C16-L739C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L781C16-L781C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L781C16-L781C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.TopMost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L788C15-L788C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L788C15-L788C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.TopLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L798C13-L798C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L798C13-L798C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L823C16-L823C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L823C16-L823C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L862C16-L862C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs#L862C16-L862C28" }, { "DocsId": "T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L32C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L38C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L44C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L50C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L50C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L56C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L56C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L17C5-L62C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L66C9-L66C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L66C9-L66C66" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.CreateDefaultDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L115C9-L115C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L115C9-L115C71" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L131C9-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L131C9-L148C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L152C9-L166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L152C9-L166C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L170C9-L172C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L170C9-L172C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L179C9-L213C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L179C9-L213C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownButton.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L218C9-L225C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L218C9-L225C22" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownButton.AutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L72C16-L72C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L72C16-L72C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownButton.DefaultAutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L80C13-L80C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L80C13-L80C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L91C13-L91C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs#L91C13-L91C39" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosedEventArgs.#ctor(System.Windows.Forms.ToolStripDropDownCloseReason)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownClosedEventArgs.CloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs#L13C55-L13C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs#L13C55-L13C59" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownClosedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosedEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripDropDownClosedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripDropDownClosedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownClosedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.AppFocusChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.AppClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.ItemClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.Keyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownCloseReason.CloseCalled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownCloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownCloseReason.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosingEventArgs.#ctor(System.Windows.Forms.ToolStripDropDownCloseReason)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs#L10C5-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs#L10C5-L13C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownClosingEventArgs.CloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs#L15C55-L15C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs#L15C55-L15C59" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownClosingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosingEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripDropDownClosingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripDropDownClosingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownClosingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownClosingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownClosingEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.AboveLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.AboveRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.BelowLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.BelowRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripDropDownDirection.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownDirection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L33C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L38C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L20C5-L43C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L46C11-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L46C11-L52C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L292C12-L292C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L292C12-L292C59" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.CreateDefaultDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L297C9-L297C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L297C9-L297C50" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L355C9-L375C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L355C9-L375C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.HideDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L412C9-L421C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L412C9-L421C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L425C9-L427C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L425C9-L427C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnBoundsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L431C9-L437C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L431C9-L437C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L441C9-L455C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L441C9-L455C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownHide(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L471C9-L474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L471C9-L474C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownShow(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L481C9-L482C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L481C9-L482C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpened(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L491C9-L510C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L491C9-L510C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownClosed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L518C9-L539C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L518C9-L539C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L548C9-L552C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L548C9-L552C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L556C9-L561C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L556C9-L561C51" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L566C9-L635C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L566C9-L635C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItem.ShowDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L679C12-L679C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L679C12-L679C31" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDownItem.DropDownClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L201C16-L201C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L201C16-L201C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDownItem.DropDownOpening", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L223C16-L223C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L223C16-L223C61" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDownItem.DropDownOpened", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L234C16-L234C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L234C16-L234C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripDropDownItem.DropDownItemClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L253C16-L253C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L253C16-L253C68" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L65C13-L79C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L65C13-L79C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.DropDownDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L125C13-L164C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L125C13-L164C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.DropDownLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L209C13-L215C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L209C13-L215C66" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.DropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L245C12-L245C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L245C12-L245C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.HasDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L261C13-L261C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L261C13-L261C65" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.HasDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L265C12-L265C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L265C12-L265C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItem.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L273C13-L281C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs#L273C13-L281C33" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItem.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.#ctor(System.Windows.Forms.ToolStripDropDownItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L14C80-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L14C80-L17C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L35C9-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L35C9-L43C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L92C9-L97C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L92C9-L97C68" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L102C9-L120C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L102C9-L120C68" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L23C13-L29C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs#L23C13-L29C44" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownItemAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownItemAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L14C5-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L14C5-L46C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L58C12-L58C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L58C12-L58C59" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L528C9-L534C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L514C9-L520C64" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L553C9-L565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L539C9-L551C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L569C9-L571C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L555C9-L557C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L575C9-L580C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L561C9-L566C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripDropDownMenu.SetDisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L802C9-L816C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L775C9-L789C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L74C13-L85C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L74C13-L85C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L93C13-L102C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L93C13-L102C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L141C50-L141C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L141C50-L141C94" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L146C16-L146C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L146C16-L146C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.MaxItemSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L154C13-L159C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L154C13-L159C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L168C16-L168C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L168C16-L168C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L185C16-L185C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs#L185C16-L185C46" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDownMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDownMenu.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripGripDisplayStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripGripDisplayStyle.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripGripDisplayStyle.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripGripDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripDisplayStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripGripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L14C11-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L14C11-L16C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L21C36-L21C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L21C36-L21C59" }, { "DocsId": "P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L26C58-L26C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L26C58-L26C84" }, { "DocsId": "P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L31C44-L31C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs#L31C44-L31C63" } ], "DocsId": "T:System.Windows.Forms.ToolStripGripRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripGripRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripGripRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripGripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripGripRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripGripRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripGripRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripGripRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripRenderEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripGripStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripGripStyle.Hidden", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripGripStyle.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripGripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripGripStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L29C5-L159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L29C5-L159C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L162C11-L164C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L162C11-L164C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L167C11-L177C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L167C11-L177C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L966C60-L966C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L966C60-L966C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#get_Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L971C53-L971C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L971C53-L971C76" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#get_DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L973C52-L973C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L973C52-L973C58" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#get_ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L981C13-L981C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L981C13-L981C43" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#get_Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L985C50-L985C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L985C50-L985C60" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#SetBounds(System.Drawing.Rectangle,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L991C9-L992C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L991C9-L992C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#PerformLayout(System.Windows.Forms.Layout.IArrangedElement,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L996C5-L996C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L996C5-L996C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ICommandBindingTargetProvider#get_PreviousEnabledStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C65-L1734C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C65-L1734C69" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ICommandBindingTargetProvider#set_PreviousEnabledStatus(System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C70-L1734C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C70-L1734C74" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnSelectedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1796C62-L1796C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1796C62-L1796C99" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2079C73-L2079C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2079C73-L2079C112" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2092C9-L2116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2092C9-L2116C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2136C9-L2136C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2136C9-L2136C117" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2167C9-L2214C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2167C9-L2214C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.GetCurrentParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2331C45-L2331C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2331C45-L2331C51" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2346C9-L2347C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2346C9-L2347C96" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2367C33-L2367C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2367C33-L2367C73" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.Invalidate(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2377C9-L2379C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2377C9-L2379C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2408C65-L2408C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2408C65-L2408C70" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2410C67-L2410C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2410C67-L2410C72" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2633C9-L2635C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2633C9-L2635C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnBoundsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2639C9-L2641C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2639C9-L2641C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2645C9-L2647C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2645C9-L2647C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2651C5-L2651C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2651C5-L2651C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2653C62-L2653C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2653C62-L2653C84" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2655C61-L2655C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2655C61-L2655C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2657C50-L2657C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2657C50-L2657C64" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2659C61-L2659C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2659C61-L2659C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ISupportOleDropSource#OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2662C12-L2662C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2662C12-L2662C49" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ISupportOleDropSource#OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2665C12-L2665C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2665C12-L2665C59" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnAvailableChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2687C63-L2687C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2687C63-L2687C101" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnCommandChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2695C12-L2695C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2695C12-L2695C48" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnCommandCanExecuteChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2703C12-L2703C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2703C12-L2703C85" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnCommandParameterChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2710C70-L2710C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2710C70-L2710C115" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnRequestCommandExecute(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2718C12-L2718C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2718C12-L2718C69" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ICommandBindingTargetProvider#RaiseCommandChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2722C12-L2722C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2722C12-L2722C31" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ICommandBindingTargetProvider#RaiseCommandCanExecuteChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2726C12-L2726C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2726C12-L2726C41" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2739C12-L2739C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2739C12-L2739C55" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2747C12-L2747C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2747C12-L2747C54" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2755C12-L2755C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2755C12-L2755C43" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2763C12-L2763C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2763C12-L2763C54" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDisplayStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2770C12-L2770C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2770C12-L2770C53" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2778C12-L2778C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2778C12-L2778C101" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2790C12-L2790C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2790C12-L2790C89" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnDoubleClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2795C58-L2795C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2795C58-L2795C91" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2802C9-L2804C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2802C9-L2804C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2811C9-L2813C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2811C9-L2813C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2818C9-L2830C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2818C9-L2830C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnLocationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2832C62-L2832C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2832C62-L2832C99" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2839C5-L2839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2839C5-L2839C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2846C5-L2846C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2846C5-L2846C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseHover(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2853C9-L2857C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2853C9-L2857C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2862C57-L2862C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2862C57-L2862C98" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2869C5-L2869C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2869C5-L2869C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2876C5-L2876C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2876C5-L2876C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2883C5-L2883C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2883C5-L2883C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnParentBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2888C9-L2893C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2888C9-L2893C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnParentChanged(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2900C9-L2912C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2900C9-L2912C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnParentEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2918C12-L2918C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2918C12-L2918C45" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnOwnerFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2927C9-L2931C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2927C9-L2931C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnParentForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2936C9-L2941C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2936C9-L2941C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnParentRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2946C9-L2950C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2946C9-L2950C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnOwnerChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2957C9-L2972C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2957C9-L2972C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2990C9-L2992C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2990C9-L2992C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2997C9-L3001C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2997C9-L3001C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3008C9-L3015C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3008C9-L3015C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3019C9-L3023C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3019C9-L3023C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3050C9-L3063C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3050C9-L3063C22" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3069C83-L3069C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3069C83-L3069C88" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3074C9-L3075C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3074C9-L3075C21" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3125C29-L3125C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3125C29-L3125C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3216C9-L3225C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3216C9-L3225C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.SetBounds(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3232C9-L3250C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3232C9-L3250C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3369C45-L3369C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3369C45-L3369C68" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3372C48-L3372C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3372C48-L3372C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3378C45-L3378C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3378C45-L3378C68" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3384C40-L3384C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3384C40-L3384C51" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3390C41-L3390C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3390C41-L3390C53" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3398C9-L3400C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3398C9-L3400C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3405C9-L3406C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3405C9-L3406C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetRightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3412C47-L3412C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3412C47-L3412C80" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ResetTextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3418C49-L3418C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3418C49-L3418C95" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3515C9-L3520C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3515C9-L3520C32" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#CanShowToolTipsNow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3542C12-L3542C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3542C12-L3542C104" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#GetNativeScreenRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3544C62-L3544C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3544C62-L3544C88" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#GetNeighboringToolsRectangles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3548C9-L3585C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3548C9-L3585C26" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#IsHoveredWithMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3589C12-L3589C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3589C12-L3589C95" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#HasRtlModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3592C12-L3592C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3592C12-L3592C82" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#AllowsToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3594C46-L3594C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3594C46-L3594C50" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#GetOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3599C9-L3599C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3599C9-L3599C31" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#OnHooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3602C56-L3602C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3602C56-L3602C86" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#OnUnhooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3604C58-L3604C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3604C58-L3604C90" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#GetCaptionForTool(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3606C68-L3606C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3606C68-L3606C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#ShowsOwnToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3608C48-L3608C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3608C48-L3608C52" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#IsBeingTabbedTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3610C48-L3610C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3610C48-L3610C65" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IKeyboardToolTip#AllowsChildrenToShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3612C61-L3612C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L3612C61-L3612C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.AvailableChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L377C16-L377C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L377C16-L377C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.CommandCanExecuteChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L424C16-L424C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L424C16-L424C73" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.CommandChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L436C16-L436C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L436C16-L436C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.CommandParameterChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L476C16-L476C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L476C16-L476C72" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L543C16-L543C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L543C16-L543C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L595C16-L595C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L595C16-L595C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DisplayStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L727C16-L727C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L727C16-L727C68" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L741C16-L741C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L741C16-L741C60" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L760C16-L760C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L760C16-L760C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DragEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L770C16-L770C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L770C16-L770C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L780C16-L780C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L780C16-L780C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L790C16-L790C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L790C16-L790C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L843C16-L843C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L843C16-L843C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L897C16-L897C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L897C16-L897C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L941C16-L941C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L941C16-L941C61" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1259C16-L1259C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1259C16-L1259C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1323C16-L1323C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1323C16-L1323C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1334C16-L1334C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1334C16-L1334C59" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1345C16-L1345C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1345C16-L1345C59" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1356C16-L1356C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1356C16-L1356C59" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1367C16-L1367C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1367C16-L1367C58" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1378C16-L1378C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1378C16-L1378C56" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.OwnerChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1458C16-L1458C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1458C16-L1458C61" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1466C16-L1466C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1466C16-L1466C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.QueryContinueDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1599C16-L1599C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1599C16-L1599C66" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.QueryAccessibilityHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1607C16-L1607C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1607C16-L1607C71" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1740C16-L1740C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1740C16-L1740C67" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.SelectedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1787C16-L1787C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1787C16-L1787C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1899C16-L1899C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1899C16-L1899C60" }, { "DocsId": "E:System.Windows.Forms.ToolStripItem.VisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1998C16-L1998C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1998C16-L1998C63" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AccessibilityObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L195C13-L200C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L195C13-L200C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L214C16-L214C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L214C16-L214C98" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AccessibleDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L231C16-L231C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L231C16-L231C85" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AccessibleName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L248C16-L248C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L248C16-L248C78" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AccessibleRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L264C16-L264C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L264C16-L264C94" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L281C16-L281C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L281C16-L281C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L312C16-L312C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L312C16-L312C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L334C16-L334C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L334C16-L334C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.AutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L355C16-L355C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L355C16-L355C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Available", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L368C16-L368C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L368C16-L368C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L390C16-L390C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L390C16-L390C78" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Command", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L411C16-L411C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L411C16-L411C24" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.CommandParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L450C16-L450C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L450C16-L450C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L494C16-L494C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L494C16-L494C95" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L514C13-L526C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L514C13-L526C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L551C40-L551C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L551C40-L551C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ContentRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L571C13-L573C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L571C13-L573C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.CanSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L581C38-L581C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L581C38-L581C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L607C13-L607C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L607C13-L607C54" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L633C13-L633C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L633C13-L633C52" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DefaultAutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L654C50-L654C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L654C50-L654C55" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L664C13-L669C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L664C13-L669C35" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L677C49-L677C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L677C49-L677C62" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L685C16-L687C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L685C16-L687C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DefaultDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L690C72-L690C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L690C72-L690C110" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DismissWhenClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L695C59-L695C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L695C59-L695C63" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L705C16-L705C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L705C16-L705C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.DoubleClickEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L750C16-L750C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L750C16-L750C49" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L805C13-L811C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L805C13-L811C60" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L868C13-L880C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L868C13-L880C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L913C13-L924C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L913C13-L924C104" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L954C16-L954C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L954C16-L954C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L966C60-L966C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L966C60-L966C82" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L971C53-L971C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L971C53-L971C76" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L973C52-L973C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L973C52-L973C58" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L981C13-L981C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L981C13-L981C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#Layout#IArrangedElement#Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L985C50-L985C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L985C50-L985C60" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ImageAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1007C16-L1007C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1007C16-L1007C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1030C13-L1046C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1030C13-L1046C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ImageTransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1085C16-L1085C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1085C16-L1085C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1122C13-L1128C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1122C13-L1128C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1162C16-L1162C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1162C16-L1162C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ImageScaling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1178C16-L1178C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1178C16-L1178C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.IsDisposed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1223C31-L1223C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1223C31-L1223C54" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.IsOnDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1230C13-L1239C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1230C13-L1239C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.IsOnOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1244C33-L1244C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1244C33-L1244C77" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Margin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1270C16-L1270C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1270C16-L1270C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.MergeAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1289C16-L1289C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1289C16-L1289C87" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.MergeIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1305C16-L1305C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1305C16-L1305C70" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1391C16-L1391C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1391C16-L1391C110" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1412C16-L1412C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1412C16-L1412C22" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.OwnerItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1434C13-L1450C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1434C13-L1450C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1482C16-L1482C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1482C16-L1482C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Overflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1495C16-L1495C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1495C16-L1495C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1518C16-L1518C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1518C16-L1518C65" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Placement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1550C48-L1550C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1550C48-L1550C58" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1591C36-L1591C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1591C36-L1591C71" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Renderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1623C13-L1628C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1623C13-L1628C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1644C13-L1666C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1644C13-L1666C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1699C16-L1699C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1699C16-L1699C57" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.System#Windows#Forms#ICommandBindingTargetProvider#PreviousEnabledStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C65-L1734C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1734C65-L1734C69" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1770C12-L1772C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1770C12-L1772C58" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ShowKeyboardCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1799C12-L1799C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1799C12-L1799C60" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1809C16-L1809C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1809C16-L1809C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1850C16-L1850C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1850C16-L1850C67" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1863C16-L1863C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1863C16-L1863C102" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1882C16-L1882C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1882C16-L1882C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1909C13-L1924C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1909C13-L1924C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.TextImageRelation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1940C16-L1940C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1940C16-L1940C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1965C13-L1977C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1965C13-L1977C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1990C16-L1990C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L1990C16-L1990C85" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2011C16-L2011C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs#L2011C16-L2011C28" }, { "DocsId": "T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripItemAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemClickedEventArgs.#ctor(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemClickedEventArgs.ClickedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs#L19C41-L19C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs#L19C41-L19C45" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemClickedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemClickedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemClickedEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripItemClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemClickedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripItemClickedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemClickedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemClickedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemClickedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.#ctor(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L22C5-L40C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L22C5-L40C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L80C9-L80C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L80C9-L80C38" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Add(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L85C9-L85C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L85C9-L85C39" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Add(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L90C9-L90C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L90C9-L90C39" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Add(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L95C9-L97C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L95C9-L97C21" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Add(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L102C9-L112C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L102C9-L112C23" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L117C9-L133C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L117C9-L133C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItemCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L137C9-L163C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L137C9-L163C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Contains(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L167C9-L167C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L167C9-L167C42" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L172C9-L207C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L172C9-L207C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L214C9-L214C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L214C9-L214C46" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Find(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L244C9-L248C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L244C9-L248C32" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L297C26-L297C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L297C26-L297C36" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L298C36-L298C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L298C36-L298C74" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L299C42-L299C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L299C42-L299C75" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L300C38-L300C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L300C38-L300C56" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L301C40-L301C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L301C40-L301C72" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L302C36-L302C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L302C36-L302C70" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L303C40-L303C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L303C40-L303C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L304C51-L304C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L304C51-L304C90" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L308C15-L308C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L308C15-L308C39" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L309C15-L309C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L309C15-L309C90" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Insert(System.Int32,System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L314C9-L332C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L314C9-L332C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.IndexOf(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L336C9-L336C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L336C9-L336C41" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L345C9-L371C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L345C9-L371C19" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.Remove(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L415C9-L426C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L415C9-L426C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L430C9-L441C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L430C9-L441C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L448C9-L458C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L448C9-L458C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemCollection.CopyTo(System.Windows.Forms.ToolStripItem[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L462C9-L463C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L462C9-L463C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L48C13-L48C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L48C13-L48C54" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L60C13-L73C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L60C13-L73C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L295C45-L295C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L295C45-L295C64" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L298C36-L298C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L298C36-L298C74" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L308C15-L308C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs#L308C15-L308C39" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripItemDisplayStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemDisplayStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemDisplayStyle.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemDisplayStyle.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemDisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemDisplayStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemEventArgs.#ctor(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs#L13C34-L13C38" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L12C11-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L12C11-L16C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L26C11-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L26C11-L30C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemImageRenderEventArgs.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L35C27-L35C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L35C27-L35C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemImageRenderEventArgs.ImageRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L40C39-L40C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs#L40C39-L40C43" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemImageRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripItemImageRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemImageRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemImageRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageRenderEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripItemImageScaling.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemImageScaling.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemImageScaling.SizeToFit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemImageScaling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemImageScaling.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripItemOverflow.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemOverflow.Never", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemOverflow.Always", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemOverflow.AsNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemOverflow.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripItemPlacement.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemPlacement.Main", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemPlacement.Overflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripItemPlacement.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemPlacement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemPlacement.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L13C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L13C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemRenderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L22C32-L22C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemRenderEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L27C33-L27C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L32C36-L32C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs#L32C36-L32C55" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripItemRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.String,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L13C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L13C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.String,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Font,System.Drawing.ContentAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L13C5-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L13C5-L61C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L66C27-L66C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L66C27-L66C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L73C16-L73C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L73C16-L73C65" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L86C29-L86C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L86C29-L86C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L91C38-L91C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L91C38-L91C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L96C41-L96C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L96C41-L96C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L101C51-L101C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs#L101C51-L101C55" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemTextRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripItemTextRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripItemTextRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripItemTextRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripItemTextRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItemTextRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L32C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L47C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L50C11-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L50C11-L52C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L55C11-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L55C11-L57C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L20C5-L63C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L248C9-L250C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L248C9-L250C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L254C9-L265C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L254C9-L265C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L269C9-L276C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L269C9-L276C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L323C9-L323C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L323C9-L323C57" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L331C9-L344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L331C9-L344C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripLabel.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L383C9-L398C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L383C9-L398C22" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.CanSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L67C15-L67C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L67C15-L67C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.IsLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L77C13-L77C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L77C13-L77C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.ActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L95C13-L101C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L95C13-L101C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.LinkBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L145C13-L145C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L145C13-L145C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L166C13-L172C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L166C13-L172C35" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.LinkVisited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L192C13-L192C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L192C13-L192C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripLabel.VisitedLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L210C13-L216C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs#L210C13-L216C42" } ], "DocsId": "T:System.Windows.Forms.ToolStripLabel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLabel.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.Flow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripLayoutStyle.Table", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripLayoutStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripLayoutStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripManager.FindToolStrip(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L150C41-L159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L150C41-L159C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L606C9-L609C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L606C9-L609C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L616C9-L622C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L616C9-L622C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L629C9-L632C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L629C9-L632C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L639C9-L644C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L639C9-L644C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.IsValidShortcut(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L656C9-L693C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L656C9-L693C22" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.IsShortcutDefined(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L701C41-L710C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L701C41-L710C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1070C9-L1126C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1070C9-L1126C90" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1242C9-L1246C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1242C9-L1246C69" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1350C12-L1350C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1350C12-L1350C97" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1356C12-L1356C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1356C12-L1356C130" }, { "DocsId": "M:System.Windows.Forms.ToolStripManager.RevertMerge(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1362C12-L1362C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L1362C12-L1362C80" }, { "DocsId": "E:System.Windows.Forms.ToolStripManager.RendererChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L479C16-L479C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L479C16-L479C73" }, { "DocsId": "P:System.Windows.Forms.ToolStripManager.Renderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L456C13-L458C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L456C13-L458C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripManager.RenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L490C13-L509C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L490C13-L509C54" }, { "DocsId": "P:System.Windows.Forms.ToolStripManager.VisualStylesEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L534C16-L534C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs#L534C16-L534C85" } ], "DocsId": "T:System.Windows.Forms.ToolStripManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManager.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripManagerRenderMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripManagerRenderMode.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripManagerRenderMode.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripManagerRenderMode.Professional", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripManagerRenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripManagerRenderMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L63C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L69C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L75C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L75C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L81C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L87C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L93C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L93C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L99C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L29C5-L106C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.CreateDefaultDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L183C9-L183C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L183C9-L183C54" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L194C9-L194C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L194C9-L194C60" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L565C9-L581C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L565C9-L581C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L763C9-L794C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L763C9-L794C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnCheckedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L801C9-L802C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L801C9-L802C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnCheckStateChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L809C9-L811C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L809C9-L811C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnDropDownHide(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L815C9-L817C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L815C9-L817C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnDropDownShow(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L822C9-L826C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L822C9-L826C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L830C9-L832C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L830C9-L832C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L841C9-L843C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L841C9-L843C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L847C9-L849C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L847C9-L849C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnMouseEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L900C9-L907C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L900C9-L907C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L911C9-L913C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L911C9-L913C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnOwnerChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L917C9-L939C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L917C9-L939C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L943C9-L1030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L943C9-L1030C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1034C9-L1041C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1034C9-L1041C51" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1047C9-L1058C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1047C9-L1058C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripMenuItem.SetBounds(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1064C9-L1078C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L1064C9-L1078C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripMenuItem.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L323C16-L323C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L323C16-L323C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripMenuItem.CheckStateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L333C16-L333C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L333C16-L333C66" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L214C44-L216C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L214C44-L216C27" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L218C58-L218C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L218C58-L218C71" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L220C50-L222C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L220C50-L222C62" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L228C13-L239C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L228C13-L239C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L255C16-L255C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L255C16-L255C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.CheckOnClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L288C16-L288C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L288C16-L288C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.CheckState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L302C16-L302C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L302C16-L302C84" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.Overflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L346C16-L346C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L346C16-L346C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.ShortcutKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L359C16-L359C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L359C16-L359C75" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L414C16-L414C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L414C16-L414C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L449C16-L449C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L449C16-L449C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripMenuItem.IsMdiWindowListEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L475C41-L475C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs#L475C41-L475C60" } ], "DocsId": "T:System.Windows.Forms.ToolStripMenuItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripMenuItem.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.#ctor(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L14C11-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L14C11-L18C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L57C15-L57C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L57C15-L57C37" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#get_Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L62C15-L62C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L62C15-L62C37" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#get_ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L67C15-L67C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L67C15-L67C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#get_Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L72C15-L72C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L72C15-L72C33" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#SetBounds(System.Drawing.Rectangle,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L77C9-L78C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L77C9-L78C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L90C9-L90C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L90C9-L90C60" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L95C9-L96C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L95C9-L96C56" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L101C9-L127C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L101C9-L127C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflow.SetDisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L134C9-L146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L134C9-L146C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.DisplayedItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L24C13-L30C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L24C13-L30C85" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L38C13-L38C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L38C13-L38C103" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L57C15-L57C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L57C15-L57C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L62C15-L62C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L62C15-L62C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L67C15-L67C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L67C15-L67C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.System#Windows#Forms#Layout#IArrangedElement#Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L72C15-L72C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L72C15-L72C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflow.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L84C13-L84C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs#L84C13-L84C40" } ], "DocsId": "T:System.Windows.Forms.ToolStripOverflow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L35C9-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L35C9-L41C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L62C9-L62C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L62C9-L62C66" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.CreateDefaultDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L68C9-L68C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L68C9-L68C44" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L73C9-L86C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L73C9-L86C45" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.SetBounds(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L92C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L92C9-L107C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripOverflowButton.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L111C9-L116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L111C9-L116C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflowButton.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L43C58-L43C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L43C58-L43C71" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflowButton.HasDropDownItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L45C46-L45C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L45C46-L45C114" }, { "DocsId": "P:System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L56C16-L56C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs#L56C16-L56C47" } ], "DocsId": "T:System.Windows.Forms.ToolStripOverflowButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripOverflowButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripPanel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L35C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L35C5-L54C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L359C9-L360C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L359C9-L360C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L364C9-L377C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L364C9-L377C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L383C74-L383C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L383C74-L383C114" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L385C70-L385C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L385C70-L385C111" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L394C9-L400C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L394C9-L400C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L437C9-L444C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L437C9-L444C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnControlAdded(System.Windows.Forms.ControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L448C9-L468C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L448C9-L468C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnControlRemoved(System.Windows.Forms.ControlEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L472C9-L478C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L472C9-L478C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L482C9-L493C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L482C9-L493C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L513C9-L552C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L513C9-L552C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnRendererChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L556C9-L561C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L556C9-L561C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L568C9-L570C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L568C9-L570C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.OnDockChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L574C9-L576C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L574C9-L576C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L711C9-L712C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L711C9-L712C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L716C9-L739C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L716C9-L739C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L743C9-L744C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L743C9-L744C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L748C9-L768C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L748C9-L768C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.PointToRow(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1017C43-L1041C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1017C43-L1041C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1113C60-L1113C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1113C60-L1113C72" }, { "DocsId": "E:System.Windows.Forms.ToolStripPanel.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L111C16-L111C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L111C16-L111C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripPanel.RendererChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L260C16-L260C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L260C16-L260C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripPanel.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L311C16-L311C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L311C16-L311C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripPanel.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L333C16-L333C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L333C16-L333C44" }, { "DocsId": "E:System.Windows.Forms.ToolStripPanel.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L351C16-L351C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L351C16-L351C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L67C16-L67C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L67C16-L67C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L76C16-L76C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L76C16-L76C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L85C16-L85C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L85C16-L85C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L94C16-L94C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L94C16-L94C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L102C16-L102C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L102C16-L102C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L117C15-L117C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L117C15-L117C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L122C15-L122C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L122C15-L122C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.RowMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L127C15-L127C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L127C15-L127C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L137C16-L137C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L137C16-L137C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L173C13-L173C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L173C13-L173C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Locked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L184C13-L184C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L184C13-L184C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L196C13-L196C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L196C13-L196C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Renderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L234C13-L234C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L234C13-L234C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.RenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L248C13-L248C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L248C13-L248C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Rows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L290C13-L292C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L290C13-L292C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L303C16-L303C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L303C16-L303C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L320C16-L320C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L320C16-L320C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L343C16-L343C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L343C16-L343C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1113C60-L1113C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs#L1113C60-L1113C72" }, { "DocsId": "T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripPanelRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L13C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L13C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRenderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L22C32-L22C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L27C44-L27C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L27C44-L27C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L29C27-L29C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs#L29C27-L29C31" } ], "DocsId": "T:System.Windows.Forms.ToolStripPanelRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripPanelRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripPanelRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripPanelRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.#ctor(System.Windows.Forms.ToolStripPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L39C11-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L39C11-L41C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.CanMove(System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L267C9-L267C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L267C9-L267C89" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L279C13-L290C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L279C13-L290C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.OnControlAdded(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L296C9-L302C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L296C9-L302C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.OnOrientationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L306C9-L307C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L306C9-L307C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.OnBoundsChanged(System.Drawing.Rectangle,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L311C9-L314C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L311C9-L314C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.OnControlRemoved(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L318C9-L337C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L318C9-L337C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L368C9-L404C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L368C9-L404C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#get_Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L629C13-L629C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L629C13-L629C26" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#get_Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L640C13-L640C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L640C13-L640C35" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#get_DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L648C13-L650C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L648C13-L650C37" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#get_ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L658C13-L658C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L658C13-L658C28" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#get_Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L666C13-L666C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L666C13-L666C31" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L672C9-L683C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L672C9-L683C30" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#SetBounds(System.Drawing.Rectangle,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L690C9-L691C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L690C9-L691C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#PerformLayout(System.Windows.Forms.Layout.IArrangedElement,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L695C9-L699C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L695C9-L699C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L65C13-L65C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L65C13-L65C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L76C13-L78C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L76C13-L78C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L129C13-L152C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L129C13-L152C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.DefaultPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L158C15-L158C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L158C15-L158C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L165C13-L165C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L165C13-L165C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L173C13-L173C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L173C13-L173C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.Margin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L199C15-L199C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L199C15-L199C55" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L211C15-L211C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L211C15-L211C72" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.ToolStripPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L236C44-L236C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L236C44-L236C48" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L250C13-L250C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L250C13-L250C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L629C13-L629C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L629C13-L629C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L640C13-L640C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L640C13-L640C35" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L648C13-L650C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L648C13-L650C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#ParticipatesInLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L658C13-L658C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L658C13-L658C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanelRow.System#Windows#Forms#Layout#IArrangedElement#Properties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L666C13-L666C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs#L666C13-L666C31" } ], "DocsId": "T:System.Windows.Forms.ToolStripPanelRow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanelRow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L16C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L16C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.#ctor(System.Windows.Forms.ProfessionalColorTable)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L16C5-L51C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L16C5-L51C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L112C9-L141C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L112C9-L141C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L145C9-L218C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L145C9-L218C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L222C9-L238C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L222C9-L238C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L242C9-L249C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L242C9-L249C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L253C9-L307C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L253C9-L307C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L311C9-L323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L311C9-L323C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L327C9-L334C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L327C9-L334C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L338C9-L390C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L338C9-L390C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L394C9-L469C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L394C9-L469C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L473C9-L533C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L473C9-L533C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L537C9-L666C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L537C9-L666C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L670C9-L684C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L670C9-L684C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L688C9-L704C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L688C9-L704C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L708C9-L720C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L708C9-L720C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L724C9-L732C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L724C9-L732C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L736C9-L775C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L736C9-L775C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L779C9-L796C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L779C9-L796C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L800C9-L828C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L800C9-L828C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripProfessionalRenderer.ColorTable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L53C49-L53C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L53C49-L53C105" }, { "DocsId": "P:System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L97C13-L97C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs#L97C13-L97C34" } ], "DocsId": "T:System.Windows.Forms.ToolStripProfessionalRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolstripProfessionalRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L18C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L18C11-L27C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L30C11-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L30C11-L33C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L247C9-L248C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L247C9-L248C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.OnSubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L252C9-L259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L252C9-L259C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.OnUnsubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L263C9-L270C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L263C9-L270C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.Increment(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L370C9-L371C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L370C9-L371C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripProgressBar.PerformStep", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L375C9-L376C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L375C9-L376C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L279C16-L279C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L279C16-L279C37" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L290C16-L290C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L290C16-L290C38" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L301C16-L301C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L301C16-L301C35" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L312C16-L312C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L312C16-L312C45" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.OwnerChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L323C16-L323C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L323C16-L323C42" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L331C16-L331C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L331C16-L331C73" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L342C16-L342C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L342C16-L342C41" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.Validated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L353C16-L353C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L353C16-L353C39" }, { "DocsId": "E:System.Windows.Forms.ToolStripProgressBar.Validating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L364C16-L364C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L364C16-L364C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L45C13-L45C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L45C13-L45C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L54C16-L54C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L54C16-L54C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L63C16-L63C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L63C16-L63C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L75C13-L75C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L75C13-L75C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L87C13-L93C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L87C13-L93C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L103C15-L103C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L103C15-L103C56" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L115C13-L115C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L115C13-L115C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L131C13-L131C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L131C13-L131C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L152C13-L152C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L152C13-L152C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Step", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L172C13-L172C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L172C13-L172C37" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L191C13-L191C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L191C13-L191C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L210C13-L210C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L210C13-L210C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripProgressBar.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L230C13-L230C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs#L230C13-L230C38" } ], "DocsId": "T:System.Windows.Forms.ToolStripProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripProgressBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L43C5-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L43C5-L57C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.CreateDisabledImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L322C9-L322C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L322C9-L322C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L326C9-L332C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L326C9-L332C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L339C9-L345C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L339C9-L345C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L352C9-L357C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L352C9-L357C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L364C9-L370C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L364C9-L370C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L377C9-L383C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L377C9-L383C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L390C9-L395C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L390C9-L395C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L402C9-L408C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L402C9-L408C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L412C9-L418C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L412C9-L418C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L425C9-L431C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L425C9-L431C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L438C9-L444C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L438C9-L444C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L451C9-L457C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L451C9-L457C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L464C9-L470C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L464C9-L470C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L477C9-L483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L477C9-L483C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L490C9-L496C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L490C9-L496C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawSplitButton(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L503C9-L509C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L503C9-L509C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L516C9-L522C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L516C9-L522C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L526C9-L532C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L526C9-L532C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L539C9-L544C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L539C9-L544C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L548C9-L553C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L548C9-L553C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.DrawToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L557C9-L562C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L557C9-L562C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.Initialize(System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L569C5-L569C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L569C5-L569C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.InitializePanel(System.Windows.Forms.ToolStripPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L573C5-L573C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L573C5-L573C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.InitializeContentPanel(System.Windows.Forms.ToolStripContentPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L577C5-L577C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L577C5-L577C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.InitializeItem(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L581C5-L581C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L581C5-L581C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L585C9-L596C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L585C9-L596C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L600C9-L604C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L600C9-L604C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L612C9-L621C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L612C9-L621C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L702C9-L707C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L702C9-L707C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L714C9-L719C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L714C9-L719C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L726C9-L731C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L726C9-L731C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L738C9-L743C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L738C9-L743C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L750C9-L755C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L750C9-L755C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L762C9-L767C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L762C9-L767C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L774C9-L779C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L774C9-L779C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L786C9-L791C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L786C9-L791C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L799C9-L839C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L799C9-L839C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L843C9-L880C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L843C9-L903C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L888C9-L938C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L911C9-L961C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L945C9-L950C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L968C9-L973C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L957C9-L962C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L980C9-L985C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L970C9-L975C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L993C9-L998C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L979C9-L984C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1002C9-L1007C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L988C9-L993C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1011C9-L1016C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L997C9-L1002C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1020C9-L1025C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1022C9-L1034C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1045C9-L1057C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1148C9-L1153C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L1171C9-L1176C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L151C16-L151C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L151C16-L151C53" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L160C16-L160C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L160C16-L160C67" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L166C16-L166C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L166C16-L166C72" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L172C16-L172C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L172C16-L172C79" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L181C16-L181C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L181C16-L181C54" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderButtonBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L190C16-L190C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L190C16-L190C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L199C16-L199C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L199C16-L199C72" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L208C16-L208C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L208C16-L208C72" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderGrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L217C16-L217C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L217C16-L217C52" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderItemBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L226C16-L226C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L226C16-L226C62" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderItemImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L235C16-L235C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L235C16-L235C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderItemCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L244C16-L244C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L244C16-L244C57" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderItemText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L253C16-L253C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L253C16-L253C56" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderImageMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L259C16-L259C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L259C16-L259C59" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderLabelBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L268C16-L268C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L268C16-L268C63" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L277C16-L277C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L277C16-L277C66" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L286C16-L286C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L286C16-L286C78" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderStatusStripSizingGrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L295C16-L295C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L295C16-L295C69" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderSplitButtonBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L304C16-L304C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L304C16-L304C69" }, { "DocsId": "E:System.Windows.Forms.ToolStripRenderer.RenderSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L310C16-L310C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs#L310C16-L310C57" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderer.Offset2X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderer.Offset2Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L16C11-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L16C11-L18C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip,System.Drawing.Rectangle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L23C5-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L23C5-L33C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripRenderEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L38C32-L38C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L38C32-L38C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripRenderEventArgs.AffectedBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L43C39-L43C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L43C39-L43C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripRenderEventArgs.ToolStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L48C34-L48C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L48C34-L48C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripRenderEventArgs.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L57C13-L88C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L57C13-L88C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripRenderEventArgs.ConnectedArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L96C13-L139C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs#L96C13-L139C36" } ], "DocsId": "T:System.Windows.Forms.ToolStripRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripRenderMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderMode.Custom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderMode.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderMode.Professional", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripRenderMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripRenderMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L16C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L16C5-L19C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L255C12-L255C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L255C12-L255C56" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L259C9-L285C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L259C9-L285C69" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L290C9-L294C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L290C9-L294C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L300C9-L301C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L300C9-L301C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparator.SetBounds(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L308C9-L318C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L308C9-L318C6" }, { "DocsId": "E:System.Windows.Forms.ToolStripSeparator.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L80C16-L80C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L80C16-L80C44" }, { "DocsId": "E:System.Windows.Forms.ToolStripSeparator.DisplayStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L97C16-L97C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L97C16-L97C49" }, { "DocsId": "E:System.Windows.Forms.ToolStripSeparator.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L204C16-L204C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L204C16-L204C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.AutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L26C16-L26C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L26C16-L26C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L35C16-L35C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L35C16-L35C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L44C16-L44C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L44C16-L44C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.CanSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L48C39-L48C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L48C39-L48C49" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L54C44-L54C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L54C44-L54C87" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L56C58-L56C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L56C58-L56C71" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L63C16-L63C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L63C16-L63C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L72C16-L72C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L72C16-L72C28" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.DisplayStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L89C16-L89C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L89C16-L89C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L107C16-L107C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L107C16-L107C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ImageAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L116C16-L116C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L116C16-L116C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L125C16-L125C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L125C16-L125C26" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L135C16-L135C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L135C16-L135C31" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L145C16-L145C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L145C16-L145C29" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ImageTransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L154C16-L154C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L154C16-L154C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ImageScaling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L163C16-L163C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L163C16-L163C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L196C16-L196C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L196C16-L196C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L213C16-L213C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L213C16-L213C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.TextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L222C16-L222C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L222C16-L222C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.TextImageRelation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L231C16-L231C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L231C16-L231C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L240C16-L240C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L240C16-L240C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L249C16-L249C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs#L249C16-L249C47" } ], "DocsId": "T:System.Windows.Forms.ToolStripSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparator.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSeparatorRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripSeparator,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs#L17C11-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs#L17C11-L20C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripSeparatorRenderEventArgs.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs#L22C28-L22C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs#L22C28-L22C32" } ], "DocsId": "T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSeparatorRenderEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparatorRenderEventHandler.Invoke(System.Object,System.Windows.Forms.ToolStripSeparatorRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparatorRenderEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolStripSeparatorRenderEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolStripSeparatorRenderEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripSeparatorRenderEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSeparatorRenderEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L43C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L49C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L49C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L55C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L61C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L67C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L17C5-L73C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L331C9-L331C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L331C9-L331C58" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.CreateDefaultDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L337C9-L337C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L337C9-L337C71" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L349C9-L351C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L349C9-L351C30" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L368C9-L374C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L368C9-L374C47" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L380C9-L381C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L380C9-L381C21" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnButtonClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L390C9-L392C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L390C9-L392C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnButtonDoubleClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L400C9-L402C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L400C9-L402C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnDefaultItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L409C9-L417C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L409C9-L417C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L421C9-L437C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L421C9-L437C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L441C9-L496C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L441C9-L496C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L500C9-L503C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L500C9-L503C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L507C9-L509C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L507C9-L509C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L513C9-L531C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L513C9-L531C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.PerformButtonClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L535C9-L540C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L535C9-L540C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.ResetDropDownButtonWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L543C55-L543C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L543C55-L543C103" }, { "DocsId": "E:System.Windows.Forms.ToolStripSplitButton.ButtonClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L118C16-L118C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L118C16-L118C60" }, { "DocsId": "E:System.Windows.Forms.ToolStripSplitButton.ButtonDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L129C16-L129C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L129C16-L129C66" }, { "DocsId": "E:System.Windows.Forms.ToolStripSplitButton.DefaultItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L166C16-L166C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L166C16-L166C67" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.AutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L78C16-L78C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L78C16-L78C32" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.ButtonBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L89C13-L89C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L89C13-L89C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.ButtonPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L98C13-L98C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L98C13-L98C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.ButtonSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L107C13-L107C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L107C13-L107C72" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DefaultAutoToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L137C13-L137C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L137C13-L137C25" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DefaultItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L147C13-L147C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L147C13-L147C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DismissWhenClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L170C60-L170C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L170C60-L170C77" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L178C46-L178C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L178C46-L178C67" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L181C42-L181C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L181C42-L181C58" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L184C43-L184C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L184C43-L184C51" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L190C16-L190C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L190C16-L190C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripSplitButton.SplitterBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L294C13-L294C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs#L294C13-L294C36" }, { "DocsId": "T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripSplitButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L27C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L32C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L42C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L47C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L18C5-L52C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L63C9-L63C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L63C9-L63C63" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L170C9-L175C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L170C9-L175C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L179C9-L185C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L179C9-L185C60" }, { "DocsId": "M:System.Windows.Forms.ToolStripStatusLabel.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L194C9-L207C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L194C9-L207C6" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L79C16-L79C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L79C16-L79C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L90C13-L90C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L90C13-L90C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.BorderSides", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L111C13-L111C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L111C13-L111C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L125C58-L125C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L125C58-L125C72" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.Spring", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L132C15-L132C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L132C15-L132C30" }, { "DocsId": "P:System.Windows.Forms.ToolStripStatusLabel.LiveSetting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L159C13-L159C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs#L159C13-L159C33" } ], "DocsId": "T:System.Windows.Forms.ToolStripStatusLabel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabel.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripStatusLabelBorderSides.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripStatusLabelBorderSides", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripStatusLabelBorderSides.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L23C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L23C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L223C9-L282C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L223C9-L282C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L289C9-L323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L289C9-L323C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L330C9-L380C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L330C9-L380C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L387C5-L387C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L387C5-L387C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L394C5-L394C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L394C5-L394C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L403C9-L410C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L403C9-L410C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L419C9-L426C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L419C9-L426C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L433C9-L449C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L433C9-L449C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L456C9-L457C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L456C9-L457C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L464C9-L535C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L464C9-L535C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L543C9-L544C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L543C9-L544C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L548C9-L554C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L548C9-L554C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L563C9-L691C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs#L563C9-L691C6" } ], "DocsId": "T:System.Windows.Forms.ToolStripSystemRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSystemRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L28C11-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L28C11-L38C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L41C11-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L41C11-L44C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L48C11-L50C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L48C11-L50C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetPreferredSize(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L92C9-L93C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L92C9-L93C64" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnAcceptsTabChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L110C64-L110C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L110C64-L110C103" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L112C65-L112C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L112C65-L112C105" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnHideSelectionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L114C67-L114C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L114C67-L114C109" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnModifiedChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L116C62-L116C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L116C62-L116C99" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnMultilineChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L118C63-L118C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L118C63-L118C101" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnReadOnlyChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L120C62-L120C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L120C62-L120C99" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnSubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L124C9-L137C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L124C9-L137C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L141C9-L154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L141C9-L154C6" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.AppendText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L435C44-L435C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L435C44-L435C71" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L436C27-L436C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L436C27-L436C45" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.ClearUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L437C31-L437C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L437C31-L437C53" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L438C26-L438C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L438C26-L438C43" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Cut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L439C25-L439C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L439C25-L439C41" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.DeselectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L440C33-L440C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L440C33-L440C57" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetCharFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L441C49-L441C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L441C49-L441C88" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetCharIndexFromPosition(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L442C53-L442C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L442C53-L442C97" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexFromLine(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L443C60-L443C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L443C60-L443C113" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexOfCurrentLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L444C51-L444C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L444C51-L444C99" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetLineFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L445C50-L445C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L445C50-L445C93" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.GetPositionFromCharIndex(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L446C56-L446C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L446C56-L446C103" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Paste", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L447C27-L447C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L447C27-L447C45" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.ScrollToCaret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L448C35-L448C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L448C35-L448C61" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Select(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L449C49-L449C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L449C49-L449C81" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.SelectAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L450C31-L450C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L450C31-L450C53" }, { "DocsId": "M:System.Windows.Forms.ToolStripTextBox.Undo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L451C26-L451C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L451C26-L451C43" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.AcceptsTabChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L379C16-L379C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L379C16-L379C66" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.BorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L387C16-L387C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L387C16-L387C67" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.HideSelectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L395C16-L395C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L395C16-L395C69" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.ModifiedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L403C16-L403C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L403C16-L403C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.MultilineChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L413C16-L413C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L413C16-L413C65" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L421C16-L421C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L421C16-L421C64" }, { "DocsId": "E:System.Windows.Forms.ToolStripTextBox.TextBoxTextAlignChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L429C16-L429C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L429C16-L429C72" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L58C16-L58C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L58C16-L58C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L67C16-L67C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L67C16-L67C42" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L75C58-L75C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L75C58-L75C112" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L77C44-L77C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L77C44-L77C61" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.TextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L81C31-L81C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L81C31-L81C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.AcceptsTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L167C15-L167C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L167C15-L167C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.AcceptsReturn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L176C15-L176C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L176C15-L176C44" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L189C15-L189C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L189C15-L189C55" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.AutoCompleteMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L199C15-L199C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L199C15-L199C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.AutoCompleteSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L209C15-L209C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L209C15-L209C49" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L219C16-L219C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L219C16-L219C35" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.CanUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L229C15-L229C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L229C15-L229C38" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.CharacterCasing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L237C15-L237C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L237C15-L237C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.HideSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L246C15-L246C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L246C15-L246C44" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.Lines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L258C15-L258C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L258C15-L258C36" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.MaxLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L268C15-L268C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L268C15-L268C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.Modified", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L278C15-L278C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L278C15-L278C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.Multiline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L291C15-L291C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L291C15-L291C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L300C15-L300C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L300C15-L300C39" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.SelectedText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L311C15-L311C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L311C15-L311C43" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.SelectionLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L321C15-L321C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L321C15-L321C46" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.SelectionStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L331C15-L331C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L331C15-L331C45" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L340C15-L340C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L340C15-L340C47" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.TextLength", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L347C15-L347C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L347C15-L347C41" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L356C15-L356C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L356C15-L356C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripTextBox.WordWrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L368C15-L368C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs#L368C15-L368C39" } ], "DocsId": "T:System.Windows.Forms.ToolStripTextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextBox.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolStripTextDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripTextDirection.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripTextDirection.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripTextDirection.Vertical90", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ToolStripTextDirection.Vertical270", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" } ], "DocsId": "T:System.Windows.Forms.ToolStripTextDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripTextDirection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TickStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TickStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TickStyle.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TickStyle.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TickStyle.Both", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" } ], "DocsId": "T:System.Windows.Forms.TickStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TickStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TrackBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L29C5-L58C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L29C5-L58C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L722C9-L723C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L722C9-L723C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L750C74-L750C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L750C74-L750C108" }, { "DocsId": "M:System.Windows.Forms.TrackBar.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L754C9-L765C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L754C9-L765C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L808C9-L812C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L808C9-L812C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L840C9-L848C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L840C9-L848C42" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L854C9-L877C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L854C9-L877C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L882C9-L896C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L882C9-L896C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnScroll(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L905C9-L906C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L905C9-L906C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L911C9-L973C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L911C9-L973C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L980C9-L988C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L980C9-L988C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L992C9-L994C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L992C9-L994C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.OnSystemColorsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L998C9-L1000C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L998C9-L1000C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1009C9-L1030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1009C9-L1030C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.SetRange(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1039C9-L1095C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1039C9-L1095C6" }, { "DocsId": "M:System.Windows.Forms.TrackBar.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1163C42-L1163C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1163C42-L1163C119" }, { "DocsId": "M:System.Windows.Forms.TrackBar.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1167C9-L1195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L1167C9-L1195C6" }, { "DocsId": "E:System.Windows.Forms.TrackBar.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L107C16-L107C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L107C16-L107C45" }, { "DocsId": "E:System.Windows.Forms.TrackBar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L123C16-L123C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L123C16-L123C52" }, { "DocsId": "E:System.Windows.Forms.TrackBar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L139C16-L139C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L139C16-L139C58" }, { "DocsId": "E:System.Windows.Forms.TrackBar.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L226C16-L226C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L226C16-L226C41" }, { "DocsId": "E:System.Windows.Forms.TrackBar.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L246C16-L246C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L246C16-L246C46" }, { "DocsId": "E:System.Windows.Forms.TrackBar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L262C16-L262C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L262C16-L262C44" }, { "DocsId": "E:System.Windows.Forms.TrackBar.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L412C16-L412C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L412C16-L412C44" }, { "DocsId": "E:System.Windows.Forms.TrackBar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L517C16-L517C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L517C16-L517C41" }, { "DocsId": "E:System.Windows.Forms.TrackBar.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L632C16-L632C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L632C16-L632C35" }, { "DocsId": "E:System.Windows.Forms.TrackBar.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L640C16-L640C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L640C16-L640C41" }, { "DocsId": "E:System.Windows.Forms.TrackBar.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L648C16-L648C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L648C16-L648C40" }, { "DocsId": "E:System.Windows.Forms.TrackBar.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L656C16-L656C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L656C16-L656C46" }, { "DocsId": "E:System.Windows.Forms.TrackBar.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L664C16-L664C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L664C16-L664C67" }, { "DocsId": "E:System.Windows.Forms.TrackBar.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L672C16-L672C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L672C16-L672C55" }, { "DocsId": "E:System.Windows.Forms.TrackBar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L680C16-L680C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L680C16-L680C35" }, { "DocsId": "E:System.Windows.Forms.TrackBar.ValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L688C16-L688C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L688C16-L688C61" }, { "DocsId": "P:System.Windows.Forms.TrackBar.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L74C16-L74C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L74C16-L74C25" }, { "DocsId": "P:System.Windows.Forms.TrackBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L115C16-L115C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L115C16-L115C36" }, { "DocsId": "P:System.Windows.Forms.TrackBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L131C16-L131C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L131C16-L131C42" }, { "DocsId": "P:System.Windows.Forms.TrackBar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L147C13-L186C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L147C13-L186C23" }, { "DocsId": "P:System.Windows.Forms.TrackBar.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L198C50-L198C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L198C50-L198C65" }, { "DocsId": "P:System.Windows.Forms.TrackBar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L200C44-L200C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L200C44-L200C72" }, { "DocsId": "P:System.Windows.Forms.TrackBar.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L209C16-L209C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L209C16-L209C35" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L218C16-L218C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L218C16-L218C25" }, { "DocsId": "P:System.Windows.Forms.TrackBar.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L238C16-L238C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L238C16-L238C39" }, { "DocsId": "P:System.Windows.Forms.TrackBar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L254C16-L254C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L254C16-L254C28" }, { "DocsId": "P:System.Windows.Forms.TrackBar.LargeChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L277C16-L277C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L277C16-L277C28" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L307C16-L307C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L307C16-L307C24" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L333C16-L333C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L333C16-L333C24" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L361C16-L361C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L361C16-L361C28" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L404C16-L404C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L404C16-L404C28" }, { "DocsId": "P:System.Windows.Forms.TrackBar.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L453C16-L453C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L453C16-L453C34" }, { "DocsId": "P:System.Windows.Forms.TrackBar.SmallChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L480C16-L480C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L480C16-L480C28" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L509C16-L509C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L509C16-L509C25" }, { "DocsId": "P:System.Windows.Forms.TrackBar.TickStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L532C16-L532C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L532C16-L532C26" }, { "DocsId": "P:System.Windows.Forms.TrackBar.TickFrequency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L562C16-L562C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L562C16-L562C30" }, { "DocsId": "P:System.Windows.Forms.TrackBar.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L607C13-L608C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs#L607C13-L608C27" } ], "DocsId": "T:System.Windows.Forms.TrackBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L30C9-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L30C9-L33C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L40C9-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L40C9-L43C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L50C9-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L50C9-L53C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L60C9-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L60C9-L63C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawLeftPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L70C9-L73C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L70C9-L73C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawRightPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L80C9-L83C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L80C9-L83C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawTopPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L90C9-L93C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L90C9-L93C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawBottomPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L100C9-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L100C9-L103C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalTicks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.VisualStyles.EdgeStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L110C9-L133C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L110C9-L133C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.DrawVerticalTicks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.VisualStyles.EdgeStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L140C9-L163C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L140C9-L163C6" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.GetLeftPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L170C9-L172C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L170C9-L172C73" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.GetRightPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L180C9-L182C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L180C9-L182C73" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.GetTopPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L190C9-L192C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L190C9-L192C73" }, { "DocsId": "M:System.Windows.Forms.TrackBarRenderer.GetBottomPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L200C9-L202C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L200C9-L202C73" }, { "DocsId": "P:System.Windows.Forms.TrackBarRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L23C39-L23C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs#L23C39-L23C70" } ], "DocsId": "T:System.Windows.Forms.TrackBarRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TrackBar/TrackBarRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawTreeNodeEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.TreeNode,System.Drawing.Rectangle,System.Windows.Forms.TreeNodeStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L16C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L16C5-L26C6" }, { "DocsId": "P:System.Windows.Forms.DrawTreeNodeEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L31C32-L31C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L31C32-L31C36" }, { "DocsId": "P:System.Windows.Forms.DrawTreeNodeEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L36C29-L36C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L36C29-L36C33" }, { "DocsId": "P:System.Windows.Forms.DrawTreeNodeEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L41C31-L41C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L41C31-L41C35" }, { "DocsId": "P:System.Windows.Forms.DrawTreeNodeEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L46C35-L46C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L46C35-L46C39" }, { "DocsId": "P:System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L52C31-L52C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs#L52C31-L52C35" } ], "DocsId": "T:System.Windows.Forms.DrawTreeNodeEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawTreeNodeEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawTreeNodeEventHandler.Invoke(System.Object,System.Windows.Forms.DrawTreeNodeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawTreeNodeEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawTreeNodeEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawTreeNodeEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawTreeNodeEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/DrawTreeNodeEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventArgs.#ctor(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L13C11-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L13C11-L15C6" }, { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventArgs.#ctor(System.Windows.Forms.TreeNode,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L17C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.NodeLabelEditEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L23C29-L23C33" }, { "DocsId": "P:System.Windows.Forms.NodeLabelEditEventArgs.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L25C28-L25C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L25C28-L25C32" }, { "DocsId": "P:System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L27C30-L27C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs#L27C30-L27C34" } ], "DocsId": "T:System.Windows.Forms.NodeLabelEditEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventHandler.Invoke(System.Object,System.Windows.Forms.NodeLabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventHandler.BeginInvoke(System.Object,System.Windows.Forms.NodeLabelEditEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NodeLabelEditEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.NodeLabelEditEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/NodeLabelEditEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L51C5-L116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L51C5-L116C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L128C11-L131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L128C11-L131C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Windows.Forms.TreeNode[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L137C11-L140C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L137C11-L140C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L146C11-L150C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L146C11-L150C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Int32,System.Int32,System.Windows.Forms.TreeNode[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L156C11-L159C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L156C11-L159C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L165C11-L168C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L165C11-L168C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.FromHandle(System.Windows.Forms.TreeView,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1191C73-L1191C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1191C73-L1191C100" }, { "DocsId": "M:System.Windows.Forms.TreeNode.BeginEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1277C9-L1292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1277C9-L1292C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1343C9-L1395C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1343C9-L1395C21" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Collapse(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1451C9-L1452C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1451C9-L1452C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Collapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1459C9-L1460C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1459C9-L1460C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1481C9-L1579C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1481C9-L1579C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.EndEdit(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1586C9-L1593C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1586C9-L1593C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.EnsureVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1655C9-L1662C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1655C9-L1662C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Expand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1669C9-L1683C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1669C9-L1683C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.ExpandAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1690C9-L1695C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1690C9-L1695C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.GetNodeCount(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1751C9-L1760C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1751C9-L1760C22" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Remove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1938C9-L1939C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1938C9-L1939C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2050C9-L2090C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2050C9-L2090C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.Toggle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2102C9-L2110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2102C9-L2110C6" }, { "DocsId": "M:System.Windows.Forms.TreeNode.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2117C9-L2117C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2117C9-L2117C43" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2221C89-L2221C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L2221C89-L2221C111" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#AllowsChildrenToShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L10C61-L10C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L10C61-L10C74" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#AllowsToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L12C46-L12C50" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#CanShowToolTipsNow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L14C51-L14C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L14C51-L14C64" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#GetCaptionForTool(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L16C67-L16C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L16C67-L16C78" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#GetNativeScreenRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L18C62-L18C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L18C62-L18C87" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#GetNeighboringToolsRectangles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L22C9-L36C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L22C9-L36C38" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#GetOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L39C56-L39C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L39C56-L39C64" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#HasRtlModeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L41C50-L41C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L41C50-L41C90" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#IsBeingTabbedTo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L43C48-L43C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L43C48-L43C87" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#IsHoveredWithMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L45C51-L45C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L45C51-L45C128" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#OnHooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L47C56-L47C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L47C56-L47C86" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#OnUnhooked(System.Windows.Forms.ToolTip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L49C58-L49C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L49C58-L49C90" }, { "DocsId": "M:System.Windows.Forms.TreeNode.System#Windows#Forms#IKeyboardToolTip#ShowsOwnToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L51C48-L51C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.IKeyboardToolTip.cs#L51C48-L51C61" }, { "DocsId": "P:System.Windows.Forms.TreeNode.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L181C13-L186C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L181C13-L186C39" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L231C13-L247C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L231C13-L247C23" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L343C13-L343C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L343C13-L343C36" }, { "DocsId": "P:System.Windows.Forms.TreeNode.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L373C16-L373C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L373C16-L373C33" }, { "DocsId": "P:System.Windows.Forms.TreeNode.FirstNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L381C35-L381C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L381C35-L381C73" }, { "DocsId": "P:System.Windows.Forms.TreeNode.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L408C13-L413C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L408C13-L413C39" }, { "DocsId": "P:System.Windows.Forms.TreeNode.FullPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L458C13-L467C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L458C13-L467C74" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L477C29-L477C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L477C29-L477C44" }, { "DocsId": "P:System.Windows.Forms.TreeNode.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L509C13-L518C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L509C13-L518C39" }, { "DocsId": "P:System.Windows.Forms.TreeNode.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L551C16-L551C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L551C16-L551C32" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L569C25-L569C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L569C25-L569C31" }, { "DocsId": "P:System.Windows.Forms.TreeNode.IsEditing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L579C13-L586C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L579C13-L586C26" }, { "DocsId": "P:System.Windows.Forms.TreeNode.IsExpanded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L594C31-L596C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L594C31-L596C66" }, { "DocsId": "P:System.Windows.Forms.TreeNode.IsSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L602C31-L603C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L602C31-L603C67" }, { "DocsId": "P:System.Windows.Forms.TreeNode.IsVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L613C13-L635C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L613C13-L635C28" }, { "DocsId": "P:System.Windows.Forms.TreeNode.LastNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L647C13-L652C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L647C13-L652C47" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Level", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L660C25-L660C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L660C25-L660C62" }, { "DocsId": "P:System.Windows.Forms.TreeNode.NextNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L670C13-L676C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L670C13-L676C29" }, { "DocsId": "P:System.Windows.Forms.TreeNode.NextVisibleNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L692C13-L714C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L692C13-L714C25" }, { "DocsId": "P:System.Windows.Forms.TreeNode.NodeFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L733C13-L738C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L733C13-L738C34" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Nodes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L780C13-L782C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L780C13-L782C27" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L794C13-L802C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L794C13-L802C28" }, { "DocsId": "P:System.Windows.Forms.TreeNode.PrevNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L814C13-L834C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L814C13-L834C29" }, { "DocsId": "P:System.Windows.Forms.TreeNode.PrevVisibleNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L850C13-L872C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L850C13-L872C25" }, { "DocsId": "P:System.Windows.Forms.TreeNode.SelectedImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L892C13-L901C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L892C13-L901C47" }, { "DocsId": "P:System.Windows.Forms.TreeNode.SelectedImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L934C16-L934C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L934C16-L934C40" }, { "DocsId": "P:System.Windows.Forms.TreeNode.StateImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L991C16-L991C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L991C16-L991C37" }, { "DocsId": "P:System.Windows.Forms.TreeNode.StateImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1019C13-L1027C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1019C13-L1027C44" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1055C16-L1055C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1055C16-L1055C25" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1068C16-L1068C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1068C16-L1068C37" }, { "DocsId": "P:System.Windows.Forms.TreeNode.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1085C16-L1085C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1085C16-L1085C28" }, { "DocsId": "P:System.Windows.Forms.TreeNode.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1097C16-L1097C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1097C16-L1097C37" }, { "DocsId": "P:System.Windows.Forms.TreeNode.TreeView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1109C13-L1111C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs#L1109C13-L1111C30" } ], "DocsId": "T:System.Windows.Forms.TreeNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L72C16-L72C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L72C16-L72C27" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L75C13-L81C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L75C13-L81C94" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L116C36-L116C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L116C36-L116C40" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L118C40-L118C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L118C40-L118C45" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L120C31-L120C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L120C31-L120C36" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L129C9-L131C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L129C9-L131C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L141C9-L146C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L141C9-L146C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L154C9-L160C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L154C9-L160C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L168C9-L174C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L168C9-L174C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L182C9-L187C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L182C9-L187C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L195C9-L202C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L195C9-L202C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.AddRange(System.Windows.Forms.TreeNode[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L209C9-L238C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L209C9-L238C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Find(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L242C9-L246C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L242C9-L246C32" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Add(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L294C46-L294C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L294C46-L294C73" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L357C9-L365C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L357C9-L365C48" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Contains(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L369C44-L369C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L369C44-L369C63" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L374C53-L374C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L374C53-L374C82" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L376C42-L376C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L376C42-L376C89" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.IndexOf(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L380C14-L388C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L380C14-L388C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L392C9-L394C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L392C9-L394C17" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L402C9-L428C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L402C9-L428C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L436C9-L472C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L436C9-L472C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L476C9-L482C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L476C9-L482C89" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L493C9-L495C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L493C9-L495C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L503C9-L508C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L503C9-L508C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L516C9-L522C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L516C9-L522C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L530C9-L536C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L530C9-L536C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L544C9-L549C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L544C9-L549C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L557C9-L564C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L557C9-L564C19" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L579C9-L580C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L579C9-L580C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L584C9-L588C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L584C9-L588C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.Remove(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L592C9-L593C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L592C9-L593C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L597C9-L601C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L597C9-L601C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L605C9-L606C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L605C9-L606C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L613C9-L618C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L613C9-L618C6" }, { "DocsId": "M:System.Windows.Forms.TreeNodeCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L622C9-L628C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L622C9-L628C60" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L34C13-L37C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L34C13-L37C44" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L72C16-L72C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L72C16-L72C27" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L94C13-L107C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L94C13-L107C29" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L114C25-L114C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L114C25-L114C43" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L116C36-L116C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L116C36-L116C40" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L118C40-L118C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L118C40-L118C45" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L120C31-L120C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L120C31-L120C36" }, { "DocsId": "P:System.Windows.Forms.TreeNodeCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L122C31-L122C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs#L122C31-L122C36" } ], "DocsId": "T:System.Windows.Forms.TreeNodeCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs#L24C9-L29C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs#L24C9-L29C60" }, { "DocsId": "M:System.Windows.Forms.TreeNodeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs#L41C9-L111C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs#L41C9-L111C73" }, { "DocsId": "M:System.Windows.Forms.TreeNodeConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs" } ], "DocsId": "T:System.Windows.Forms.TreeNodeConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeMouseClickEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs#L18C11-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs#L18C11-L26C6" }, { "DocsId": "P:System.Windows.Forms.TreeNodeMouseClickEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs#L28C29-L28C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs#L28C29-L28C33" } ], "DocsId": "T:System.Windows.Forms.TreeNodeMouseClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeMouseClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseClickEventHandler.Invoke(System.Object,System.Windows.Forms.TreeNodeMouseClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TreeNodeMouseClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TreeNodeMouseClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseClickEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeMouseHoverEventArgs.#ctor(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.TreeNodeMouseHoverEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs#L16C29-L16C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs#L16C29-L16C33" } ], "DocsId": "T:System.Windows.Forms.TreeNodeMouseHoverEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeNodeMouseHoverEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseHoverEventHandler.Invoke(System.Object,System.Windows.Forms.TreeNodeMouseHoverEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseHoverEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TreeNodeMouseHoverEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeNodeMouseHoverEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TreeNodeMouseHoverEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeMouseHoverEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TreeNodeStates.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Grayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Indeterminate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Marked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "DocsId": "F:System.Windows.Forms.TreeNodeStates.ShowKeyboardCues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" } ], "DocsId": "T:System.Windows.Forms.TreeNodeStates", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeNodeState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeView.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L121C5-L173C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L147C5-L204C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1492C9-L1493C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1628C9-L1629C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.CollapseAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1500C9-L1501C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1636C9-L1637C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1510C12-L1510C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1646C12-L1646C46" }, { "DocsId": "M:System.Windows.Forms.TreeView.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1514C9-L1525C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1650C9-L1661C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1548C9-L1564C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1684C9-L1700C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1574C9-L1575C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1708C32-L1708C59" }, { "DocsId": "M:System.Windows.Forms.TreeView.ExpandAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1582C9-L1583C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1717C9-L1718C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.HitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1630C53-L1630C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1765C53-L1765C72" }, { "DocsId": "M:System.Windows.Forms.TreeView.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1637C9-L1645C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1772C9-L1780C51" }, { "DocsId": "M:System.Windows.Forms.TreeView.GetNodeCount(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1666C54-L1666C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1801C54-L1801C89" }, { "DocsId": "M:System.Windows.Forms.TreeView.GetNodeAt(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1671C45-L1671C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1806C45-L1806C66" }, { "DocsId": "M:System.Windows.Forms.TreeView.GetNodeAt(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1678C9-L1684C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1813C9-L1819C60" }, { "DocsId": "M:System.Windows.Forms.TreeView.IsInputKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1807C9-L1821C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1952C9-L1966C41" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnDrawNode(System.Windows.Forms.DrawTreeNodeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1838C9-L1838C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1983C9-L1983C37" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1842C9-L1963C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1987C9-L2106C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2022C9-L2034C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2165C9-L2177C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2041C9-L2043C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2184C9-L2186C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnMouseHover(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2054C9-L2078C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2197C9-L2221C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnBeforeLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2084C9-L2084C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2227C9-L2227C44" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnAfterLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2091C9-L2099C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2234C9-L2242C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnBeforeCheck(System.Windows.Forms.TreeViewCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2105C9-L2105C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2248C9-L2248C40" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnAfterCheck(System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2112C9-L2133C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2255C9-L2276C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnBeforeCollapse(System.Windows.Forms.TreeViewCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2139C9-L2139C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2282C9-L2282C43" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnAfterCollapse(System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2146C9-L2156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2289C9-L2299C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnBeforeExpand(System.Windows.Forms.TreeViewCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2162C9-L2162C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2305C9-L2305C41" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnAfterExpand(System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2169C9-L2179C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2312C9-L2322C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2185C9-L2185C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2328C9-L2328C37" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnNodeMouseHover(System.Windows.Forms.TreeNodeMouseHoverEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2191C9-L2191C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2334C9-L2334C43" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnBeforeSelect(System.Windows.Forms.TreeViewCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2197C9-L2197C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2340C9-L2340C41" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnAfterSelect(System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2204C9-L2224C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2347C9-L2367C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnNodeMouseClick(System.Windows.Forms.TreeNodeMouseClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2230C9-L2230C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2373C9-L2373C43" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnNodeMouseDoubleClick(System.Windows.Forms.TreeNodeMouseClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2236C9-L2236C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2379C9-L2379C49" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2243C9-L2267C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2386C9-L2410C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2274C9-L2286C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2417C9-L2429C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2293C9-L2304C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2436C9-L2447C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2309C9-L2320C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2452C9-L2463C6" + }, + { + "DocsId": "M:System.Windows.Forms.TreeView.OnNodeLeadingChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2473C9-L2479C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.Sort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2387C9-L2389C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2603C9-L2605C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2398C9-L2408C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2614C9-L2624C18" }, { "DocsId": "M:System.Windows.Forms.TreeView.GetItemRenderStyles(System.Windows.Forms.TreeNode,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L2866C9-L2884C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3082C9-L3100C23" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3077C9-L3085C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3293C9-L3301C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3089C9-L3091C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3305C9-L3307C6" }, { "DocsId": "M:System.Windows.Forms.TreeView.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3148C9-L3454C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L3364C9-L3670C6" + }, + { + "DocsId": "M:System.Windows.Forms.TreeView.BeginSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.SuspendMutation.cs#L12C9-L14C6" + }, + { + "DocsId": "M:System.Windows.Forms.TreeView.EndSuspendPaintingCore", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.SuspendMutation.cs#L19C9-L23C6" }, { "DocsId": "E:System.Windows.Forms.TreeView.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L223C16-L223C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L254C16-L254C52" }, { "DocsId": "E:System.Windows.Forms.TreeView.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L239C16-L239C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L270C16-L270C58" }, { "DocsId": "E:System.Windows.Forms.TreeView.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L947C16-L947C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1070C16-L1070C44" }, { "DocsId": "E:System.Windows.Forms.TreeView.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1284C16-L1284C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1407C16-L1407C41" }, { "DocsId": "E:System.Windows.Forms.TreeView.BeforeLabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1345C16-L1345C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1468C16-L1468C43" }, { "DocsId": "E:System.Windows.Forms.TreeView.AfterLabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1353C16-L1353C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1476C16-L1476C42" }, { "DocsId": "E:System.Windows.Forms.TreeView.BeforeCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1361C16-L1361C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1484C16-L1484C39" }, { "DocsId": "E:System.Windows.Forms.TreeView.AfterCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1369C16-L1369C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1492C16-L1492C38" }, { "DocsId": "E:System.Windows.Forms.TreeView.BeforeCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1377C16-L1377C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1500C16-L1500C42" }, { "DocsId": "E:System.Windows.Forms.TreeView.AfterCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1385C16-L1385C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1508C16-L1508C41" }, { "DocsId": "E:System.Windows.Forms.TreeView.BeforeExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1393C16-L1393C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1516C16-L1516C40" }, { "DocsId": "E:System.Windows.Forms.TreeView.AfterExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1401C16-L1401C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1524C16-L1524C39" }, { "DocsId": "E:System.Windows.Forms.TreeView.DrawNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1412C16-L1412C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1535C16-L1535C36" }, { "DocsId": "E:System.Windows.Forms.TreeView.ItemDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1420C16-L1420C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1543C16-L1543C36" }, { "DocsId": "E:System.Windows.Forms.TreeView.NodeMouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1428C16-L1428C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1551C16-L1551C42" }, { "DocsId": "E:System.Windows.Forms.TreeView.BeforeSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1436C16-L1436C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1559C16-L1559C40" }, { "DocsId": "E:System.Windows.Forms.TreeView.AfterSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1444C16-L1444C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1567C16-L1567C39" }, { "DocsId": "E:System.Windows.Forms.TreeView.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1456C16-L1456C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1579C16-L1579C35" }, { "DocsId": "E:System.Windows.Forms.TreeView.NodeMouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1464C16-L1464C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1587C16-L1587C42" }, { "DocsId": "E:System.Windows.Forms.TreeView.NodeMouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1472C16-L1472C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1595C16-L1595C48" }, { "DocsId": "E:System.Windows.Forms.TreeView.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1480C16-L1480C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1603C16-L1603C52" + }, + { + "DocsId": "E:System.Windows.Forms.TreeView.NodeLeadingChanged", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1615C16-L1615C46" }, { "DocsId": "P:System.Windows.Forms.TreeView.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L195C16-L195C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L226C16-L226C81" }, { "DocsId": "P:System.Windows.Forms.TreeView.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L215C16-L215C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L246C16-L246C36" }, { "DocsId": "P:System.Windows.Forms.TreeView.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L231C16-L231C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L262C16-L262C42" }, { "DocsId": "P:System.Windows.Forms.TreeView.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L252C16-L252C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L283C16-L283C28" }, { "DocsId": "P:System.Windows.Forms.TreeView.CheckBoxes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L275C16-L275C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L306C16-L306C56" }, { "DocsId": "P:System.Windows.Forms.TreeView.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L307C13-L405C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L338C13-L436C23" }, { "DocsId": "P:System.Windows.Forms.TreeView.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L413C44-L413C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L444C44-L444C56" }, { "DocsId": "P:System.Windows.Forms.TreeView.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L422C16-L422C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L453C16-L453C35" }, { "DocsId": "P:System.Windows.Forms.TreeView.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L440C16-L440C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L471C16-L471C85" }, { "DocsId": "P:System.Windows.Forms.TreeView.FullRowSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L460C16-L460C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L491C16-L491C59" }, { "DocsId": "P:System.Windows.Forms.TreeView.HideSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L483C16-L483C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L514C16-L514C59" }, { "DocsId": "P:System.Windows.Forms.TreeView.HotTracking", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L507C16-L507C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L538C16-L538C57" }, { "DocsId": "P:System.Windows.Forms.TreeView.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L536C13-L546C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L567C13-L577C39" }, { "DocsId": "P:System.Windows.Forms.TreeView.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L586C16-L586C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L617C16-L617C32" }, { "DocsId": "P:System.Windows.Forms.TreeView.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L614C16-L614C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L645C16-L645C26" }, { "DocsId": "P:System.Windows.Forms.TreeView.StateImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L690C16-L690C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L721C16-L721C31" }, { "DocsId": "P:System.Windows.Forms.TreeView.Indent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L735C13-L744C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L766C13-L775C42" + }, + { + "DocsId": "P:System.Windows.Forms.TreeView.NodeLeading", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L831C16-L831C73" }, { "DocsId": "P:System.Windows.Forms.TreeView.ItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L772C13-L788C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L877C13-L904C39" }, { "DocsId": "P:System.Windows.Forms.TreeView.LabelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L832C16-L832C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L955C16-L955C55" }, { "DocsId": "P:System.Windows.Forms.TreeView.LineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L856C13-L862C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L979C13-L985C31" }, { "DocsId": "P:System.Windows.Forms.TreeView.Nodes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L889C13-L891C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1012C13-L1014C27" }, { "DocsId": "P:System.Windows.Forms.TreeView.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L903C16-L903C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1026C16-L1026C25" }, { "DocsId": "P:System.Windows.Forms.TreeView.PathSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L930C16-L930C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1053C16-L1053C30" }, { "DocsId": "P:System.Windows.Forms.TreeView.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L939C16-L939C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1062C16-L1062C28" }, { "DocsId": "P:System.Windows.Forms.TreeView.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L962C16-L962C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1085C16-L1085C34" }, { "DocsId": "P:System.Windows.Forms.TreeView.Scrollable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L981C16-L981C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1104C16-L1104C56" }, { "DocsId": "P:System.Windows.Forms.TreeView.SelectedImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1007C13-L1017C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1130C13-L1140C47" }, { "DocsId": "P:System.Windows.Forms.TreeView.SelectedImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1057C16-L1057C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1180C16-L1180C40" }, { "DocsId": "P:System.Windows.Forms.TreeView.SelectedNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1088C13-L1104C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1211C13-L1227C29" }, { "DocsId": "P:System.Windows.Forms.TreeView.ShowLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1136C16-L1136C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1259C16-L1259C55" }, { "DocsId": "P:System.Windows.Forms.TreeView.ShowNodeToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1158C16-L1158C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1281C16-L1281C62" }, { "DocsId": "P:System.Windows.Forms.TreeView.ShowPlusMinus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1181C16-L1181C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1304C16-L1304C59" }, { "DocsId": "P:System.Windows.Forms.TreeView.ShowRootLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1204C16-L1204C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1327C16-L1327C59" }, { "DocsId": "P:System.Windows.Forms.TreeView.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1228C16-L1228C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1351C16-L1351C52" }, { "DocsId": "P:System.Windows.Forms.TreeView.TreeViewNodeSorter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1251C16-L1251C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1374C16-L1374C35" }, { "DocsId": "P:System.Windows.Forms.TreeView.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1276C16-L1276C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1399C16-L1399C25" }, { "DocsId": "P:System.Windows.Forms.TreeView.TopNode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1301C13-L1307C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1424C13-L1430C29" }, { "DocsId": "P:System.Windows.Forms.TreeView.VisibleCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1339C32-L1339C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs#L1462C32-L1462C117" } ], "DocsId": "T:System.Windows.Forms.TreeView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeView.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TreeViewAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewAction.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewAction.ByKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewAction.ByMouse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewAction.Collapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewAction.Expand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewAction.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewCancelEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Boolean,System.Windows.Forms.TreeViewAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L17C11-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L17C11-L21C6" }, { "DocsId": "P:System.Windows.Forms.TreeViewCancelEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L23C29-L23C33" }, { "DocsId": "P:System.Windows.Forms.TreeViewCancelEventArgs.Action", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L25C36-L25C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs#L25C36-L25C40" } ], "DocsId": "T:System.Windows.Forms.TreeViewCancelEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewCancelEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewCancelEventHandler.Invoke(System.Object,System.Windows.Forms.TreeViewCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewCancelEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TreeViewCancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewCancelEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewCancelEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewCancelEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TreeViewDrawMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewDrawMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewDrawMode.OwnerDrawText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewDrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewDrawMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewEventArgs.#ctor(System.Windows.Forms.TreeNode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L14C5-L18C6" }, { "DocsId": "M:System.Windows.Forms.TreeViewEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.TreeViewAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L20C5-L24C6" }, { "DocsId": "P:System.Windows.Forms.TreeViewEventArgs.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L26C29-L26C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L26C29-L26C33" }, { "DocsId": "P:System.Windows.Forms.TreeViewEventArgs.Action", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L31C36-L31C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs#L31C36-L31C40" } ], "DocsId": "T:System.Windows.Forms.TreeViewEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewEventHandler.Invoke(System.Object,System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TreeViewEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TreeViewEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewHitTestInfo.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.TreeViewHitTestLocations)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L17C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.TreeViewHitTestInfo.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L30C13-L30C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L30C13-L30C30" }, { "DocsId": "P:System.Windows.Forms.TreeViewHitTestInfo.Node", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L41C13-L41C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs#L41C13-L41C26" } ], "DocsId": "T:System.Windows.Forms.TreeViewHitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestInfo.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.Image", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.Indent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.AboveClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.BelowClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.LeftOfClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.RightOfClientArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.RightOfLabel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.StateImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TreeViewHitTestLocations.PlusMinus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewHitTestLocations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewHitTestLocation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L28C9-L40C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L28C9-L40C58" }, { "DocsId": "M:System.Windows.Forms.TreeViewImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L52C9-L66C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L52C9-L66C73" }, { "DocsId": "M:System.Windows.Forms.TreeViewImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L77C9-L141C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L77C9-L141C16" }, { "DocsId": "M:System.Windows.Forms.TreeViewImageIndexConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs" }, { "DocsId": "P:System.Windows.Forms.TreeViewImageIndexConverter.IncludeNoneAsStandardValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L19C13-L19C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs#L19C13-L19C26" } ], "DocsId": "T:System.Windows.Forms.TreeViewImageIndexConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageIndexConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TreeViewImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs#L24C9-L38C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs#L24C9-L38C73" }, { "DocsId": "M:System.Windows.Forms.TreeViewImageKeyConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs" } ], "DocsId": "T:System.Windows.Forms.TreeViewImageKeyConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TreeView/TreeViewImageKeyConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ContextMenu.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L23C28-L23C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L23C28-L23C93" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.#ctor(System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L25C48-L25C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L25C48-L25C115" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.OnCollapse(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L51C63-L51C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L51C63-L51C64" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.OnPopup(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L53C60-L53C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L53C60-L53C61" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L55C102-L55C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L55C102-L55C112" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.Show(System.Windows.Forms.Control,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L57C52-L57C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L57C52-L57C53" }, { "DocsId": "M:System.Windows.Forms.ContextMenu.Show(System.Windows.Forms.Control,System.Drawing.Point,System.Windows.Forms.LeftRightAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L59C82-L59C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L59C82-L59C83" }, { "DocsId": "E:System.Windows.Forms.ContextMenu.Popup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L41C15-L41C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L41C15-L41C16" }, { "DocsId": "E:System.Windows.Forms.ContextMenu.Collapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L47C15-L47C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L47C15-L47C16" }, { "DocsId": "P:System.Windows.Forms.ContextMenu.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L31C16-L31C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L31C16-L31C26" }, { "DocsId": "P:System.Windows.Forms.ContextMenu.SourceControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L37C37-L37C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs#L37C37-L37C47" } ], "DocsId": "T:System.Windows.Forms.ContextMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/ContextMenu.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Menu.#ctor(System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L27C5-L27C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L27C5-L27C82" }, { "DocsId": "M:System.Windows.Forms.Menu.CloneMenu(System.Windows.Forms.Menu)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L65C55-L65C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L65C55-L65C56" }, { "DocsId": "M:System.Windows.Forms.Menu.CreateMenuHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L67C52-L67C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L67C52-L67C62" }, { "DocsId": "M:System.Windows.Forms.Menu.FindMenuItem(System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L69C61-L69C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L69C61-L69C71" }, { "DocsId": "M:System.Windows.Forms.Menu.FindMergePosition(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L71C56-L71C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L71C56-L71C66" }, { "DocsId": "M:System.Windows.Forms.Menu.GetContextMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L73C44-L73C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L73C44-L73C54" }, { "DocsId": "M:System.Windows.Forms.Menu.GetMainMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L75C38-L75C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L75C38-L75C48" }, { "DocsId": "M:System.Windows.Forms.Menu.MergeMenu(System.Windows.Forms.Menu)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L77C51-L77C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L77C51-L77C52" }, { "DocsId": "M:System.Windows.Forms.Menu.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L79C85-L79C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L79C85-L79C95" }, { "DocsId": "F:System.Windows.Forms.Menu.FindHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" }, { "DocsId": "F:System.Windows.Forms.Menu.FindShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" }, { "DocsId": "P:System.Windows.Forms.Menu.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L32C29-L32C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L32C29-L32C39" }, { "DocsId": "P:System.Windows.Forms.Menu.IsParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L36C37-L36C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L36C37-L36C47" }, { "DocsId": "P:System.Windows.Forms.Menu.MdiListItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L40C36-L40C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L40C36-L40C46" }, { "DocsId": "P:System.Windows.Forms.Menu.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L46C16-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L46C16-L46C26" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L53C44-L53C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L53C44-L53C54" }, { "DocsId": "P:System.Windows.Forms.Menu.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L61C16-L61C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs#L61C16-L61C26" }, { "DocsId": "T:System.Windows.Forms.Menu.MenuItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs" } ], "DocsId": "T:System.Windows.Forms.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L26C25-L34C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L26C25-L34C66" }, { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L36C36-L44C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L36C36-L44C66" }, { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L46C58-L54C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L46C58-L54C66" }, { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor(System.String,System.EventHandler,System.Windows.Forms.Shortcut)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L56C77-L64C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L56C77-L64C66" }, { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor(System.String,System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L66C54-L74C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L66C54-L74C67" }, { "DocsId": "M:System.Windows.Forms.MenuItem.#ctor(System.Windows.Forms.MenuMerge,System.Int32,System.Windows.Forms.Shortcut,System.String,System.EventHandler,System.EventHandler,System.EventHandler,System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L84C29-L84C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L84C29-L84C92" }, { "DocsId": "M:System.Windows.Forms.MenuItem.CloneMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L247C44-L247C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L247C44-L247C54" }, { "DocsId": "M:System.Windows.Forms.MenuItem.CloneMenu(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L249C50-L249C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L249C50-L249C51" }, { "DocsId": "M:System.Windows.Forms.MenuItem.MergeMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L251C44-L251C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L251C44-L251C54" }, { "DocsId": "M:System.Windows.Forms.MenuItem.MergeMenu(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L253C47-L253C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L253C47-L253C48" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L255C51-L255C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L255C51-L255C52" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L257C62-L257C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L257C62-L257C63" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnInitMenuPopup(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L259C59-L259C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L259C59-L259C60" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L261C68-L261C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L261C68-L261C69" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnPopup(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L263C51-L263C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L263C51-L263C52" }, { "DocsId": "M:System.Windows.Forms.MenuItem.OnSelect(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L265C52-L265C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L265C52-L265C53" }, { "DocsId": "M:System.Windows.Forms.MenuItem.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L267C34-L267C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L267C34-L267C35" }, { "DocsId": "M:System.Windows.Forms.MenuItem.PerformSelect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L269C43-L269C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L269C43-L269C44" }, { "DocsId": "E:System.Windows.Forms.MenuItem.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L219C15-L219C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L219C15-L219C16" }, { "DocsId": "E:System.Windows.Forms.MenuItem.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L225C15-L225C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L225C15-L225C16" }, { "DocsId": "E:System.Windows.Forms.MenuItem.MeasureItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L231C15-L231C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L231C15-L231C16" }, { "DocsId": "E:System.Windows.Forms.MenuItem.Popup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L237C15-L237C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L237C15-L237C16" }, { "DocsId": "E:System.Windows.Forms.MenuItem.Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L243C15-L243C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L243C15-L243C16" }, { "DocsId": "P:System.Windows.Forms.MenuItem.BarBreak", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L90C16-L90C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L90C16-L90C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Break", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L98C16-L98C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L98C16-L98C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L105C16-L105C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L105C16-L105C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.DefaultItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L112C16-L112C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L112C16-L112C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.OwnerDraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L119C16-L119C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L119C16-L119C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L127C16-L127C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L127C16-L127C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L134C16-L134C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L134C16-L134C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.IsParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L141C16-L141C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L141C16-L141C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.MdiList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L147C16-L147C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L147C16-L147C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.MenuID", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L153C16-L153C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L153C16-L153C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.MergeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L159C16-L159C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L159C16-L159C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.MergeOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L166C16-L166C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L166C16-L166C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Mnemonic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L171C29-L171C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L171C29-L171C39" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L176C16-L176C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L176C16-L176C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.RadioCheck", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L182C16-L182C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L182C16-L182C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L189C16-L189C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L189C16-L189C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Shortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L197C16-L197C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L197C16-L197C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.ShowShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L205C16-L205C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L205C16-L205C26" }, { "DocsId": "P:System.Windows.Forms.MenuItem.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L213C16-L213C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs#L213C16-L213C26" } ], "DocsId": "T:System.Windows.Forms.MenuItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuItem.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MenuMerge.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" }, { "DocsId": "F:System.Windows.Forms.MenuMerge.Add", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" }, { "DocsId": "F:System.Windows.Forms.MenuMerge.Replace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" }, { "DocsId": "F:System.Windows.Forms.MenuMerge.MergeItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" }, { "DocsId": "F:System.Windows.Forms.MenuMerge.Remove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" } ], "DocsId": "T:System.Windows.Forms.MenuMerge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/MenuMerge.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGrid.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L32C5-L32C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L32C5-L32C67" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetAlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L306C47-L306C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L306C47-L306C48" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetGridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L308C40-L308C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L308C40-L308C41" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetHeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L310C42-L310C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L310C42-L310C43" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetHeaderFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L312C37-L312C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L312C37-L312C38" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetSelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L314C45-L314C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L314C45-L314C46" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetSelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L316C45-L316C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L316C45-L316C46" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeSelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L318C59-L318C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L318C59-L318C69" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeSelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L320C67-L320C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L320C67-L320C77" }, { "DocsId": "M:System.Windows.Forms.DataGrid.SetDataBinding(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L322C72-L322C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L322C72-L322C73" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeGridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L324C62-L324C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L324C62-L324C72" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeCaptionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L326C65-L326C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L326C65-L326C75" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeAlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L328C69-L328C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L328C69-L328C79" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeCaptionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L330C65-L330C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L330C65-L330C75" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeHeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L332C64-L332C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L332C64-L332C74" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeBackgroundColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L334C64-L334C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L334C64-L334C74" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeHeaderFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L336C51-L336C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L336C51-L336C61" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeHeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L338C64-L338C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L338C64-L338C74" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetHeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L340C42-L340C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L340C42-L340C43" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L350C36-L350C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L350C36-L350C37" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeLinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L360C63-L360C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L360C63-L360C73" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetLinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L362C41-L362C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L362C41-L362C42" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeParentRowsBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L376C68-L376C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L376C68-L376C78" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializeParentRowsForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L384C68-L384C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L384C68-L384C78" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ShouldSerializePreferredRowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L400C59-L400C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L400C59-L400C69" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnBorderStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L474C64-L474C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L474C64-L474C65" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnCaptionVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L476C67-L476C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L476C67-L476C68" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnCurrentCellChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L478C64-L478C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L478C64-L478C65" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnFlatModeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L480C61-L480C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L480C61-L480C62" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnBackgroundColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L482C68-L482C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L482C68-L482C69" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnAllowNavigationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L484C68-L484C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L484C68-L484C69" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnParentRowsVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L486C70-L486C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L486C70-L486C71" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnParentRowsLabelStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L488C73-L488C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L488C73-L488C74" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnReadOnlyChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L490C61-L490C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L490C61-L490C62" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnNavigate(System.Windows.Forms.NavigateEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L492C54-L492C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L492C54-L492C55" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnRowHeaderClick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L494C52-L494C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L494C52-L494C53" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnScroll(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L496C44-L496C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L496C44-L496C45" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GridHScrolled(System.Object,System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L498C79-L498C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L498C79-L498C80" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GridVScrolled(System.Object,System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L500C79-L500C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L500C79-L500C80" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnBackButtonClicked(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L502C70-L502C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L502C70-L502C71" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L504C63-L504C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L504C63-L504C64" }, { "DocsId": "M:System.Windows.Forms.DataGrid.OnShowParentDetailsButtonClicked(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L506C83-L506C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L506C83-L506C84" }, { "DocsId": "M:System.Windows.Forms.DataGrid.BeginEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L526C77-L526C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L526C77-L526C87" }, { "DocsId": "M:System.Windows.Forms.DataGrid.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L528C31-L528C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L528C31-L528C32" }, { "DocsId": "M:System.Windows.Forms.DataGrid.Collapse(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L530C37-L530C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L530C37-L530C38" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ColumnStartedEditing(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L532C78-L532C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L532C78-L532C79" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ColumnStartedEditing(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L534C84-L534C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L534C84-L534C85" }, { "DocsId": "M:System.Windows.Forms.DataGrid.EndEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L536C93-L536C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L536C93-L536C103" }, { "DocsId": "M:System.Windows.Forms.DataGrid.Expand(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L538C35-L538C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L538C35-L538C36" }, { "DocsId": "M:System.Windows.Forms.DataGrid.CreateGridColumn(System.ComponentModel.PropertyDescriptor,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L540C104-L540C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L540C104-L540C114" }, { "DocsId": "M:System.Windows.Forms.DataGrid.CreateGridColumn(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L542C88-L542C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L542C88-L542C98" }, { "DocsId": "M:System.Windows.Forms.DataGrid.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L544C29-L544C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L544C29-L544C30" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GetCurrentCellBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L546C48-L546C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L546C48-L546C58" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GetCellBounds(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L548C57-L548C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L548C57-L548C67" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GetCellBounds(System.Windows.Forms.DataGridCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L550C57-L550C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L550C57-L550C67" }, { "DocsId": "M:System.Windows.Forms.DataGrid.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L552C49-L552C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L552C49-L552C59" }, { "DocsId": "M:System.Windows.Forms.DataGrid.HitTest(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L554C51-L554C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L554C51-L554C61" }, { "DocsId": "M:System.Windows.Forms.DataGrid.IsExpanded(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L556C46-L556C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L556C46-L556C56" }, { "DocsId": "M:System.Windows.Forms.DataGrid.IsSelected(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L558C40-L558C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L558C40-L558C50" }, { "DocsId": "M:System.Windows.Forms.DataGrid.NavigateBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L560C34-L560C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L560C34-L560C35" }, { "DocsId": "M:System.Windows.Forms.DataGrid.NavigateTo(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L562C66-L562C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L562C66-L562C67" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ProcessGridKey(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L564C55-L564C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L564C55-L564C65" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ProcessTabKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L566C51-L566C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L566C51-L566C61" }, { "DocsId": "M:System.Windows.Forms.DataGrid.CancelEditing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L568C46-L568C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L568C46-L568C47" }, { "DocsId": "M:System.Windows.Forms.DataGrid.ResetSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L590C39-L590C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L590C39-L590C40" }, { "DocsId": "M:System.Windows.Forms.DataGrid.Select(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L592C35-L592C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L592C35-L592C36" }, { "DocsId": "M:System.Windows.Forms.DataGrid.SubObjectsSiteChange(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L594C51-L594C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L594C51-L594C52" }, { "DocsId": "M:System.Windows.Forms.DataGrid.UnSelect(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L596C37-L596C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L596C37-L596C38" }, { "DocsId": "M:System.Windows.Forms.DataGrid.GetOutputTextDelimiter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L598C58-L598C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L598C58-L598C68" }, { "DocsId": "E:System.Windows.Forms.DataGrid.BorderStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L86C15-L86C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L86C15-L86C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.CaptionVisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L127C15-L127C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L127C15-L127C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.DataSourceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L173C15-L173C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L173C15-L173C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.CurrentCellChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L187C15-L187C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L187C15-L187C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L195C15-L195C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L195C15-L195C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.ParentRowsLabelStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L238C15-L238C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L238C15-L238C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.FlatModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L254C15-L254C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L254C15-L254C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.BackgroundColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L278C15-L278C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L278C15-L278C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L286C15-L286C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L286C15-L286C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L294C15-L294C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L294C15-L294C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.AllowNavigationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L366C15-L366C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L366C15-L366C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L411C15-L411C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L411C15-L411C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.ParentRowsVisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L424C15-L424C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L424C15-L424C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.Navigate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L510C15-L510C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L510C15-L510C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.RowHeaderClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L516C15-L516C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L516C15-L516C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L522C15-L522C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L522C15-L522C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.BackButtonClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L572C15-L572C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L572C15-L572C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.ShowParentDetailsButtonClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L578C15-L578C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L578C15-L578C16" }, { "DocsId": "E:System.Windows.Forms.DataGrid.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L586C15-L586C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L586C15-L586C16" }, { "DocsId": "P:System.Windows.Forms.DataGrid.AllowNavigation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L37C16-L37C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L37C16-L37C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.AllowSorting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L44C16-L44C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L44C16-L44C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.AlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L50C16-L50C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L50C16-L50C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.BackgroundColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L56C16-L56C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L56C16-L56C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L64C16-L64C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L64C16-L64C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L72C16-L72C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L72C16-L72C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L80C16-L80C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L80C16-L80C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CaptionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L92C16-L92C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L92C16-L92C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CaptionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L98C16-L98C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L98C16-L98C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CaptionFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L106C16-L106C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L106C16-L106C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CaptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L114C16-L114C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L114C16-L114C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CaptionVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L121C16-L121C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L121C16-L121C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ColumnHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L134C16-L134C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L134C16-L134C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CurrentCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L142C16-L142C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L142C16-L142C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.CurrentRowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L150C16-L150C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L150C16-L150C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L158C16-L158C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L158C16-L158C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L167C16-L167C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L167C16-L167C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.DataMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L181C16-L181C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L181C16-L181C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.SelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L201C16-L201C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L201C16-L201C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.SelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L207C16-L207C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L207C16-L207C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.TableStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L213C53-L213C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L213C53-L213C63" }, { "DocsId": "P:System.Windows.Forms.DataGrid.GridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L217C16-L217C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L217C16-L217C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.GridLineStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L224C16-L224C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L224C16-L224C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ParentRowsLabelStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L232C16-L232C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L232C16-L232C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.FirstVisibleColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L243C38-L243C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L243C38-L243C48" }, { "DocsId": "P:System.Windows.Forms.DataGrid.FlatMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L248C16-L248C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L248C16-L248C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L260C16-L260C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L260C16-L260C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HeaderFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L266C16-L266C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L266C16-L266C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L272C16-L272C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L272C16-L272C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ListManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L302C16-L302C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L302C16-L302C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HorizScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L342C43-L342C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L342C43-L342C53" }, { "DocsId": "P:System.Windows.Forms.DataGrid.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L346C16-L346C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L346C16-L346C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.LinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L356C16-L356C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L356C16-L356C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ParentRowsBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L372C16-L372C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L372C16-L372C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ParentRowsForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L380C16-L380C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L380C16-L380C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.PreferredColumnWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L390C16-L390C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L390C16-L390C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.PreferredRowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L396C16-L396C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L396C16-L396C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L405C16-L405C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L405C16-L405C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.ParentRowsVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L418C16-L418C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L418C16-L418C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.RowHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L431C16-L431C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L431C16-L431C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.RowHeaderWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L438C16-L438C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L438C16-L438C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L448C16-L448C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L448C16-L448C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.VertScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L454C42-L454C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L454C42-L454C52" }, { "DocsId": "P:System.Windows.Forms.DataGrid.VisibleColumnCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L457C38-L457C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L457C38-L457C48" }, { "DocsId": "P:System.Windows.Forms.DataGrid.VisibleRowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L460C35-L460C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L460C35-L460C45" }, { "DocsId": "P:System.Windows.Forms.DataGrid.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L464C16-L464C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L464C16-L464C26" }, { "DocsId": "P:System.Windows.Forms.DataGrid.Item(System.Windows.Forms.DataGridCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L470C16-L470C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs#L470C16-L470C26" }, { "DocsId": "T:System.Windows.Forms.DataGrid.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" }, { "DocsId": "T:System.Windows.Forms.DataGrid.HitTestType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" } ], "DocsId": "T:System.Windows.Forms.DataGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L23C5-L23C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L23C5-L23C77" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.#ctor(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L25C5-L25C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L25C5-L25C100" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.#ctor(System.ComponentModel.PropertyDescriptor,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L27C5-L27C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L27C5-L27C116" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.GetPreferredSize(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L78C84-L78C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L78C84-L78C94" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.GetMinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L80C59-L80C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L80C59-L80C69" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.GetPreferredHeight(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L82C85-L82C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L82C85-L82C95" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.Abort(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L84C58-L84C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L84C58-L84C59" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.Commit(System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L86C88-L86C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L86C88-L86C98" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.Edit(System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Rectangle,System.Boolean,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L94C7-L94C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L94C7-L94C8" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L101C7-L101C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L101C7-L101C8" }, { "DocsId": "M:System.Windows.Forms.DataGridBoolColumn.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L104C7-L104C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L104C7-L104C8" }, { "DocsId": "E:System.Windows.Forms.DataGridBoolColumn.AllowNullChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L38C15-L38C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L38C15-L38C16" }, { "DocsId": "E:System.Windows.Forms.DataGridBoolColumn.TrueValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L52C15-L52C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L52C15-L52C16" }, { "DocsId": "E:System.Windows.Forms.DataGridBoolColumn.FalseValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L66C15-L66C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L66C15-L66C16" }, { "DocsId": "P:System.Windows.Forms.DataGridBoolColumn.AllowNull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L32C16-L32C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L32C16-L32C26" }, { "DocsId": "P:System.Windows.Forms.DataGridBoolColumn.TrueValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L46C16-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L46C16-L46C26" }, { "DocsId": "P:System.Windows.Forms.DataGridBoolColumn.FalseValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L60C16-L60C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L60C16-L60C26" }, { "DocsId": "P:System.Windows.Forms.DataGridBoolColumn.NullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L73C16-L73C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs#L73C16-L73C26" } ], "DocsId": "T:System.Windows.Forms.DataGridBoolColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridBoolColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridCell.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L24C42-L24C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L24C42-L24C83" }, { "DocsId": "P:System.Windows.Forms.DataGridCell.ColumnNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L28C25-L28C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L28C25-L28C35" }, { "DocsId": "P:System.Windows.Forms.DataGridCell.RowNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L34C25-L34C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs#L34C25-L34C35" } ], "DocsId": "T:System.Windows.Forms.DataGridCell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridCell.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L27C5-L27C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L27C5-L27C78" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.#ctor(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L29C5-L29C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L29C5-L29C101" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.CreateHeaderAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L144C74-L144C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L144C74-L144C84" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.SetDataGrid(System.Windows.Forms.DataGrid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L146C58-L146C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L146C58-L146C59" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.SetDataGridInColumn(System.Windows.Forms.DataGrid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L148C66-L148C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L148C66-L148C67" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.BeginUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L150C36-L150C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L150C36-L150C37" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.EndUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L152C34-L152C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L152C34-L152C35" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.GetPreferredSize(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.GetMinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.GetPreferredHeight(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.GetColumnValueAtRow(System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L160C98-L160C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L160C98-L160C108" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Invalidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L162C43-L162C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L162C43-L162C44" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.CheckValidDataSource(System.Windows.Forms.CurrencyManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L164C66-L164C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L164C66-L164C67" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Abort(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Commit(System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Edit(System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L175C7-L175C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L175C7-L175C8" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Edit(System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Rectangle,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L183C7-L183C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L183C7-L183C8" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Edit(System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Rectangle,System.Boolean,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.EnterNullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L193C56-L193C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L193C56-L193C57" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.ConcedeFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L195C54-L195C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L195C54-L195C55" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Brush,System.Drawing.Brush,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L212C7-L212C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L212C7-L212C8" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.ReleaseHostedControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L216C62-L216C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L216C62-L216C63" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.ResetHeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L218C37-L218C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L218C37-L218C38" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.SetColumnValueAtRow(System.Windows.Forms.CurrencyManager,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L220C109-L220C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L220C109-L220C110" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.System#Windows#Forms#IDataGridColumnStyleEditingNotificationService#ColumnStartedEditing(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L222C104-L222C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L222C104-L222C105" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.ColumnStartedEditing(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L224C84-L224C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L224C84-L224C85" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.UpdateUI(System.Windows.Forms.CurrencyManager,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L226C104-L226C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L226C104-L226C105" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.AlignmentChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L41C15-L41C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L41C15-L41C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.PropertyDescriptorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L61C15-L61C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L61C15-L61C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L72C15-L72C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L72C15-L72C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.HeaderTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L85C15-L85C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L85C15-L85C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.MappingNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L100C15-L100C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L100C15-L100C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.NullTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L113C15-L113C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L113C15-L113C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L126C15-L126C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L126C15-L126C16" }, { "DocsId": "E:System.Windows.Forms.DataGridColumnStyle.WidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L140C15-L140C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L140C15-L140C16" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L35C16-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L35C16-L35C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.HeaderAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L46C55-L46C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L46C55-L46C65" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.PropertyDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L53C16-L53C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L53C16-L53C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.DataGridTableStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L66C61-L66C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L66C61-L66C71" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.FontHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L68C33-L68C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L68C33-L68C43" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.HeaderText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L79C16-L79C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L79C16-L79C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.MappingName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L94C16-L94C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L94C16-L94C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.NullText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L107C16-L107C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L107C16-L107C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L120C16-L120C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L120C16-L120C26" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L134C16-L134C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs#L134C16-L134C26" }, { "DocsId": "T:System.Windows.Forms.DataGridColumnStyle.CompModSwitches", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs" }, { "DocsId": "T:System.Windows.Forms.DataGridColumnStyle.DataGridColumnHeaderAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridColumnStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridLineStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridLineStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridLineStyle.Solid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridLineStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridLineStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGridParentRowsLabelStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridParentRowsLabelStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridParentRowsLabelStyle.TableName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridParentRowsLabelStyle.ColumnName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" }, { "DocsId": "F:System.Windows.Forms.DataGridParentRowsLabelStyle.Both", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" } ], "DocsId": "T:System.Windows.Forms.DataGridParentRowsLabelStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridParentRowsLabel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridPreferredColumnWidthTypeConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridPreferredColumnWidthTypeConverter.cs#L23C5-L23C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridPreferredColumnWidthTypeConverter.cs#L23C5-L23C100" } ], "DocsId": "T:System.Windows.Forms.DataGridPreferredColumnWidthTypeConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridPreferredColumnWidthTypeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridPreferredColumnWidthTypeConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L26C35-L26C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L26C35-L26C112" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L28C5-L28C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L28C5-L28C101" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.#ctor(System.Windows.Forms.CurrencyManager)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L30C62-L30C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L30C62-L30C113" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetAlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L57C47-L57C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L57C47-L57C48" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeAlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L59C69-L59C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L59C69-L59C79" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L61C50-L61C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L61C50-L61C60" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L63C50-L63C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L63C50-L63C60" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L77C36-L77C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L77C36-L77C37" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L91C36-L91C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L91C36-L91C37" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeGridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L105C62-L105C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L105C62-L105C72" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetGridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L107C40-L107C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L107C40-L107C41" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeHeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L134C64-L134C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L134C64-L134C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetHeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L136C42-L136C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L136C42-L136C43" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetHeaderFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L152C37-L152C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L152C37-L152C38" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeHeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L166C64-L166C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L166C64-L166C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetHeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L168C42-L168C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L168C42-L168C43" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L182C58-L182C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L182C58-L182C68" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L184C36-L184C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L184C36-L184C37" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeLinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L200C63-L200C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L200C63-L200C73" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetLinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L202C41-L202C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L202C41-L202C42" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializePreferredRowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L232C59-L232C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L232C59-L232C69" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeSelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L286C59-L286C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L286C59-L286C69" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetSelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L288C45-L288C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L288C45-L288C46" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeSelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L303C67-L303C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L303C67-L303C77" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.ResetSelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L305C45-L305C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L305C45-L305C46" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.BeginEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L347C77-L347C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L347C77-L347C87" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.EndEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L349C93-L349C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L349C93-L349C103" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.CreateGridColumn(System.ComponentModel.PropertyDescriptor,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L351C113-L351C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L351C113-L351C123" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.CreateGridColumn(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L353C97-L353C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L353C97-L353C107" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnReadOnlyChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L355C61-L355C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L355C61-L355C62" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnMappingNameChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L357C64-L357C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L357C64-L357C65" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnAlternatingBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L359C73-L359C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L359C73-L359C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L361C62-L361C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L361C62-L361C63" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L363C62-L363C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L363C62-L363C63" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnAllowSortingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L365C65-L365C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L365C65-L365C66" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnGridLineColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L367C66-L367C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L367C66-L367C67" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnGridLineStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L369C66-L369C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L369C66-L369C67" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnHeaderBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L371C68-L371C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L371C68-L371C69" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnHeaderFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L373C63-L373C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L373C63-L373C64" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnHeaderForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L375C68-L375C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L375C68-L375C69" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnLinkColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L377C62-L377C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L377C62-L377C63" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnLinkHoverColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L379C67-L379C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L379C67-L379C68" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnPreferredRowHeightChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L381C71-L381C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L381C71-L381C72" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnPreferredColumnWidthChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L383C73-L383C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L383C73-L383C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnColumnHeadersVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L385C73-L385C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L385C73-L385C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnRowHeadersVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L387C70-L387C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L387C70-L387C71" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnRowHeaderWidthChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L389C67-L389C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L389C67-L389C68" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnSelectionForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L391C71-L391C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L391C71-L391C72" }, { "DocsId": "M:System.Windows.Forms.DataGridTableStyle.OnSelectionBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L393C71-L393C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L393C71-L393C72" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.AllowSortingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L41C15-L41C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L41C15-L41C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.AlternatingBackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L53C15-L53C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L53C15-L53C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L73C15-L73C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L73C15-L73C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L87C15-L87C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L87C15-L87C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.GridLineColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L101C15-L101C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L101C15-L101C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.GridLineStyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L118C15-L118C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L118C15-L118C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.HeaderBackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L130C15-L130C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L130C15-L130C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.HeaderFontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L148C15-L148C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L148C15-L148C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.HeaderForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L162C15-L162C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L162C15-L162C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.LinkColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L178C15-L178C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L178C15-L178C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.LinkHoverColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L196C15-L196C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L196C15-L196C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.PreferredColumnWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L215C15-L215C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L215C15-L215C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.PreferredRowHeightChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L228C15-L228C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L228C15-L228C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.ColumnHeadersVisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L243C15-L243C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L243C15-L243C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.RowHeadersVisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L256C15-L256C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L256C15-L256C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.RowHeaderWidthChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L270C15-L270C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L270C15-L270C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.SelectionBackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L282C15-L282C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L282C15-L282C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.SelectionForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L299C15-L299C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L299C15-L299C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.MappingNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L319C15-L319C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L319C15-L319C16" }, { "DocsId": "E:System.Windows.Forms.DataGridTableStyle.ReadOnlyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L343C15-L343C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L343C15-L343C16" }, { "DocsId": "F:System.Windows.Forms.DataGridTableStyle.DefaultTableStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.AllowSorting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L35C16-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L35C16-L35C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L47C16-L47C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L47C16-L47C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L67C16-L67C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L67C16-L67C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L81C16-L81C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L81C16-L81C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.GridLineColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L95C16-L95C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L95C16-L95C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.GridLineStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L112C16-L112C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L112C16-L112C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.HeaderBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L124C16-L124C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L124C16-L124C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.HeaderFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L142C16-L142C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L142C16-L142C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.HeaderForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L156C16-L156C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L156C16-L156C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L172C16-L172C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L172C16-L172C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.LinkHoverColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L190C16-L190C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L190C16-L190C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.PreferredColumnWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L209C16-L209C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L209C16-L209C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.PreferredRowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L222C16-L222C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L222C16-L222C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.ColumnHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L237C16-L237C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L237C16-L237C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.RowHeadersVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L250C16-L250C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L250C16-L250C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.RowHeaderWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L264C16-L264C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L264C16-L264C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.SelectionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L276C16-L276C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L276C16-L276C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.SelectionForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L293C16-L293C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L293C16-L293C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.MappingName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L313C16-L313C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L313C16-L313C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.GridColumnStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L325C67-L325C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L325C67-L325C77" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.DataGrid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L330C16-L330C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L330C16-L330C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTableStyle.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L337C16-L337C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs#L337C16-L337C26" } ], "DocsId": "T:System.Windows.Forms.DataGridTableStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTableStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridTextBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L28C5-L28C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L28C5-L28C74" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBox.SetDataGrid(System.Windows.Forms.DataGrid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L30C52-L30C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L30C52-L30C53" }, { "DocsId": "P:System.Windows.Forms.DataGridTextBox.IsInEditOrNavigateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L34C16-L34C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs#L34C16-L34C26" } ], "DocsId": "T:System.Windows.Forms.DataGridTextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L24C5-L24C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L24C5-L24C80" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.#ctor(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L26C5-L26C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L26C5-L26C103" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.#ctor(System.ComponentModel.PropertyDescriptor,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L28C5-L28C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L28C5-L28C118" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.#ctor(System.ComponentModel.PropertyDescriptor,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L30C5-L30C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L30C5-L30C134" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.#ctor(System.ComponentModel.PropertyDescriptor,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L32C5-L32C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L32C5-L32C119" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.HideEditBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L59C36-L59C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L59C36-L59C37" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.EndEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L61C32-L61C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L61C32-L61C33" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L68C7-L68C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L68C7-L68C8" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Brush,System.Drawing.Brush,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L77C7-L77C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L77C7-L77C8" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.GetPreferredSize(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L79C84-L79C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L79C84-L79C94" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.GetMinimumHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L81C59-L81C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L81C59-L81C69" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.GetPreferredHeight(System.Drawing.Graphics,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L83C85-L83C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L83C85-L83C95" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.Abort(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L85C58-L85C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L85C58-L85C59" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.Commit(System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L87C88-L87C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L87C88-L87C98" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.Edit(System.Windows.Forms.CurrencyManager,System.Int32,System.Drawing.Rectangle,System.Boolean,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L96C7-L96C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L96C7-L96C8" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L104C7-L104C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L104C7-L104C8" }, { "DocsId": "M:System.Windows.Forms.DataGridTextBoxColumn.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CurrencyManager,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L107C7-L107C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L107C7-L107C8" }, { "DocsId": "P:System.Windows.Forms.DataGridTextBoxColumn.TextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L35C39-L35C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L35C39-L35C49" }, { "DocsId": "P:System.Windows.Forms.DataGridTextBoxColumn.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L41C16-L41C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L41C16-L41C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTextBoxColumn.FormatInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L49C16-L49C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L49C16-L49C26" }, { "DocsId": "P:System.Windows.Forms.DataGridTextBoxColumn.PropertyDescriptor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L56C15-L56C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs#L56C15-L56C16" } ], "DocsId": "T:System.Windows.Forms.DataGridTextBoxColumn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridTextBoxColumn.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L28C36-L28C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L28C36-L28C46" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L30C26-L30C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L30C26-L30C27" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L32C42-L32C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L32C42-L32C52" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L34C40-L34C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L34C40-L34C50" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L36C50-L36C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L36C50-L36C51" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L38C39-L38C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L38C39-L38C40" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L40C38-L40C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L40C38-L40C39" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L42C31-L42C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L42C31-L42C41" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L44C30-L44C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L44C30-L44C40" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L48C16-L48C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L48C16-L48C26" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L49C15-L49C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L49C15-L49C16" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L52C55-L52C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L52C55-L52C56" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L54C30-L54C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L54C30-L54C40" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L56C40-L56C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L56C40-L56C50" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L58C36-L58C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L58C36-L58C46" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L60C48-L60C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L60C48-L60C58" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Add(System.Windows.Forms.DataGridColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L68C59-L68C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L68C59-L68C69" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.AddRange(System.Windows.Forms.DataGridColumnStyle[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L70C59-L70C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L70C59-L70C60" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L78C27-L78C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L78C27-L78C28" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Contains(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L80C68-L80C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L80C68-L80C78" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Contains(System.Windows.Forms.DataGridColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L82C57-L82C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L82C57-L82C67" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L84C42-L84C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L84C42-L84C52" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.IndexOf(System.Windows.Forms.DataGridColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L86C56-L86C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L86C56-L86C66" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L88C71-L88C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L88C71-L88C72" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.Remove(System.Windows.Forms.DataGridColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L90C54-L90C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L90C54-L90C55" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L92C39-L92C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L92C39-L92C40" }, { "DocsId": "M:System.Windows.Forms.GridColumnStylesCollection.ResetPropertyDescriptors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L94C46-L94C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L94C46-L94C47" }, { "DocsId": "E:System.Windows.Forms.GridColumnStylesCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L74C15-L74C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L74C15-L74C16" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L42C31-L42C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L42C31-L42C41" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L44C30-L44C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L44C30-L44C40" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L48C16-L48C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L48C16-L48C26" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L54C30-L54C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L54C30-L54C40" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L56C40-L56C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L56C40-L56C50" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L58C36-L58C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L58C36-L58C46" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L62C51-L62C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L62C51-L62C61" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L64C59-L64C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L64C59-L64C69" }, { "DocsId": "P:System.Windows.Forms.GridColumnStylesCollection.Item(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L66C78-L66C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs#L66C78-L66C88" } ], "DocsId": "T:System.Windows.Forms.GridColumnStylesCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridColumnStylesCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GridTablesFactory.CreateGridTables(System.Windows.Forms.DataGridTableStyle,System.Object,System.String,System.Windows.Forms.BindingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTablesFactory.cs#L28C43-L28C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTablesFactory.cs#L28C43-L28C84" } ], "DocsId": "T:System.Windows.Forms.GridTablesFactory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTablesFactory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTablesFactory.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L26C36-L26C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L26C36-L26C46" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L28C26-L28C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L28C26-L28C27" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L30C42-L30C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L30C42-L30C52" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L32C40-L32C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L32C40-L32C50" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L34C50-L34C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L34C50-L34C51" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L36C39-L36C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L36C39-L36C40" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L38C38-L38C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L38C38-L38C39" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L40C31-L40C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L40C31-L40C41" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L42C30-L42C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L42C30-L42C40" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L46C16-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L46C16-L46C26" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L47C15-L47C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L47C15-L47C16" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L50C55-L50C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L50C55-L50C56" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L52C30-L52C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L52C30-L52C40" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L54C40-L54C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L54C40-L54C50" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L56C36-L56C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L56C36-L56C46" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L58C48-L58C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L58C48-L58C58" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.Add(System.Windows.Forms.DataGridTableStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L64C57-L64C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L64C57-L64C67" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.AddRange(System.Windows.Forms.DataGridTableStyle[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L66C65-L66C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L66C65-L66C66" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L74C27-L74C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L74C27-L74C28" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.Contains(System.Windows.Forms.DataGridTableStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L76C55-L76C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L76C55-L76C65" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L78C42-L78C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L78C42-L78C52" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L80C71-L80C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L80C71-L80C72" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.Remove(System.Windows.Forms.DataGridTableStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L82C52-L82C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L82C52-L82C53" }, { "DocsId": "M:System.Windows.Forms.GridTableStylesCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L84C39-L84C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L84C39-L84C40" }, { "DocsId": "E:System.Windows.Forms.GridTableStylesCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L70C15-L70C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L70C15-L70C16" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L40C31-L40C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L40C31-L40C41" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L42C30-L42C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L42C30-L42C40" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L46C16-L46C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L46C16-L46C26" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L52C30-L52C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L52C30-L52C40" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L54C40-L54C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L54C40-L54C50" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L56C36-L56C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L56C36-L56C46" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L60C50-L60C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L60C50-L60C60" }, { "DocsId": "P:System.Windows.Forms.GridTableStylesCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L62C57-L62C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs#L62C57-L62C67" } ], "DocsId": "T:System.Windows.Forms.GridTableStylesCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/GridTableStylesCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDataGridEditingService.BeginEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" }, { "DocsId": "M:System.Windows.Forms.IDataGridEditingService.EndEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" } ], "DocsId": "T:System.Windows.Forms.IDataGridEditingService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/IDataGridEditingService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MainMenu.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L23C25-L23C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L23C25-L23C90" }, { "DocsId": "M:System.Windows.Forms.MainMenu.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L25C45-L25C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L25C45-L25C96" }, { "DocsId": "M:System.Windows.Forms.MainMenu.#ctor(System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L27C41-L27C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L27C41-L27C104" }, { "DocsId": "M:System.Windows.Forms.MainMenu.CloneMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L43C44-L43C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L43C44-L43C54" }, { "DocsId": "M:System.Windows.Forms.MainMenu.GetForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L45C30-L45C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L45C30-L45C40" }, { "DocsId": "M:System.Windows.Forms.MainMenu.OnCollapse(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L47C63-L47C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L47C63-L47C64" }, { "DocsId": "E:System.Windows.Forms.MainMenu.Collapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L31C15-L31C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L31C15-L31C16" }, { "DocsId": "P:System.Windows.Forms.MainMenu.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L39C16-L39C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs#L39C16-L39C26" } ], "DocsId": "T:System.Windows.Forms.MainMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/MainMenu/MainMenu.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L29C5-L29C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L29C5-L29C68" }, { "DocsId": "M:System.Windows.Forms.StatusBar.OnPanelClick(System.Windows.Forms.StatusBarPanelClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L178C75-L178C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L178C75-L178C76" }, { "DocsId": "M:System.Windows.Forms.StatusBar.OnDrawItem(System.Windows.Forms.StatusBarDrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L180C79-L180C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L180C79-L180C80" }, { "DocsId": "E:System.Windows.Forms.StatusBar.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L122C15-L122C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L122C15-L122C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L130C15-L130C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L130C15-L130C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L138C15-L138C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L138C15-L138C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.DrawItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L144C15-L144C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L144C15-L144C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L152C15-L152C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L152C15-L152C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L160C15-L160C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L160C15-L160C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L168C15-L168C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L168C15-L168C16" }, { "DocsId": "E:System.Windows.Forms.StatusBar.PanelClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L174C15-L174C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L174C15-L174C16" }, { "DocsId": "P:System.Windows.Forms.StatusBar.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L35C16-L35C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L35C16-L35C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L43C16-L43C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L43C16-L43C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L51C16-L51C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L51C16-L51C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L59C16-L59C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L59C16-L59C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L66C16-L66C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L66C16-L66C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L73C16-L73C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L73C16-L73C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L81C16-L81C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L81C16-L81C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L89C16-L89C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L89C16-L89C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.Panels", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L96C47-L96C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L96C47-L96C57" }, { "DocsId": "P:System.Windows.Forms.StatusBar.ShowPanels", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L101C16-L101C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L101C16-L101C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.SizingGrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L108C16-L108C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L108C16-L108C26" }, { "DocsId": "P:System.Windows.Forms.StatusBar.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L113C38-L113C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L113C38-L113C48" }, { "DocsId": "P:System.Windows.Forms.StatusBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L116C42-L116C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs#L116C42-L116C52" }, { "DocsId": "T:System.Windows.Forms.StatusBar.StatusBarPanelCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState,System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L29C33-L34C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L29C33-L34C75" }, { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState,System.Windows.Forms.StatusBarPanel,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L44C28-L51C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L44C28-L51C79" }, { "DocsId": "P:System.Windows.Forms.StatusBarDrawItemEventArgs.Panel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L53C36-L53C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs#L53C36-L53C46" } ], "DocsId": "T:System.Windows.Forms.StatusBarDrawItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventHandler.Invoke(System.Object,System.Windows.Forms.StatusBarDrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.StatusBarDrawItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarDrawItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBarDrawItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarDrawItemEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBarPanel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L27C5-L27C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L27C5-L27C73" }, { "DocsId": "M:System.Windows.Forms.StatusBarPanel.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L121C31-L121C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L121C31-L121C32" }, { "DocsId": "M:System.Windows.Forms.StatusBarPanel.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L123C29-L123C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L123C29-L123C30" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Alignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L33C16-L33C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L33C16-L33C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L41C16-L41C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L41C16-L41C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L49C16-L49C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L49C16-L49C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L57C16-L57C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L57C16-L57C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.MinWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L66C16-L66C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L66C16-L66C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L73C16-L73C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L73C16-L73C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L78C32-L78C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L78C32-L78C42" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L83C16-L83C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L83C16-L83C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L93C16-L93C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L93C16-L93C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L101C16-L101C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L101C16-L101C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L109C16-L109C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L109C16-L109C26" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanel.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L117C16-L117C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs#L117C16-L117C26" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanel.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.StatusBarPanelAutoSize.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelAutoSize.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelAutoSize.Spring", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelAutoSize.Contents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanelAutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelAutoSize.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.StatusBarPanelBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelBorderStyle.Raised", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelBorderStyle.Sunken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanelBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBarPanelClickEventArgs.#ctor(System.Windows.Forms.StatusBarPanel,System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs#L27C18-L27C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs#L27C18-L27C121" }, { "DocsId": "P:System.Windows.Forms.StatusBarPanelClickEventArgs.StatusBarPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs#L29C45-L29C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs#L29C45-L29C55" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanelClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBarPanelClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarPanelClickEventHandler.Invoke(System.Object,System.Windows.Forms.StatusBarPanelClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarPanelClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.StatusBarPanelClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.StatusBarPanelClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanelClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelClickEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.StatusBarPanelStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelStyle.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" }, { "DocsId": "F:System.Windows.Forms.StatusBarPanelStyle.OwnerDraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" } ], "DocsId": "T:System.Windows.Forms.StatusBarPanelStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBarPanelStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L30C5-L30C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L30C5-L30C66" }, { "DocsId": "M:System.Windows.Forms.ToolBar.OnButtonClick(System.Windows.Forms.ToolBarButtonClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L277C75-L277C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L277C75-L277C76" }, { "DocsId": "M:System.Windows.Forms.ToolBar.OnButtonDropDown(System.Windows.Forms.ToolBarButtonClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L279C78-L279C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L279C78-L279C79" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L282C61-L282C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L282C61-L282C62" }, { "DocsId": "E:System.Windows.Forms.ToolBar.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L197C15-L197C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L197C15-L197C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L205C15-L205C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L205C15-L205C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L213C15-L213C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L213C15-L213C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L221C15-L221C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L221C15-L221C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.ButtonClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L227C15-L227C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L227C15-L227C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.ButtonDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L233C15-L233C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L233C15-L233C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L241C15-L241C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L241C15-L241C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L249C15-L249C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L249C15-L249C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L257C15-L257C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L257C15-L257C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L265C15-L265C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L265C15-L265C16" }, { "DocsId": "E:System.Windows.Forms.ToolBar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L273C15-L273C16" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L273C15-L273C16" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Appearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L36C16-L36C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L36C16-L36C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L47C16-L47C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L47C16-L47C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L55C16-L55C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L55C16-L55C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L63C16-L63C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L63C16-L63C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L71C16-L71C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L71C16-L71C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L79C16-L79C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L79C16-L79C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Buttons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L86C47-L86C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L86C47-L86C57" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L92C16-L92C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L92C16-L92C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Divider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L99C16-L99C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L99C16-L99C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L107C16-L107C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L107C16-L107C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.DoubleBuffered", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L114C16-L114C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L114C16-L114C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.DropDownArrows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L122C16-L122C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L122C16-L122C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L130C16-L130C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L130C16-L130C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ImageList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L137C16-L137C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L137C16-L137C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ImageSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L144C30-L144C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L144C30-L144C40" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L148C41-L148C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L148C41-L148C51" }, { "DocsId": "P:System.Windows.Forms.ToolBar.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L152C54-L152C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L152C54-L152C64" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ShowToolTips", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L158C16-L158C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L158C16-L158C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L165C16-L165C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L165C16-L165C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L174C16-L174C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L174C16-L174C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L181C16-L181C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L181C16-L181C26" }, { "DocsId": "P:System.Windows.Forms.ToolBar.Wrappable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L189C16-L189C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs#L189C16-L189C26" }, { "DocsId": "T:System.Windows.Forms.ToolBar.ToolBarButtonCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs" } ], "DocsId": "T:System.Windows.Forms.ToolBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolBarAppearance.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarAppearance.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarAppearance.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" } ], "DocsId": "T:System.Windows.Forms.ToolBarAppearance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarAppearance.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolBarButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L28C5-L28C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L28C5-L28C72" }, { "DocsId": "M:System.Windows.Forms.ToolBarButton.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L30C5-L30C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L30C5-L30C83" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.DropDownMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L36C16-L36C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L36C16-L36C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L44C16-L44C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L44C16-L44C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.ImageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L55C16-L55C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L55C16-L55C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.ImageKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L66C16-L66C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L66C16-L66C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L73C16-L73C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L73C16-L73C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L78C30-L78C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L78C30-L78C40" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.PartialPush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L83C16-L83C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L83C16-L83C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Pushed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L90C16-L90C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L90C16-L90C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Rectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L94C35-L94C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L94C35-L94C45" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L100C16-L100C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L100C16-L100C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L110C16-L110C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L110C16-L110C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L118C16-L118C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L118C16-L118C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L126C16-L126C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L126C16-L126C26" }, { "DocsId": "P:System.Windows.Forms.ToolBarButton.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L134C16-L134C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs#L134C16-L134C26" } ], "DocsId": "T:System.Windows.Forms.ToolBarButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolBarButtonClickEventArgs.#ctor(System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs#L22C5-L22C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs#L22C5-L22C106" }, { "DocsId": "P:System.Windows.Forms.ToolBarButtonClickEventArgs.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs#L26C16-L26C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs#L26C16-L26C26" } ], "DocsId": "T:System.Windows.Forms.ToolBarButtonClickEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolBarButtonClickEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolBarButtonClickEventHandler.Invoke(System.Object,System.Windows.Forms.ToolBarButtonClickEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolBarButtonClickEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ToolBarButtonClickEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ToolBarButtonClickEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ToolBarButtonClickEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonClickEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolBarButtonStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarButtonStyle.PushButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarButtonStyle.ToggleButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarButtonStyle.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarButtonStyle.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ToolBarButtonStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarButtonStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolBarTextAlign.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarTextAlign.Underneath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" }, { "DocsId": "F:System.Windows.Forms.ToolBarTextAlign.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" } ], "DocsId": "T:System.Windows.Forms.ToolBarTextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBarTextAlign.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DomainUpDown.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L29C5-L45C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L29C5-L45C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L200C9-L236C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L206C9-L242C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.OnChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L323C9-L324C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L329C9-L330C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L333C9-L359C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L339C9-L365C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.OnSelectedItemChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L367C9-L368C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L373C9-L374C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L443C9-L450C18" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L449C9-L456C18" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.UpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L459C9-L494C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L465C9-L500C6" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.UpdateEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L501C9-L504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L507C9-L510C6" }, { "DocsId": "E:System.Windows.Forms.DomainUpDown.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L73C16-L73C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L79C16-L79C44" }, { "DocsId": "E:System.Windows.Forms.DomainUpDown.SelectedItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L190C16-L190C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L196C16-L196C47" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.Items", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L58C48-L58C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L58C48-L58C101" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L65C16-L65C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L65C16-L65C28" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.SelectedIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L88C13-L94C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L94C13-L100C37" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.SelectedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L122C13-L123C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L128C13-L129C56" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.Sorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L157C13-L157C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L163C13-L163C28" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.Wrap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L180C24-L180C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs#L186C24-L186C28" }, { "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs" }, { "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs" } ], "DocsId": "T:System.Windows.Forms.DomainUpDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NumericUpDown.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L36C5-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L36C5-L74C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L346C9-L347C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L352C9-L353C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.DownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L375C9-L404C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L381C9-L410C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L411C9-L414C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L417C9-L420C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L421C9-L427C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L427C9-L433C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L434C9-L440C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L440C9-L446C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L448C9-L483C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L454C9-L489C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.OnValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L491C9-L492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L497C9-L498C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L496C9-L501C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L502C9-L507C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.ParseEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L532C13-L553C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L538C13-L559C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L655C9-L656C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L661C9-L662C65" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.UpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L664C9-L693C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L670C9-L699C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.UpdateEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L719C9-L746C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L725C9-L752C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDown.ValidateEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L755C9-L757C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L761C9-L763C6" }, { "DocsId": "E:System.Windows.Forms.NumericUpDown.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L230C16-L230C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L236C16-L236C44" }, { "DocsId": "E:System.Windows.Forms.NumericUpDown.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L265C16-L265C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L271C16-L271C41" }, { "DocsId": "E:System.Windows.Forms.NumericUpDown.ValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L337C16-L337C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L343C16-L343C40" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Accelerations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L85C13-L87C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L85C13-L87C35" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.DecimalPlaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L101C13-L101C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L101C13-L101C35" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Hexadecimal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L126C13-L126C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L126C13-L126C33" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Increment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L147C13-L152C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L147C13-L152C31" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L173C13-L173C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L173C13-L173C29" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L200C13-L200C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L200C13-L200C29" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L222C16-L222C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L222C16-L222C28" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L257C16-L257C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L263C16-L263C25" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.ThousandsSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L281C13-L281C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L287C13-L287C40" }, { "DocsId": "P:System.Windows.Forms.NumericUpDown.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L302C13-L307C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs#L308C13-L313C34" } ], "DocsId": "T:System.Windows.Forms.NumericUpDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDown.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NumericUpDownAcceleration.#ctor(System.Int32,System.Decimal)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L16C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L16C5-L23C6" }, { "DocsId": "P:System.Windows.Forms.NumericUpDownAcceleration.Seconds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L33C13-L33C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L33C13-L33C29" }, { "DocsId": "P:System.Windows.Forms.NumericUpDownAcceleration.Increment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L50C13-L50C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs#L50C13-L50C31" } ], "DocsId": "T:System.Windows.Forms.NumericUpDownAcceleration", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAcceleration.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.Add(System.Windows.Forms.NumericUpDownAcceleration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L24C9-L40C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L24C9-L40C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L47C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L47C9-L48C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.Contains(System.Windows.Forms.NumericUpDownAcceleration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L55C9-L55C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L55C9-L55C46" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.CopyTo(System.Windows.Forms.NumericUpDownAcceleration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L63C9-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L63C9-L64C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.Remove(System.Windows.Forms.NumericUpDownAcceleration)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L88C9-L88C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L88C9-L88C44" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L96C9-L96C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L96C9-L96C39" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L101C9-L101C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L101C9-L101C54" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L109C5-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L109C5-L112C6" }, { "DocsId": "M:System.Windows.Forms.NumericUpDownAccelerationCollection.AddRange(System.Windows.Forms.NumericUpDownAcceleration[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L119C9-L133C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L119C9-L133C6" }, { "DocsId": "P:System.Windows.Forms.NumericUpDownAccelerationCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L71C15-L71C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L71C15-L71C35" }, { "DocsId": "P:System.Windows.Forms.NumericUpDownAccelerationCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L80C15-L80C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L80C15-L80C28" }, { "DocsId": "P:System.Windows.Forms.NumericUpDownAccelerationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L141C15-L141C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs#L141C15-L141C36" } ], "DocsId": "T:System.Windows.Forms.NumericUpDownAccelerationCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/NumericUpDownAccelerationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UpDownBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L30C5-L70C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L40C5-L85C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L212C12-L212C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L227C12-L227C48" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.DownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L478C9-L481C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L525C9-L536C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L488C5-L488C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L543C5-L543C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L495C9-L498C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L550C9-L553C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L505C9-L507C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L560C9-L564C6" + }, + { + "DocsId": "M:System.Windows.Forms.UpDownBase.OnVisualStylesModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L569C9-L584C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L514C9-L585C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L591C9-L670C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnTextBoxKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L592C9-L615C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L677C9-L700C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L621C12-L621C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L706C12-L706C25" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnTextBoxLostFocus(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L628C9-L632C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L713C9-L717C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnTextBoxResize(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L639C9-L641C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L724C9-L730C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnTextBoxTextChanged(System.Object,System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L649C9-L661C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L738C9-L750C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L679C9-L685C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L768C9-L774C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L692C9-L713C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L781C9-L802C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L720C9-L784C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L809C9-L874C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L792C9-L794C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L882C9-L884C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L802C9-L808C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L892C9-L902C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.Select(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L892C50-L892C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L1211C12-L1211C45" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.UpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.UpdateEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.ValidateEditText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L935C5-L935C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L1254C5-L1254C6" }, { "DocsId": "M:System.Windows.Forms.UpDownBase.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L940C9-L972C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L1259C9-L1291C6" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L120C16-L120C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L135C16-L135C45" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L152C16-L152C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L167C16-L167C52" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L169C16-L169C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L184C16-L184C58" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L297C16-L297C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L321C16-L321C40" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L305C16-L305C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L329C16-L329C40" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.MouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L313C16-L313C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L337C16-L337C40" }, { "DocsId": "E:System.Windows.Forms.UpDownBase.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L321C16-L321C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L345C16-L345C39" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L77C16-L77C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L92C16-L92C21" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L89C16-L89C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L104C16-L104C37" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L98C16-L98C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L113C16-L113C38" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L110C16-L110C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L125C16-L125C29" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L130C16-L130C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L145C16-L145C37" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L144C16-L144C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L159C16-L159C36" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L161C16-L161C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L176C16-L176C42" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L182C16-L182C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L197C16-L197C28" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.ChangingText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L199C35-L199C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L214C35-L214C39" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L203C16-L203C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L218C16-L218C37" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L218C13-L236C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L233C13-L252C23" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L244C44-L244C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L268C44-L268C85" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.DockPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L249C48-L249C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L273C48-L273C64" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L257C37-L257C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L281C37-L281C56" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L264C16-L264C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L288C16-L288C37" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.InterceptArrowKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L279C38-L279C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L303C38-L303C42" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L283C16-L283C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L307C16-L307C32" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L289C16-L289C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L313C16-L313C32" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.PreferredHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L337C13-L349C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L361C13-L390C36" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L362C16-L362C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L403C16-L403C36" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L373C16-L373C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L414C16-L414C32" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.TextAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L404C16-L404C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L445C16-L445C37" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.UpDownAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L424C16-L424C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L465C16-L465C28" }, { "DocsId": "P:System.Windows.Forms.UpDownBase.UserEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L443C31-L443C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs#L484C31-L484C35" } ], "DocsId": "T:System.Windows.Forms.UpDownBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownBase.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UpDownEventArgs.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.UpDownEventArgs.ButtonID", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs#L16C27-L16C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs#L16C27-L16C31" } ], "DocsId": "T:System.Windows.Forms.UpDownEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UpDownEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownEventHandler.Invoke(System.Object,System.Windows.Forms.UpDownEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownEventHandler.BeginInvoke(System.Object,System.Windows.Forms.UpDownEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UpDownEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.UpDownEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/UpDownEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlDocument.Write(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L415C9-L425C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L415C9-L425C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.ExecCommand(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L432C9-L437C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L432C9-L437C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L442C9-L446C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L442C9-L446C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.GetElementById(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L450C9-L455C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L450C9-L455C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.GetElementFromPoint(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L459C9-L463C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L459C9-L463C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.GetElementsByTagName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L467C9-L472C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L467C9-L472C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.OpenNew(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L476C9-L489C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L476C9-L489C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.CreateElement(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L493C9-L498C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L493C9-L498C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.InvokeScript(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L504C13-L564C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L504C13-L564C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.InvokeScript(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L566C55-L566C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L566C55-L566C85" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.AttachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L570C9-L572C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L570C9-L572C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.DetachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L576C9-L578C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L576C9-L578C6" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.op_Equality(System.Windows.Forms.HtmlDocument,System.Windows.Forms.HtmlDocument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L679C9-L690C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L679C9-L690C87" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.op_Inequality(System.Windows.Forms.HtmlDocument,System.Windows.Forms.HtmlDocument)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L693C80-L693C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L693C80-L693C96" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L695C42-L695C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L695C42-L695C51" }, { "DocsId": "M:System.Windows.Forms.HtmlDocument.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L697C49-L697C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L697C49-L697C75" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L582C16-L582C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L582C16-L582C60" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.ContextMenuShowing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L588C16-L588C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L588C16-L588C73" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.Focusing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L594C16-L594C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L594C16-L594C63" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.LosingFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L600C16-L600C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L600C16-L600C66" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L606C16-L606C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L606C16-L606C64" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L615C16-L615C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L615C16-L615C65" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L621C16-L621C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L621C16-L621C64" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.MouseOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L627C16-L627C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L627C16-L627C64" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L633C16-L633C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L633C16-L633C62" }, { "DocsId": "E:System.Windows.Forms.HtmlDocument.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L639C16-L639C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L639C16-L639C59" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.ActiveElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L79C13-L83C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L79C13-L83C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Body", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L90C13-L94C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L90C13-L94C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L101C13-L105C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L101C13-L105C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Title", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L126C13-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L126C13-L130C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L143C13-L155C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L143C13-L155C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L162C13-L166C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L162C13-L166C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L175C17-L184C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L175C17-L184C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L200C17-L209C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L200C17-L209C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.LinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L225C17-L234C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L225C17-L234C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.ActiveLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L250C17-L259C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L250C17-L259C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.VisitedLinkColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L275C17-L284C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L275C17-L284C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L298C13-L302C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L298C13-L302C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.DomDocument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L305C34-L305C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L305C34-L305C72" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Cookie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L311C13-L315C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L311C13-L315C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L328C13-L332C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L328C13-L332C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Encoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L345C13-L349C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L345C13-L349C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.DefaultEncoding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L362C13-L366C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L362C13-L366C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L373C13-L377C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L373C13-L377C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Links", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L384C13-L388C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L384C13-L388C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Images", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L395C13-L399C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L395C13-L399C10" }, { "DocsId": "P:System.Windows.Forms.HtmlDocument.Forms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L406C13-L410C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs#L406C13-L410C10" } ], "DocsId": "T:System.Windows.Forms.HtmlDocument", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlDocument.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlElement.AppendChild(System.Windows.Forms.HtmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L506C9-L506C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L506C9-L506C93" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.AttachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L511C9-L512C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L511C9-L512C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.DetachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L516C9-L517C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L516C9-L517C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L523C13-L535C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L523C13-L535C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.GetAttribute(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L539C9-L546C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L539C9-L546C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.GetElementsByTagName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L550C9-L555C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L550C9-L555C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.InsertAdjacentElement(System.Windows.Forms.HtmlElementInsertionOrientation,System.Windows.Forms.HtmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L559C9-L566C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L559C9-L566C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.InvokeMember(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L568C55-L568C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L568C55-L568C96" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.InvokeMember(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L574C13-L634C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L574C13-L634C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.RemoveFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L638C9-L640C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L638C9-L640C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.RaiseEvent(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L644C9-L649C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L644C9-L649C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.ScrollIntoView(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L653C9-L656C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L653C9-L656C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.SetAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L662C13-L676C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L662C13-L676C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.op_Equality(System.Windows.Forms.HtmlElement,System.Windows.Forms.HtmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L803C9-L814C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L803C9-L814C83" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.op_Inequality(System.Windows.Forms.HtmlElement,System.Windows.Forms.HtmlElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L817C78-L817C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L817C78-L817C94" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L819C42-L819C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L819C42-L819C51" }, { "DocsId": "M:System.Windows.Forms.HtmlElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L821C49-L821C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L821C49-L821C77" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L683C16-L683C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L683C16-L683C59" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L689C16-L689C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L689C16-L689C65" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.Drag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L695C16-L695C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L695C16-L695C58" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.DragEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L701C16-L701C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L701C16-L701C61" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L707C16-L707C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L707C16-L707C63" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L713C16-L713C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L713C16-L713C62" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.Focusing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L719C16-L719C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L719C16-L719C62" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.GotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L725C16-L725C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L725C16-L725C62" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.LosingFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L731C16-L731C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L731C16-L731C65" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.LostFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L737C16-L737C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L737C16-L737C63" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L743C16-L743C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L743C16-L743C61" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L749C16-L749C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L749C16-L749C62" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L755C16-L755C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L755C16-L755C59" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L761C16-L761C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L761C16-L761C63" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L767C16-L767C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L767C16-L767C63" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L773C16-L773C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L773C16-L773C63" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L779C16-L779C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L779C16-L779C61" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L788C16-L788C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L788C16-L788C64" }, { "DocsId": "E:System.Windows.Forms.HtmlElement.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L797C16-L797C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L797C16-L797C64" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L63C13-L70C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L63C13-L70C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Children", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L77C13-L84C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L77C13-L84C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.CanHaveChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L91C13-L95C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.ClientRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L102C13-L113C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L102C13-L113C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L120C13-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L120C13-L130C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L137C13-L141C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L137C13-L141C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.FirstChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L168C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L168C13-L183C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L190C13-L194C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L190C13-L194C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.InnerHtml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L207C13-L211C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L207C13-L211C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.InnerText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L236C13-L240C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L236C13-L240C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L263C16-L263C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L263C16-L263C36" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.NextSibling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L284C13-L299C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L284C13-L299C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.OffsetRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L306C13-L318C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L306C13-L318C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.OffsetParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L325C13-L329C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L325C13-L329C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.OuterHtml", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L336C13-L340C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L336C13-L340C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.OuterText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L365C13-L369C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L365C13-L369C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L394C13-L398C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L394C13-L398C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.ScrollRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L405C13-L417C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L405C13-L417C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.ScrollLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L424C13-L428C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L424C13-L428C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.ScrollTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L440C13-L444C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L440C13-L444C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L458C13-L464C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L458C13-L464C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.TagName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L479C13-L483C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L479C13-L483C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L490C13-L494C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L490C13-L494C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElement.DomElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L502C33-L502C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs#L502C33-L502C69" } ], "DocsId": "T:System.Windows.Forms.HtmlElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElement.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlElementCollection.GetElementsByName(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L107C9-L133C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L107C9-L133C70" }, { "DocsId": "M:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L156C40-L156C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L156C40-L156C45" }, { "DocsId": "M:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L158C36-L158C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L158C36-L158C40" }, { "DocsId": "M:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L162C9-L167C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L162C9-L167C6" }, { "DocsId": "M:System.Windows.Forms.HtmlElementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L171C9-L174C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L171C9-L174C45" }, { "DocsId": "P:System.Windows.Forms.HtmlElementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L51C13-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L51C13-L66C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElementCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L73C13-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L73C13-L102C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElementCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L144C13-L153C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L144C13-L153C10" }, { "DocsId": "P:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L156C40-L156C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L156C40-L156C45" }, { "DocsId": "P:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L158C36-L158C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs#L158C36-L158C40" } ], "DocsId": "T:System.Windows.Forms.HtmlElementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementCollection.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.HtmlElementErrorEventArgs.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L24C33-L24C37" }, { "DocsId": "P:System.Windows.Forms.HtmlElementErrorEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L30C27-L30C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L30C27-L30C31" }, { "DocsId": "P:System.Windows.Forms.HtmlElementErrorEventArgs.LineNumber", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L35C29-L35C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L35C29-L35C33" }, { "DocsId": "P:System.Windows.Forms.HtmlElementErrorEventArgs.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L40C23-L40C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs#L40C23-L40C51" } ], "DocsId": "T:System.Windows.Forms.HtmlElementErrorEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlElementErrorEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementErrorEventHandler.Invoke(System.Object,System.Windows.Forms.HtmlElementErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementErrorEventHandler.BeginInvoke(System.Object,System.Windows.Forms.HtmlElementErrorEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementErrorEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.HtmlElementErrorEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementErrorEventHandler.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.MouseButtonsPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L27C13-L44C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L27C13-L44C28" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.ClientMousePosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L50C16-L50C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L50C16-L50C85" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.OffsetMousePosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L55C16-L55C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L55C16-L55C85" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.MousePosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L60C16-L60C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L60C16-L60C73" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.BubbleEvent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L65C16-L65C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L65C16-L65C53" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.KeyPressedCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L69C34-L69C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L69C34-L69C65" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.AltKeyPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L75C34-L75C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L75C34-L75C64" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.CtrlKeyPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L81C35-L81C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L81C35-L81C66" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.ShiftKeyPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L87C36-L87C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L87C36-L87C68" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L89C32-L89C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L89C32-L89C65" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.ReturnValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L95C13-L96C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L95C13-L96C45" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.FromElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L107C13-L108C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L107C13-L108C132" }, { "DocsId": "P:System.Windows.Forms.HtmlElementEventArgs.ToElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L118C13-L119C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs#L118C13-L119C132" } ], "DocsId": "T:System.Windows.Forms.HtmlElementEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlElementEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementEventHandler.Invoke(System.Object,System.Windows.Forms.HtmlElementEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementEventHandler.BeginInvoke(System.Object,System.Windows.Forms.HtmlElementEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HtmlElementEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.HtmlElementEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.HtmlElementInsertionOrientation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.HtmlElementInsertionOrientation.BeforeBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.HtmlElementInsertionOrientation.AfterBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.HtmlElementInsertionOrientation.BeforeEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.HtmlElementInsertionOrientation.AfterEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" } ], "DocsId": "T:System.Windows.Forms.HtmlElementInsertionOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlElementInsertionOrientation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlHistory.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L31C9-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L31C9-L34C6" }, { "DocsId": "M:System.Windows.Forms.HtmlHistory.Back(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L47C9-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L47C9-L55C6" }, { "DocsId": "M:System.Windows.Forms.HtmlHistory.Forward(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L59C9-L67C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L59C9-L67C6" }, { "DocsId": "M:System.Windows.Forms.HtmlHistory.Go(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L72C32-L72C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L72C32-L72C50" }, { "DocsId": "M:System.Windows.Forms.HtmlHistory.Go(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L85C9-L88C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L85C9-L88C6" }, { "DocsId": "M:System.Windows.Forms.HtmlHistory.Go(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L95C9-L98C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L95C9-L98C6" }, { "DocsId": "P:System.Windows.Forms.HtmlHistory.Length", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L40C13-L42C10" }, { "DocsId": "P:System.Windows.Forms.HtmlHistory.DomHistory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L100C33-L100C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs#L100C33-L100C67" } ], "DocsId": "T:System.Windows.Forms.HtmlHistory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlHistory.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlWindow.Alert(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L257C9-L260C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L257C9-L260C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.AttachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L263C9-L263C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L263C9-L263C63" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L267C9-L269C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L267C9-L269C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Confirm(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L273C9-L278C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L273C9-L278C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.DetachEventHandler(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L281C9-L281C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L281C9-L281C63" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L285C9-L287C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L285C9-L287C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.MoveTo(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L294C9-L296C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L294C9-L296C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.MoveTo(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L303C9-L305C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L303C9-L305C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Navigate(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L309C9-L312C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L309C9-L312C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Navigate(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L320C9-L323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L320C9-L323C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Open(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L331C9-L338C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L331C9-L338C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Open(System.Uri,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L341C9-L341C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L341C9-L341C66" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.OpenNew(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L349C9-L356C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L349C9-L356C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.OpenNew(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L359C9-L359C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L359C9-L359C47" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Prompt(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L363C9-L369C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L363C9-L369C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.RemoveFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L373C9-L375C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L373C9-L375C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.ResizeTo(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L382C9-L384C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L382C9-L384C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.ResizeTo(System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L391C9-L393C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L391C9-L393C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.ScrollTo(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L400C9-L402C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L400C9-L402C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.ScrollTo(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L409C9-L411C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L409C9-L411C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.op_Equality(System.Windows.Forms.HtmlWindow,System.Windows.Forms.HtmlWindow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L461C9-L472C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L461C9-L472C81" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.op_Inequality(System.Windows.Forms.HtmlWindow,System.Windows.Forms.HtmlWindow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L475C76-L475C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L475C76-L475C92" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L477C42-L477C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L477C42-L477C51" }, { "DocsId": "M:System.Windows.Forms.HtmlWindow.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L479C49-L479C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L479C49-L479C73" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L419C16-L419C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L419C16-L419C58" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.GotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L425C16-L425C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L425C16-L425C61" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L431C16-L431C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L431C16-L431C57" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.LostFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L437C16-L437C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L437C16-L437C62" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.Resize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L443C16-L443C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L443C16-L443C59" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L449C16-L449C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L449C16-L449C59" }, { "DocsId": "E:System.Windows.Forms.HtmlWindow.Unload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L455C16-L455C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L455C16-L455C59" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L73C13-L83C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L73C13-L83C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.DomWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L86C32-L86C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L86C32-L86C67" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Frames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L92C13-L96C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L92C13-L96C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.History", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L103C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L103C13-L107C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.IsClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L114C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L114C13-L118C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L128C13-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L128C13-L132C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Opener", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L145C13-L153C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L145C13-L153C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L160C13-L164C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L160C13-L164C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L171C13-L177C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L171C13-L177C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L187C13-L198C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L187C13-L198C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.StatusBarText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L209C13-L213C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L209C13-L213C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L226C13-L238C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L226C13-L238C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindow.WindowFrameElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L245C13-L252C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs#L245C13-L252C10" } ], "DocsId": "T:System.Windows.Forms.HtmlWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L93C40-L93C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L93C40-L93C45" }, { "DocsId": "M:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L95C36-L95C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L95C36-L95C40" }, { "DocsId": "M:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L99C9-L104C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L99C9-L104C6" }, { "DocsId": "M:System.Windows.Forms.HtmlWindowCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L108C9-L111C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L108C9-L111C44" }, { "DocsId": "P:System.Windows.Forms.HtmlWindowCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L35C13-L47C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L35C13-L47C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindowCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L54C13-L76C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L54C13-L76C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindowCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L86C13-L90C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L86C13-L90C10" }, { "DocsId": "P:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L93C40-L93C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L93C40-L93C45" }, { "DocsId": "P:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L95C36-L95C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs#L95C36-L95C40" } ], "DocsId": "T:System.Windows.Forms.HtmlWindowCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/HtmlWindowCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowser.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L36C5-L60C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L36C5-L60C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.GoBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L630C9-L641C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L630C9-L641C23" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.GoForward", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L652C9-L663C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L652C9-L663C23" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.GoHome", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L671C9-L673C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L671C9-L673C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.GoSearch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L680C9-L682C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L680C9-L682C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L689C9-L690C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L689C9-L690C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L703C9-L709C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L703C9-L709C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L718C9-L724C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L718C9-L724C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L735C9-L741C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L735C9-L741C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L748C9-L754C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L748C9-L754C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L765C9-L771C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L765C9-L771C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L778C9-L784C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L778C9-L784C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L799C9-L805C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L799C9-L805C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Print", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L815C13-L821C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L815C13-L821C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L830C13-L845C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L830C13-L845C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Refresh(System.Windows.Forms.WebBrowserRefreshOption)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L854C9-L872C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L854C9-L872C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.ShowPageSetupDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L904C13-L910C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L904C13-L910C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.ShowPrintDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L920C13-L926C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L920C13-L926C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.ShowPrintPreviewDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L935C13-L941C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L935C13-L941C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.ShowPropertiesDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L951C13-L957C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L951C13-L957C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.ShowSaveAsDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L967C13-L973C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L967C13-L973C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L982C13-L988C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L982C13-L988C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1111C9-L1120C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1111C9-L1120C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.AttachInterfaces(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1132C9-L1139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1132C9-L1139C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.DetachInterfaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1144C51-L1144C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1144C51-L1144C100" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1146C74-L1146C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1146C74-L1146C110" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.CreateSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1153C9-L1164C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1153C9-L1164C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.DetachSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1172C9-L1174C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1172C9-L1174C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.CreateWebBrowserSiteBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1179C73-L1179C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1179C73-L1179C97" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnCanGoBackChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1184C63-L1184C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1184C63-L1184C96" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnCanGoForwardChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1189C66-L1189C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1189C66-L1189C102" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnDocumentCompleted(System.Windows.Forms.WebBrowserDocumentCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1196C9-L1199C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1196C9-L1199C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnDocumentTitleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1204C67-L1204C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1204C67-L1204C104" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnEncryptionLevelChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1209C69-L1209C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1209C69-L1209C108" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnFileDownload(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1214C59-L1214C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1214C59-L1214C88" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnNavigated(System.Windows.Forms.WebBrowserNavigatedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1219C75-L1219C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1219C75-L1219C101" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnNavigating(System.Windows.Forms.WebBrowserNavigatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1224C77-L1224C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1224C77-L1224C104" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnNewWindow(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1229C62-L1229C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1229C62-L1229C88" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnProgressChanged(System.Windows.Forms.WebBrowserProgressChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1234C87-L1234C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1234C87-L1234C119" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.OnStatusTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1241C9-L1242C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1241C9-L1242C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1372C9-L1385C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1372C9-L1385C6" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L505C16-L505C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L505C16-L505C44" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.CanGoBackChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.CanGoForwardChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.DocumentCompleted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.DocumentTitleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.EncryptionLevelChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.FileDownload", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.Navigated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.Navigating", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.NewWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.ProgressChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.WebBrowser.StatusTextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.AllowNavigation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L76C16-L76C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L76C16-L76C65" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.AllowWebBrowserDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L98C13-L102C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L98C13-L102C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L127C13-L131C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L127C13-L131C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L153C16-L153C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L153C16-L153C76" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.CanGoBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L164C30-L164C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L164C30-L164C47" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.CanGoForward", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L190C33-L190C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L190C33-L190C53" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L219C13-L247C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L219C13-L247C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.DocumentStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L260C13-L281C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L260C13-L281C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.DocumentText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L308C13-L317C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L308C13-L317C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.DocumentTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L345C13-L362C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L345C13-L362C34" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.DocumentType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L376C13-L387C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L376C13-L387C28" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.EncryptionLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L401C13-L406C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L401C13-L406C37" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.IsBusy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L419C13-L428C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L419C13-L428C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.IsOffline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L441C13-L445C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L441C13-L445C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L460C16-L460C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L460C16-L460C80" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.ObjectForScripting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L474C16-L474C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L474C16-L474C35" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L494C16-L494C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L494C16-L494C28" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.ReadyState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L519C13-L528C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L519C13-L528C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.StatusText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L543C13-L548C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L543C13-L548C32" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L567C13-L585C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L567C13-L585C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L612C13-L614C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L612C13-L614C110" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.ScrollBarsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L884C13-L884C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L884C13-L884C72" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1099C13-L1105C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1099C13-L1105C74" }, { "DocsId": "P:System.Windows.Forms.WebBrowser.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1125C44-L1125C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs#L1125C44-L1125C57" }, { "DocsId": "T:System.Windows.Forms.WebBrowser.WebBrowserSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserBase.CreateWebBrowserSiteBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L119C9-L119C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L119C9-L119C45" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.AttachInterfaces(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L131C5-L131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L131C5-L131C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.DetachInterfaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L138C5-L138C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L138C5-L138C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.CreateSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L146C5-L146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L146C5-L146C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.DetachSink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L154C5-L154C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L154C5-L154C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L161C9-L162C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L161C9-L162C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L215C9-L215C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L215C9-L215C61" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.PreProcessMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L230C9-L299C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L230C9-L299C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L310C9-L355C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L310C9-L355C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L365C9-L461C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L365C9-L461C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L465C9-L472C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L465C9-L472C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L476C9-L482C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L476C9-L482C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L486C9-L492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L486C9-L492C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L496C9-L504C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L496C9-L504C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L509C5-L509C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L509C5-L509C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L530C9-L532C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L530C9-L532C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnForeColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L540C9-L542C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L540C9-L542C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L550C9-L552C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L550C9-L552C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L559C9-L565C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L559C9-L565C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.IsInputChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1193C9-L1193C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1193C9-L1193C21" }, { "DocsId": "M:System.Windows.Forms.WebBrowserBase.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1209C9-L1231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1209C9-L1231C6" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1381C16-L1381C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1381C16-L1381C116" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1389C16-L1389C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1389C16-L1389C93" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.Leave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1397C16-L1397C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1397C16-L1397C93" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseCaptureChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1405C16-L1405C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1405C16-L1405C107" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1413C16-L1413C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1413C16-L1413C98" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1421C16-L1421C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1421C16-L1421C104" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1429C16-L1429C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1429C16-L1429C104" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1437C16-L1437C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1437C16-L1437C110" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.BindingContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1445C16-L1445C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1445C16-L1445C109" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1453C16-L1453C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1453C16-L1453C101" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1461C16-L1461C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1461C16-L1461C102" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1469C16-L1469C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1469C16-L1469C99" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1477C16-L1477C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1477C16-L1477C104" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1485C16-L1485C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1485C16-L1485C106" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1493C16-L1493C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1493C16-L1493C99" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1501C16-L1501C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1501C16-L1501C93" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.DragDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1509C16-L1509C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1509C16-L1509C96" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.DragEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1517C16-L1517C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1517C16-L1517C97" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.DragOver", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1525C16-L1525C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1525C16-L1525C96" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.DragLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1533C16-L1533C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1533C16-L1533C97" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.GiveFeedback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1541C16-L1541C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1541C16-L1541C100" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.HelpRequested", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1550C16-L1550C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1550C16-L1550C101" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1558C16-L1558C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1558C16-L1558C93" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.QueryContinueDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1566C16-L1566C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1566C16-L1566C105" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.QueryAccessibilityHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1574C16-L1574C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1574C16-L1574C110" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1582C16-L1582C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1582C16-L1582C99" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1590C16-L1590C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1590C16-L1590C102" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1598C16-L1598C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1598C16-L1598C95" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1606C16-L1606C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1606C16-L1606C96" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1614C16-L1614C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1614C16-L1614C93" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.Layout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1622C16-L1622C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1622C16-L1622C94" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1630C16-L1630C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1630C16-L1630C97" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseEnter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1638C16-L1638C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1638C16-L1638C98" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseLeave", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1646C16-L1646C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1646C16-L1646C98" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseHover", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1654C16-L1654C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1654C16-L1654C98" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1662C16-L1662C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1662C16-L1662C97" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1670C16-L1670C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1670C16-L1670C95" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.MouseWheel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1678C16-L1678C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1678C16-L1678C98" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.ChangeUICues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1686C16-L1686C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1686C16-L1686C100" }, { "DocsId": "E:System.Windows.Forms.WebBrowserBase.StyleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1694C16-L1694C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1694C16-L1694C100" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.ActiveXInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L93C39-L93C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L93C39-L93C55" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L177C13-L185C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L177C13-L185C10" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1185C44-L1185C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1185C44-L1185C55" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1238C16-L1238C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1238C16-L1238C30" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1248C16-L1248C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1248C16-L1248C25" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1257C16-L1257C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1257C16-L1257C30" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1269C16-L1269C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1269C16-L1269C28" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1281C16-L1281C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1281C16-L1281C30" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1293C16-L1293C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1293C16-L1293C36" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1305C16-L1305C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1305C16-L1305C42" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1318C16-L1318C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1318C16-L1318C27" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1330C16-L1330C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1330C16-L1330C28" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1342C16-L1342C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1342C16-L1342C30" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1357C16-L1357C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1357C16-L1357C28" }, { "DocsId": "P:System.Windows.Forms.WebBrowserBase.UseWaitCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1366C16-L1366C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs#L1366C16-L1366C34" } ], "DocsId": "T:System.Windows.Forms.WebBrowserBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserBase.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs#L22C23-L22C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs#L22C23-L22C27" } ], "DocsId": "T:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler.Invoke(System.Object,System.Windows.Forms.WebBrowserDocumentCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.WebBrowserDocumentCompletedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserDocumentCompletedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Insecure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Mixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit40", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit56", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Fortezza", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit128", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserEncryptionLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserEncryptionLevel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatedEventArgs.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.WebBrowserNavigatedEventArgs.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs#L22C23-L22C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs#L22C23-L22C27" } ], "DocsId": "T:System.Windows.Forms.WebBrowserNavigatedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatedEventHandler.Invoke(System.Object,System.Windows.Forms.WebBrowserNavigatedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.WebBrowserNavigatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserNavigatedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatingEventArgs.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L16C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L16C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.WebBrowserNavigatingEventArgs.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L25C23-L25C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L25C23-L25C27" }, { "DocsId": "P:System.Windows.Forms.WebBrowserNavigatingEventArgs.TargetFrameName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L30C38-L30C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs#L30C38-L30C42" } ], "DocsId": "T:System.Windows.Forms.WebBrowserNavigatingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatingEventHandler.Invoke(System.Object,System.Windows.Forms.WebBrowserNavigatingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.WebBrowserNavigatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserNavigatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserNavigatingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserNavigatingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserProgressChangedEventArgs.#ctor(System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L14C5-L18C6" }, { "DocsId": "P:System.Windows.Forms.WebBrowserProgressChangedEventArgs.CurrentProgress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L23C35-L23C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L23C35-L23C39" }, { "DocsId": "P:System.Windows.Forms.WebBrowserProgressChangedEventArgs.MaximumProgress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L29C35-L29C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs#L29C35-L29C39" } ], "DocsId": "T:System.Windows.Forms.WebBrowserProgressChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserProgressChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserProgressChangedEventHandler.Invoke(System.Object,System.Windows.Forms.WebBrowserProgressChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserProgressChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.WebBrowserProgressChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.WebBrowserProgressChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserProgressChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserProgressChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.Uninitialized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.Loading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.Loaded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.Interactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserReadyState.Complete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserReadyState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserReadyState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.WebBrowserRefreshOption.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserRefreshOption.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserRefreshOption.IfExpired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserRefreshOption.Continue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" }, { "DocsId": "F:System.Windows.Forms.WebBrowserRefreshOption.Completely", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" } ], "DocsId": "T:System.Windows.Forms.WebBrowserRefreshOption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserRefreshOption.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L47C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L47C9-L48C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L55C9-L59C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L55C9-L59C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#OnControlInfoChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L67C65-L67C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L67C65-L67C77" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#LockInPlaceActive(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L69C72-L69C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L69C72-L69C89" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#GetExtendedControl(Windows.Win32.System.Com.IDispatch**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L73C9-L79C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L73C9-L79C34" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#TransformCoords(Windows.Win32.Foundation.POINTL*,System.Drawing.PointF*,System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L84C9-L129C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L84C9-L129C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#TranslateAccelerator(Windows.Win32.UI.WindowsAndMessaging.MSG*,Windows.Win32.System.Ole.KEYMODIFIERS)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L134C9-L152C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L134C9-L152C6" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#OnFocus(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L154C66-L154C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L154C66-L154C78" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleControlSite#Interface#ShowPropertyFrame", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L156C62-L156C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L156C62-L156C79" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#SaveObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L159C54-L159C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L159C54-L159C71" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#GetMoniker(System.UInt32,System.UInt32,Windows.Win32.System.Com.IMoniker**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L163C9-L169C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L163C9-L169C34" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#GetContainer(Windows.Win32.System.Ole.IOleContainer**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L174C9-L180C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L174C9-L180C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#ShowObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L185C9-L206C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L185C9-L206C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#OnShowWindow(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L209C66-L209C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L209C66-L209C78" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleClientSite#Interface#RequestNewObjectLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L211C66-L211C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L211C66-L211C83" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L216C9-L222C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L216C9-L222C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L225C80-L225C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L225C80-L225C97" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#CanInPlaceActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L227C63-L227C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L227C63-L227C75" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#OnInPlaceActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L231C9-L234C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L231C9-L234C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#OnUIActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L239C9-L241C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L239C9-L241C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#GetWindowContext(Windows.Win32.System.Ole.IOleInPlaceFrame**,Windows.Win32.System.Ole.IOleInPlaceUIWindow**,Windows.Win32.Foundation.RECT*,Windows.Win32.Foundation.RECT*,Windows.Win32.System.Ole.OLEINPLACEFRAMEINFO*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L251C9-L274C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L251C9-L274C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#Scroll(Windows.Win32.Foundation.SIZE)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L277C68-L277C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L277C68-L277C83" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#OnUIDeactivate(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L281C9-L287C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L281C9-L287C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#OnInPlaceDeactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L292C9-L299C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L292C9-L299C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#DiscardUndoState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L302C61-L302C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L302C61-L302C73" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#DeactivateAndUndo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L304C62-L304C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L304C62-L304C98" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleInPlaceSite#Interface#OnPosRectChange(Windows.Win32.Foundation.RECT*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L306C77-L306C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L306C77-L306C109" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#ISimpleFrameSite#Interface#PreMessageFilter(Windows.Win32.Foundation.HWND,System.UInt32,Windows.Win32.Foundation.WPARAM,Windows.Win32.Foundation.LPARAM,Windows.Win32.Foundation.LRESULT*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L315C29-L315C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L315C29-L315C41" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#ISimpleFrameSite#Interface#PostMessageFilter(Windows.Win32.Foundation.HWND,System.UInt32,Windows.Win32.Foundation.WPARAM,Windows.Win32.Foundation.LPARAM,Windows.Win32.Foundation.LRESULT*,System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L323C27-L323C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L323C27-L323C42" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IPropertyNotifySink#Interface#OnChanged(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L330C9-L350C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L330C9-L350C29" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IPropertyNotifySink#Interface#OnRequestEdit(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L353C72-L353C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L353C72-L353C84" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleWindow#Interface#GetWindow(Windows.Win32.Foundation.HWND*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L419C12-L419C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L419C12-L419C62" }, { "DocsId": "M:System.Windows.Forms.WebBrowserSiteBase.Windows#Win32#System#Ole#IOleWindow#Interface#ContextSensitiveHelp(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L422C12-L422C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs#L422C12-L422C78" } ], "DocsId": "T:System.Windows.Forms.WebBrowserSiteBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowserSiteBase.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ControlUpdateMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" }, { "DocsId": "F:System.Windows.Forms.ControlUpdateMode.OnPropertyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" }, { "DocsId": "F:System.Windows.Forms.ControlUpdateMode.Never", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" } ], "DocsId": "T:System.Windows.Forms.ControlUpdateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ControlUpdateMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ConvertEventArgs.#ctor(System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L8C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.ConvertEventArgs.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L14C28-L14C32" }, { "DocsId": "P:System.Windows.Forms.ConvertEventArgs.DesiredType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs#L16C32-L16C36" } ], "DocsId": "T:System.Windows.Forms.ConvertEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ConvertEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ConvertEventHandler.Invoke(System.Object,System.Windows.Forms.ConvertEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ConvertEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ConvertEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ConvertEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ConvertEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ConvertEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CreateParams.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L72C9-L72C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L72C9-L72C124" }, { "DocsId": "M:System.Windows.Forms.CreateParams.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs" }, { "DocsId": "P:System.Windows.Forms.CreateParams.ClassName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L15C32-L15C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L15C32-L15C36" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L20C30-L20C34" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Style", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L26C24-L26C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L26C24-L26C28" }, { "DocsId": "P:System.Windows.Forms.CreateParams.ExStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L32C26-L32C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L32C26-L32C30" }, { "DocsId": "P:System.Windows.Forms.CreateParams.ClassStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L38C29-L38C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L38C29-L38C33" }, { "DocsId": "P:System.Windows.Forms.CreateParams.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L43C20-L43C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L43C20-L43C24" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L48C20-L48C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L48C20-L48C24" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L53C24-L53C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L53C24-L53C28" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L58C25-L58C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L58C25-L58C29" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L63C28-L63C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L63C28-L63C32" }, { "DocsId": "P:System.Windows.Forms.CreateParams.Param", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L68C28-L68C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs#L68C28-L68C32" } ], "DocsId": "T:System.Windows.Forms.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/CreateParams.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindableComponent.OnBindingContextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L59C9-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L59C9-L68C6" }, { "DocsId": "M:System.Windows.Forms.BindableComponent.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs" }, { "DocsId": "E:System.Windows.Forms.BindableComponent.BindingContextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L49C16-L49C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L49C16-L49C70" }, { "DocsId": "P:System.Windows.Forms.BindableComponent.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L29C16-L29C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L29C16-L29C38" }, { "DocsId": "P:System.Windows.Forms.BindableComponent.DataBindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L78C12-L78C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs#L78C12-L78C65" } ], "DocsId": "T:System.Windows.Forms.BindableComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindableComponent.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L52C11-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L52C11-L62C6" }, { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L69C11-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L69C11-L79C6" }, { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L87C11-L97C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L87C11-L97C6" }, { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L106C11-L116C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L106C11-L116C6" }, { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L126C11-L136C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L126C11-L136C6" }, { "DocsId": "M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L36C5-L160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L36C5-L160C6" }, { "DocsId": "M:System.Windows.Forms.Binding.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L622C9-L642C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L622C9-L642C6" }, { "DocsId": "M:System.Windows.Forms.Binding.OnParse(System.Windows.Forms.ConvertEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L646C9-L655C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L646C9-L655C6" }, { "DocsId": "M:System.Windows.Forms.Binding.OnFormat(System.Windows.Forms.ConvertEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L659C9-L668C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L659C9-L668C6" }, { "DocsId": "M:System.Windows.Forms.Binding.ReadValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L1023C32-L1023C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L1023C32-L1023C53" }, { "DocsId": "M:System.Windows.Forms.Binding.WriteValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L1028C33-L1028C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L1028C33-L1028C70" }, { "DocsId": "E:System.Windows.Forms.Binding.BindingComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L272C16-L272C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L272C16-L272C36" }, { "DocsId": "E:System.Windows.Forms.Binding.Parse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L278C16-L278C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L278C16-L278C33" }, { "DocsId": "E:System.Windows.Forms.Binding.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L284C16-L284C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L284C16-L284C34" }, { "DocsId": "P:System.Windows.Forms.Binding.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L162C33-L162C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L162C33-L162C37" }, { "DocsId": "P:System.Windows.Forms.Binding.BindingMemberInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L164C50-L164C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L164C50-L164C54" }, { "DocsId": "P:System.Windows.Forms.Binding.BindableComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L170C52-L170C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L170C52-L170C56" }, { "DocsId": "P:System.Windows.Forms.Binding.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L176C32-L176C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L176C32-L176C60" }, { "DocsId": "P:System.Windows.Forms.Binding.IsBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L233C29-L233C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L233C29-L233C33" }, { "DocsId": "P:System.Windows.Forms.Binding.BindingManagerBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L241C16-L241C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L241C16-L241C35" }, { "DocsId": "P:System.Windows.Forms.Binding.PropertyName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L268C34-L268C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L268C34-L268C38" }, { "DocsId": "P:System.Windows.Forms.Binding.FormattingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L295C16-L295C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L295C16-L295C63" }, { "DocsId": "P:System.Windows.Forms.Binding.FormatInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L312C16-L312C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L312C16-L312C27" }, { "DocsId": "P:System.Windows.Forms.Binding.FormatString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L328C16-L328C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L328C16-L328C29" }, { "DocsId": "P:System.Windows.Forms.Binding.NullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L346C16-L346C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L346C16-L346C26" }, { "DocsId": "P:System.Windows.Forms.Binding.DataSourceNullValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L366C16-L366C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L366C16-L366C28" }, { "DocsId": "P:System.Windows.Forms.Binding.ControlUpdateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L408C16-L408C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L408C16-L408C34" }, { "DocsId": "P:System.Windows.Forms.Binding.DataSourceUpdateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L425C56-L425C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs#L425C56-L425C60" } ], "DocsId": "T:System.Windows.Forms.Binding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/Binding.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BindingCompleteContext.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" }, { "DocsId": "F:System.Windows.Forms.BindingCompleteContext.ControlUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" }, { "DocsId": "F:System.Windows.Forms.BindingCompleteContext.DataSourceUpdate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" } ], "DocsId": "T:System.Windows.Forms.BindingCompleteContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteContext.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String,System.Exception,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L23C11-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L23C11-L30C6" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L41C11-L43C6" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L53C11-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L53C11-L55C6" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L64C11-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L64C11-L66C6" }, { "DocsId": "P:System.Windows.Forms.BindingCompleteEventArgs.Binding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L68C31-L68C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L68C31-L68C35" }, { "DocsId": "P:System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L70C56-L70C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L70C56-L70C60" }, { "DocsId": "P:System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L72C60-L72C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L72C60-L72C64" }, { "DocsId": "P:System.Windows.Forms.BindingCompleteEventArgs.ErrorText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L74C31-L74C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L74C31-L74C35" }, { "DocsId": "P:System.Windows.Forms.BindingCompleteEventArgs.Exception", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L76C35-L76C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs#L76C35-L76C39" } ], "DocsId": "T:System.Windows.Forms.BindingCompleteEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingCompleteEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventHandler.Invoke(System.Object,System.Windows.Forms.BindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventHandler.BeginInvoke(System.Object,System.Windows.Forms.BindingCompleteEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingCompleteEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.BindingCompleteEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BindingCompleteState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" }, { "DocsId": "F:System.Windows.Forms.BindingCompleteState.Success", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" }, { "DocsId": "F:System.Windows.Forms.BindingCompleteState.DataError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" }, { "DocsId": "F:System.Windows.Forms.BindingCompleteState.Exception", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" } ], "DocsId": "T:System.Windows.Forms.BindingCompleteState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingCompleteState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L22C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L34C13-L35C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L34C13-L35C40" }, { "DocsId": "M:System.Windows.Forms.BindingContext.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L45C9-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L45C9-L47C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L54C9-L55C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L54C9-L55C61" }, { "DocsId": "M:System.Windows.Forms.BindingContext.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L66C40-L66C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L66C40-L66C45" }, { "DocsId": "M:System.Windows.Forms.BindingContext.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L71C36-L71C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L71C36-L71C40" }, { "DocsId": "M:System.Windows.Forms.BindingContext.Add(System.Object,System.Windows.Forms.BindingManagerBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L100C9-L102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L100C9-L102C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.AddCore(System.Object,System.Windows.Forms.BindingManagerBase)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L109C9-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L109C9-L113C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L144C9-L146C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L144C9-L146C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.ClearCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L154C43-L154C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L154C43-L154C64" }, { "DocsId": "M:System.Windows.Forms.BindingContext.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L160C48-L160C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L160C48-L160C82" }, { "DocsId": "M:System.Windows.Forms.BindingContext.Contains(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L168C9-L168C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L168C9-L168C74" }, { "DocsId": "M:System.Windows.Forms.BindingContext.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L182C5-L182C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L182C5-L182C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L195C9-L197C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L195C9-L197C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.RemoveCore(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L204C9-L205C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L204C9-L205C6" }, { "DocsId": "M:System.Windows.Forms.BindingContext.UpdateBinding(System.Windows.Forms.BindingContext,System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L347C9-L364C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L347C9-L364C6" }, { "DocsId": "E:System.Windows.Forms.BindingContext.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L128C13-L128C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L128C13-L128C49" }, { "DocsId": "P:System.Windows.Forms.BindingContext.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L34C13-L35C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L34C13-L35C40" }, { "DocsId": "P:System.Windows.Forms.BindingContext.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L61C31-L61C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L61C31-L61C36" }, { "DocsId": "P:System.Windows.Forms.BindingContext.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L66C40-L66C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L66C40-L66C45" }, { "DocsId": "P:System.Windows.Forms.BindingContext.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L71C36-L71C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L71C36-L71C40" }, { "DocsId": "P:System.Windows.Forms.BindingContext.Item(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L77C58-L77C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L77C58-L77C88" }, { "DocsId": "P:System.Windows.Forms.BindingContext.Item(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L85C16-L85C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs#L85C16-L85C57" } ], "DocsId": "T:System.Windows.Forms.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingContext.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingManagerBase.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L47C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L47C9-L48C6" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.OnCurrentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.OnCurrentItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.OnDataError(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L56C9-L57C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L56C9-L57C6" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L63C5-L63C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L63C5-L63C36" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.GetItemProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L74C72-L74C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L74C72-L74C110" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Collections.ArrayList,System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L78C9-L91C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L78C9-L91C75" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Type,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L100C9-L185C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L100C9-L185C21" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.CancelCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.EndCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.AddNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.UpdateIsBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.GetListName(System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.SuspendBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.ResumeBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.PullData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L235C34-L235C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L235C34-L235C49" }, { "DocsId": "M:System.Windows.Forms.BindingManagerBase.PushData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L263C9-L275C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L263C9-L275C6" }, { "DocsId": "E:System.Windows.Forms.BindingManagerBase.BindingComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L190C16-L190C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L190C16-L190C50" }, { "DocsId": "E:System.Windows.Forms.BindingManagerBase.CurrentChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L196C16-L196C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L196C16-L196C48" }, { "DocsId": "E:System.Windows.Forms.BindingManagerBase.CurrentItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L202C16-L202C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L202C16-L202C53" }, { "DocsId": "E:System.Windows.Forms.BindingManagerBase.DataError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L208C16-L208C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L208C16-L208C44" }, { "DocsId": "E:System.Windows.Forms.BindingManagerBase.PositionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L223C16-L223C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L223C16-L223C49" }, { "DocsId": "F:System.Windows.Forms.BindingManagerBase.onCurrentChangedHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "F:System.Windows.Forms.BindingManagerBase.onPositionChangedHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "P:System.Windows.Forms.BindingManagerBase.Bindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L32C13-L41C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L32C13-L41C30" }, { "DocsId": "P:System.Windows.Forms.BindingManagerBase.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "P:System.Windows.Forms.BindingManagerBase.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "DocsId": "P:System.Windows.Forms.BindingManagerBase.IsBindingSuspended", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L281C39-L281C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs#L281C39-L281C49" }, { "DocsId": "P:System.Windows.Forms.BindingManagerBase.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" } ], "DocsId": "T:System.Windows.Forms.BindingManagerBase", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerBase.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingManagerDataErrorEventArgs.#ctor(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.BindingManagerDataErrorEventArgs.Exception", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs#L13C34-L13C38" } ], "DocsId": "T:System.Windows.Forms.BindingManagerDataErrorEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingManagerDataErrorEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerDataErrorEventHandler.Invoke(System.Object,System.Windows.Forms.BindingManagerDataErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerDataErrorEventHandler.BeginInvoke(System.Object,System.Windows.Forms.BindingManagerDataErrorEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.BindingManagerDataErrorEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.BindingManagerDataErrorEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingManagerDataErrorEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L13C9-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L13C9-L26C6" }, { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L39C9-L44C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L39C9-L44C36" }, { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.Equals(System.Windows.Forms.BindingMemberInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L48C12-L48C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L48C12-L48C97" }, { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.op_Equality(System.Windows.Forms.BindingMemberInfo,System.Windows.Forms.BindingMemberInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L50C81-L50C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L50C81-L50C92" }, { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.op_Inequality(System.Windows.Forms.BindingMemberInfo,System.Windows.Forms.BindingMemberInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L52C81-L52C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L52C81-L52C93" }, { "DocsId": "M:System.Windows.Forms.BindingMemberInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L54C42-L54C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L54C42-L54C60" }, { "DocsId": "P:System.Windows.Forms.BindingMemberInfo.BindingPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L28C34-L28C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L28C34-L28C59" }, { "DocsId": "P:System.Windows.Forms.BindingMemberInfo.BindingField", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L30C35-L30C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L30C35-L30C61" }, { "DocsId": "P:System.Windows.Forms.BindingMemberInfo.BindingMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L33C12-L35C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs#L33C12-L35C27" } ], "DocsId": "T:System.Windows.Forms.BindingMemberInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingMemberInfo.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingNavigator.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L42C11-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L42C11-L44C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.#ctor(System.Windows.Forms.BindingSource)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L50C11-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L50C11-L53C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L61C11-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L61C11-L66C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L27C5-L77C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L27C5-L77C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L84C9-L85C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L84C9-L85C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L92C9-L94C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L92C9-L94C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L101C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L101C9-L107C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.AddStandardItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L132C9-L231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L132C9-L231C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.RefreshItemsCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L499C9-L569C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L499C9-L569C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.OnRefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L578C9-L582C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L578C9-L582C6" }, { "DocsId": "M:System.Windows.Forms.BindingNavigator.Validate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L591C9-L591C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L591C9-L591C45" }, { "DocsId": "E:System.Windows.Forms.BindingNavigator.RefreshItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L485C16-L485C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L485C16-L485C40" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.BindingSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L244C13-L244C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L244C13-L244C35" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.MoveFirstItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L263C13-L268C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L263C13-L268C35" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.MovePreviousItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L287C13-L292C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L287C13-L292C38" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.MoveNextItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L311C13-L316C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L311C13-L316C34" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.MoveLastItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L335C13-L340C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L335C13-L340C34" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.AddNewItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L359C13-L364C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L359C13-L364C32" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.DeleteItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L389C13-L394C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L389C13-L394C32" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.PositionItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L419C13-L424C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L419C13-L424C34" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.CountItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L443C13-L448C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L443C13-L448C31" }, { "DocsId": "P:System.Windows.Forms.BindingNavigator.CountItemFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L465C13-L465C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs#L465C13-L465C37" } ], "DocsId": "T:System.Windows.Forms.BindingNavigator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingNavigator.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingsCollection.Add(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L37C9-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L37C9-L41C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.AddCore(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L48C9-L50C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L48C9-L50C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L74C9-L78C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L74C9-L78C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.ClearCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L83C43-L83C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L83C43-L83C56" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L90C9-L91C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L90C9-L91C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L98C9-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L98C9-L99C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.Remove(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L103C9-L107C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L103C9-L107C6" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L109C52-L109C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L109C52-L109C71" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.RemoveCore(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L114C63-L114C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L114C63-L114C88" }, { "DocsId": "M:System.Windows.Forms.BindingsCollection.ShouldSerializeMyAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L116C55-L116C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L116C55-L116C64" }, { "DocsId": "E:System.Windows.Forms.BindingsCollection.CollectionChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L58C16-L58C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L58C16-L58C46" }, { "DocsId": "E:System.Windows.Forms.BindingsCollection.CollectionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L68C16-L68C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L68C16-L68C45" }, { "DocsId": "P:System.Windows.Forms.BindingsCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L23C34-L23C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L23C34-L23C45" }, { "DocsId": "P:System.Windows.Forms.BindingsCollection.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L28C42-L28C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L28C42-L28C66" }, { "DocsId": "P:System.Windows.Forms.BindingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L33C39-L33C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs#L33C39-L33C52" } ], "DocsId": "T:System.Windows.Forms.BindingsCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.BindingSource.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L66C11-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L66C11-L68C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.#ctor(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L41C5-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L41C5-L95C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L98C11-L103C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L98C11-L103C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.GetRelatedCurrencyManager(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L145C9-L165C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L145C9-L165C65" }, { "DocsId": "M:System.Windows.Forms.BindingSource.CancelEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L483C33-L483C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L483C33-L483C69" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L593C9-L610C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L593C9-L610C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.EndEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L614C9-L628C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L614C9-L628C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Find(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L650C9-L653C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L650C9-L653C51" }, { "DocsId": "M:System.Windows.Forms.BindingSource.MoveFirst", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L769C32-L769C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L769C32-L769C44" }, { "DocsId": "M:System.Windows.Forms.BindingSource.MoveLast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L771C31-L771C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L771C31-L771C51" }, { "DocsId": "M:System.Windows.Forms.BindingSource.MoveNext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L773C31-L773C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L773C31-L773C41" }, { "DocsId": "M:System.Windows.Forms.BindingSource.MovePrevious", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L775C35-L775C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L775C35-L775C45" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnAddingNew(System.ComponentModel.AddingNewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L793C9-L795C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L793C9-L795C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L799C9-L801C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L799C9-L801C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnCurrentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L807C9-L814C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L807C9-L814C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnCurrentItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L818C9-L820C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L818C9-L820C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnDataError(System.Windows.Forms.BindingManagerDataErrorEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L824C9-L826C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L824C9-L826C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnDataMemberChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L830C9-L832C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L830C9-L832C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnDataSourceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L836C9-L838C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L836C9-L838C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnListChanged(System.ComponentModel.ListChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L843C9-L850C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L843C9-L850C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.OnPositionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L854C9-L856C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L854C9-L856C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.RemoveCurrent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1015C9-L1026C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1015C9-L1026C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ResetAllowNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1031C9-L1033C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1031C9-L1033C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ResetBindings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1037C9-L1043C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1037C9-L1043C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ResetCurrentItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1047C9-L1048C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1047C9-L1048C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ResetItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1052C9-L1053C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1052C9-L1053C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ResumeBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1055C36-L1055C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1055C36-L1055C68" }, { "DocsId": "M:System.Windows.Forms.BindingSource.SuspendBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1056C37-L1056C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1056C37-L1056C70" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitialize#BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1351C44-L1351C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1351C44-L1351C102" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitialize#EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1374C9-L1382C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1374C9-L1382C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#get_IsInitialized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1403C58-L1403C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1403C58-L1403C107" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#add_Initialized(System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1411C16-L1411C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1411C16-L1411C60" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#remove_Initialized(System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1412C19-L1412C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1412C19-L1412C66" }, { "DocsId": "M:System.Windows.Forms.BindingSource.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1421C51-L1421C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1421C51-L1421C71" }, { "DocsId": "M:System.Windows.Forms.BindingSource.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1423C57-L1423C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1423C57-L1423C80" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1465C9-L1484C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1465C9-L1484C25" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1489C9-L1492C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1489C9-L1492C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1494C52-L1494C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1494C52-L1494C72" }, { "DocsId": "M:System.Windows.Forms.BindingSource.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1496C50-L1496C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1496C50-L1496C69" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1500C9-L1502C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1500C9-L1502C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1506C9-L1512C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1506C9-L1512C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1517C9-L1520C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1517C9-L1520C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.GetListName(System.ComponentModel.PropertyDescriptor[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1544C9-L1544C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1544C9-L1544C59" }, { "DocsId": "M:System.Windows.Forms.BindingSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1548C9-L1556C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1548C9-L1556C81" }, { "DocsId": "M:System.Windows.Forms.BindingSource.AddNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1563C9-L1631C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1563C9-L1631C27" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1713C9-L1719C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1713C9-L1719C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1724C9-L1730C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1724C9-L1730C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.Find(System.ComponentModel.PropertyDescriptor,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1734C9-L1739C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1734C9-L1739C53" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1744C9-L1750C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1744C9-L1750C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.RemoveSort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1754C9-L1760C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1754C9-L1760C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.ListSortDescriptionCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1765C9-L1771C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1765C9-L1771C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.RemoveFilter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1799C9-L1805C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1799C9-L1805C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ICancelAddNew#CancelNew(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1821C9-L1833C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1821C9-L1833C6" }, { "DocsId": "M:System.Windows.Forms.BindingSource.System#ComponentModel#ICancelAddNew#EndNew(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1837C9-L1848C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1837C9-L1848C6" }, { "DocsId": "E:System.Windows.Forms.BindingSource.AddingNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L395C16-L395C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L395C16-L395C58" }, { "DocsId": "E:System.Windows.Forms.BindingSource.BindingComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L403C16-L403C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L403C16-L403C64" }, { "DocsId": "E:System.Windows.Forms.BindingSource.DataError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L411C16-L411C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L411C16-L411C58" }, { "DocsId": "E:System.Windows.Forms.BindingSource.DataSourceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L419C16-L419C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L419C16-L419C66" }, { "DocsId": "E:System.Windows.Forms.BindingSource.DataMemberChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L427C16-L427C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L427C16-L427C66" }, { "DocsId": "E:System.Windows.Forms.BindingSource.CurrentChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L435C16-L435C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L435C16-L435C63" }, { "DocsId": "E:System.Windows.Forms.BindingSource.CurrentItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L443C16-L443C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L443C16-L443C67" }, { "DocsId": "E:System.Windows.Forms.BindingSource.ListChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L451C16-L451C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L451C16-L451C60" }, { "DocsId": "E:System.Windows.Forms.BindingSource.PositionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L459C16-L459C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L459C16-L459C64" }, { "DocsId": "E:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#Initialized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1411C16-L1411C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1411C16-L1411C60" }, { "DocsId": "P:System.Windows.Forms.BindingSource.CurrencyManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L138C16-L138C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L138C16-L138C92" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L189C31-L189C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L189C31-L189C91" }, { "DocsId": "P:System.Windows.Forms.BindingSource.DataMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L199C16-L199C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L199C16-L199C27" }, { "DocsId": "P:System.Windows.Forms.BindingSource.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L220C16-L220C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L220C16-L220C27" }, { "DocsId": "P:System.Windows.Forms.BindingSource.IsBindingSuspended", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L345C39-L345C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L345C39-L345C74" }, { "DocsId": "P:System.Windows.Forms.BindingSource.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L352C13-L353C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L352C13-L353C31" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L361C16-L361C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L361C16-L361C41" }, { "DocsId": "P:System.Windows.Forms.BindingSource.RaiseListChangedEvents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L376C42-L376C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L376C42-L376C46" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Sort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L383C16-L383C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L383C16-L383C21" }, { "DocsId": "P:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#IsInitialized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1403C58-L1403C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1403C58-L1403C107" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1432C17-L1450C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1432C17-L1450C10" }, { "DocsId": "P:System.Windows.Forms.BindingSource.IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1454C43-L1454C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1454C43-L1454C62" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1457C39-L1457C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1457C39-L1457C52" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1525C16-L1525C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1525C16-L1525C27" }, { "DocsId": "P:System.Windows.Forms.BindingSource.IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1538C40-L1538C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1538C40-L1538C56" }, { "DocsId": "P:System.Windows.Forms.BindingSource.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1541C39-L1541C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1541C39-L1541C54" }, { "DocsId": "P:System.Windows.Forms.BindingSource.AllowEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1637C16-L1637C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1637C16-L1637C117" }, { "DocsId": "P:System.Windows.Forms.BindingSource.AllowNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1644C16-L1644C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1644C16-L1644C38" }, { "DocsId": "P:System.Windows.Forms.BindingSource.AllowRemove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1673C16-L1673C140" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1673C16-L1673C140" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SupportsChangeNotification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1677C55-L1677C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1677C55-L1677C59" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SupportsSearching", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1682C16-L1682C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1682C16-L1682C107" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SupportsSorting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1688C16-L1688C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1688C16-L1688C105" }, { "DocsId": "P:System.Windows.Forms.BindingSource.IsSorted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1694C16-L1694C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1694C16-L1694C98" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SortProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1701C16-L1701C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1701C16-L1701C108" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SortDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1708C16-L1708C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1708C16-L1708C132" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SortDescriptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1777C16-L1779C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1777C16-L1779C50" }, { "DocsId": "P:System.Windows.Forms.BindingSource.Filter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1787C16-L1787C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1787C16-L1787C23" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SupportsAdvancedSorting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1810C16-L1810C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1810C16-L1810C77" }, { "DocsId": "P:System.Windows.Forms.BindingSource.SupportsFiltering", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1816C16-L1816C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs#L1816C16-L1816C71" } ], "DocsId": "T:System.Windows.Forms.BindingSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/BindingSource.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.#ctor(System.Windows.Forms.IBindableComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L19C5-L22C6" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L51C45-L51C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L51C45-L51C62" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L61C9-L69C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L61C9-L69C30" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L76C13-L84C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L76C13-L84C34" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L92C13-L100C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L92C13-L100C34" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L109C13-L117C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L109C13-L117C34" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L127C13-L135C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L127C13-L135C34" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L147C9-L159C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L147C9-L159C24" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.AddCore(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L171C9-L187C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L171C9-L187C6" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L209C32-L209C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L209C32-L209C44" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.ClearCore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L213C9-L221C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L213C9-L221C6" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.Remove(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L231C48-L231C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L231C48-L231C68" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L238C44-L238C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L238C44-L238C64" }, { "DocsId": "M:System.Windows.Forms.ControlBindingsCollection.RemoveCore(System.Windows.Forms.Binding)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L242C9-L251C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L242C9-L251C6" }, { "DocsId": "P:System.Windows.Forms.ControlBindingsCollection.BindableComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L24C52-L24C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L24C52-L24C60" }, { "DocsId": "P:System.Windows.Forms.ControlBindingsCollection.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L26C32-L26C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L26C32-L26C51" }, { "DocsId": "P:System.Windows.Forms.ControlBindingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L32C41-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L32C41-L41C10" }, { "DocsId": "P:System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L223C63-L223C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs#L223C63-L223C67" } ], "DocsId": "T:System.Windows.Forms.ControlBindingsCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ControlBindingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CurrencyManager.AddNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L276C9-L292C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L276C9-L292C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.CancelCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L299C9-L319C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L299C9-L319C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.CheckEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L391C9-L395C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L391C9-L395C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L461C49-L461C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L461C49-L461C70" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.EndCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L468C9-L487C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L468C9-L487C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.GetListName(System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L592C9-L604C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L592C9-L604C29" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.GetItemProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L613C73-L613C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L613C73-L613C96" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.OnCurrentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L834C9-L874C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L834C9-L874C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.OnCurrentItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L880C9-L881C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L880C9-L881C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.OnItemChanged(System.Windows.Forms.ItemChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L887C9-L909C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L887C9-L909C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.OnMetaDataChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L919C9-L920C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L919C9-L920C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.OnPositionChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L926C13-L932C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L926C13-L932C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.Refresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L939C9-L953C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L939C9-L953C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.ResumeBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L965C9-L982C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L965C9-L982C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.SuspendBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L989C9-L995C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L989C9-L995C6" }, { "DocsId": "M:System.Windows.Forms.CurrencyManager.UpdateIsBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L1007C9-L1008C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L1007C9-L1008C6" }, { "DocsId": "E:System.Windows.Forms.CurrencyManager.ItemChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L42C16-L42C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L42C16-L42C39" }, { "DocsId": "E:System.Windows.Forms.CurrencyManager.ListChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L48C16-L48C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L48C16-L48C39" }, { "DocsId": "E:System.Windows.Forms.CurrencyManager.MetaDataChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L825C16-L825C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L825C16-L825C50" }, { "DocsId": "F:System.Windows.Forms.CurrencyManager.listposition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" }, { "DocsId": "F:System.Windows.Forms.CurrencyManager.finalType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" }, { "DocsId": "P:System.Windows.Forms.CurrencyManager.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L127C34-L127C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L127C34-L127C65" }, { "DocsId": "P:System.Windows.Forms.CurrencyManager.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L132C40-L132C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L132C40-L132C54" }, { "DocsId": "P:System.Windows.Forms.CurrencyManager.List", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L212C13-L212C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L212C13-L212C26" }, { "DocsId": "P:System.Windows.Forms.CurrencyManager.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L221C16-L221C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs#L221C16-L221C28" } ], "DocsId": "T:System.Windows.Forms.CurrencyManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/CurrencyManager.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataSourceUpdateMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataSourceUpdateMode.OnValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" }, { "DocsId": "F:System.Windows.Forms.DataSourceUpdateMode.Never", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" } ], "DocsId": "T:System.Windows.Forms.DataSourceUpdateMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/DataSourceUpdateMode.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.IBindableComponent.DataBindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" }, { "DocsId": "P:System.Windows.Forms.IBindableComponent.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" } ], "DocsId": "T:System.Windows.Forms.IBindableComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/IBindableComponent.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ICommandExecutor.Execute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICommandExecutor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICommandExecutor.cs" } ], "DocsId": "T:System.Windows.Forms.ICommandExecutor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICommandExecutor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICommandExecutor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ICurrencyManagerProvider.GetRelatedCurrencyManager(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" }, { "DocsId": "P:System.Windows.Forms.ICurrencyManagerProvider.CurrencyManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" } ], "DocsId": "T:System.Windows.Forms.ICurrencyManagerProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ICurrencyManagerProvider.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBindingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L49C9-L54C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L49C9-L54C60" }, { "DocsId": "M:System.Windows.Forms.ListBindingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L66C9-L74C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L66C9-L74C73" }, { "DocsId": "M:System.Windows.Forms.ListBindingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L86C13-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L86C13-L99C6" }, { "DocsId": "M:System.Windows.Forms.ListBindingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L107C9-L107C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs#L107C9-L107C21" }, { "DocsId": "M:System.Windows.Forms.ListBindingConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs" } ], "DocsId": "T:System.Windows.Forms.ListBindingConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetList(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L18C9-L24C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L18C9-L24C25" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetList(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L41C9-L72C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L41C9-L72C76" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListName(System.Object,System.ComponentModel.PropertyDescriptor[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L77C9-L113C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L77C9-L113C21" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L120C9-L146C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L120C9-L146C20" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object,System.ComponentModel.PropertyDescriptor[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L151C9-L171C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L151C9-L171C74" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object,System.String,System.ComponentModel.PropertyDescriptor[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L176C9-L197C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L176C9-L197C65" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListItemType(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L203C9-L238C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L203C9-L238C25" }, { "DocsId": "M:System.Windows.Forms.ListBindingHelper.GetListItemType(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L276C9-L302C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs#L276C9-L302C53" } ], "DocsId": "T:System.Windows.Forms.ListBindingHelper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/ListBindingHelper.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyManager.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L45C5-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L45C5-L47C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.SuspendBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L73C9-L88C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L73C9-L88C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.ResumeBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L95C9-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L95C9-L110C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.GetListName(System.Collections.ArrayList)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L116C81-L116C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L116C81-L116C93" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.CancelCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L123C9-L126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L123C9-L126C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.EndCurrentEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L133C9-L140C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L133C9-L140C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.UpdateIsBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L144C14-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L144C14-L148C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.OnCurrentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L156C9-L160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L156C9-L160C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.OnCurrentItemChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L168C9-L171C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L168C9-L171C6" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.AddNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L201C9-L201C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L201C9-L201C92" }, { "DocsId": "M:System.Windows.Forms.PropertyManager.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L211C9-L211C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L211C9-L211C94" }, { "DocsId": "P:System.Windows.Forms.PropertyManager.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L19C40-L19C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L19C40-L19C51" }, { "DocsId": "P:System.Windows.Forms.PropertyManager.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L183C16-L183C17" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L183C16-L183C17" }, { "DocsId": "P:System.Windows.Forms.PropertyManager.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L193C34-L193C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs#L193C34-L193C35" } ], "DocsId": "T:System.Windows.Forms.PropertyManager", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/DataBinding/PropertyManager.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColorDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L19C5-L26C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L19C5-L26C36" }, { "DocsId": "M:System.Windows.Forms.ColorDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L150C9-L153C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L150C9-L153C6" }, { "DocsId": "M:System.Windows.Forms.ColorDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L159C9-L194C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L159C9-L194C21" }, { "DocsId": "M:System.Windows.Forms.ColorDialog.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L217C42-L217C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L217C42-L217C79" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.AllowFullOpen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L37C16-L37C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L37C16-L37C69" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.AnyColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L50C16-L50C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L50C16-L50C61" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L61C16-L61C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L61C16-L61C22" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.CustomColors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L76C13-L78C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L76C13-L78C27" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.FullOpen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L101C16-L101C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L101C16-L101C61" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.Instance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L108C40-L108C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L108C40-L108C77" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L113C38-L113C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L113C38-L113C46" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L123C16-L123C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L123C16-L123C61" }, { "DocsId": "P:System.Windows.Forms.ColorDialog.SolidColorOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L135C16-L135C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs#L135C16-L135C63" } ], "DocsId": "T:System.Windows.Forms.ColorDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/ColorDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CommonDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L29C5-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L29C5-L34C6" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L66C9-L87C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L66C9-L87C28" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L113C9-L115C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L113C9-L115C6" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.OwnerWndProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L125C9-L146C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L125C9-L146C119" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.ShowDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L163C41-L163C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L163C41-L163C64" }, { "DocsId": "M:System.Windows.Forms.CommonDialog.ShowDialog(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L170C9-L263C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L170C9-L263C23" }, { "DocsId": "E:System.Windows.Forms.CommonDialog.HelpRequest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L50C16-L50C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L50C16-L50C60" }, { "DocsId": "P:System.Windows.Forms.CommonDialog.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L42C26-L42C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs#L42C26-L42C30" } ], "DocsId": "T:System.Windows.Forms.CommonDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/CommonDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FileDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L494C9-L574C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L494C9-L574C6" }, { "DocsId": "M:System.Windows.Forms.FileDialog.OnFileOk(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L605C9-L607C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L605C9-L607C6" }, { "DocsId": "M:System.Windows.Forms.FileDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L707C9-L719C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L707C9-L719C6" }, { "DocsId": "M:System.Windows.Forms.FileDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L728C9-L739C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L728C9-L739C46" }, { "DocsId": "M:System.Windows.Forms.FileDialog.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L803C42-L803C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L803C42-L803C100" }, { "DocsId": "E:System.Windows.Forms.FileDialog.FileOk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L378C16-L378C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L378C16-L378C53" }, { "DocsId": "F:System.Windows.Forms.FileDialog.EventFileOk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs" }, { "DocsId": "P:System.Windows.Forms.FileDialog.AddExtension", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L52C32-L52C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L52C32-L52C36" }, { "DocsId": "P:System.Windows.Forms.FileDialog.AddToRecent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L63C16-L63C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L63C16-L63C47" }, { "DocsId": "P:System.Windows.Forms.FileDialog.CheckFileExists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L76C16-L76C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L76C16-L76C44" }, { "DocsId": "P:System.Windows.Forms.FileDialog.CheckPathExists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L89C16-L89C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L89C16-L89C44" }, { "DocsId": "P:System.Windows.Forms.FileDialog.ClientGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L109C31-L109C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L109C31-L109C35" }, { "DocsId": "P:System.Windows.Forms.FileDialog.DefaultExt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L120C16-L120C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L120C16-L120C49" }, { "DocsId": "P:System.Windows.Forms.FileDialog.DereferenceLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L150C16-L150C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L150C16-L150C50" }, { "DocsId": "P:System.Windows.Forms.FileDialog.FileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L165C16-L165C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L165C16-L165C85" }, { "DocsId": "P:System.Windows.Forms.FileDialog.FileNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L178C16-L178C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L178C16-L178C74" }, { "DocsId": "P:System.Windows.Forms.FileDialog.Filter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L192C16-L192C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L192C16-L192C39" }, { "DocsId": "P:System.Windows.Forms.FileDialog.FilterIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L269C30-L269C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L269C30-L269C34" }, { "DocsId": "P:System.Windows.Forms.FileDialog.InitialDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L281C16-L281C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L281C16-L281C49" }, { "DocsId": "P:System.Windows.Forms.FileDialog.Instance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L288C40-L288C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L288C40-L288C77" }, { "DocsId": "P:System.Windows.Forms.FileDialog.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L294C9-L298C135" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L294C9-L298C135" }, { "DocsId": "P:System.Windows.Forms.FileDialog.RestoreDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L309C16-L309C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L309C16-L309C42" }, { "DocsId": "P:System.Windows.Forms.FileDialog.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L322C16-L322C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L322C16-L322C39" }, { "DocsId": "P:System.Windows.Forms.FileDialog.ShowHiddenFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L334C16-L334C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L334C16-L334C46" }, { "DocsId": "P:System.Windows.Forms.FileDialog.SupportMultiDottedExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L344C48-L344C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L344C48-L344C52" }, { "DocsId": "P:System.Windows.Forms.FileDialog.Title", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L356C16-L356C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L356C16-L356C38" }, { "DocsId": "P:System.Windows.Forms.FileDialog.ValidateNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L368C16-L368C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs#L368C16-L368C42" }, { "DocsId": "P:System.Windows.Forms.FileDialog.CustomPlaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L249C61-L249C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L249C61-L249C74" }, { "DocsId": "P:System.Windows.Forms.FileDialog.AutoUpgradeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L255C38-L255C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L255C38-L255C42" }, { "DocsId": "P:System.Windows.Forms.FileDialog.OkRequiresInteraction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L271C16-L271C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L271C16-L271C68" }, { "DocsId": "P:System.Windows.Forms.FileDialog.ShowPinnedPlaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L284C16-L284C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.Vista.cs#L284C16-L284C61" } ], "DocsId": "T:System.Windows.Forms.FileDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FileDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FolderBrowserDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L62C52-L44C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L62C52-L44C6" }, { "DocsId": "M:System.Windows.Forms.FolderBrowserDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L259C9-L266C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L259C9-L266C6" }, { "DocsId": "M:System.Windows.Forms.FolderBrowserDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L279C9-L281C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L279C9-L281C44" }, { "DocsId": "E:System.Windows.Forms.FolderBrowserDialog.HelpRequest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L68C16-L68C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L68C16-L68C41" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.AddToRecent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L54C16-L54C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L54C16-L54C47" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L62C38-L62C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L62C38-L62C42" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.Multiselect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L80C16-L80C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L80C16-L80C47" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L98C16-L98C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L98C16-L98C55" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L110C16-L110C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L110C16-L110C46" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L123C16-L123C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L123C16-L123C48" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L136C39-L136C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L136C39-L136C43" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.ClientGuid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L154C31-L154C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L154C31-L154C35" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.SelectedPath", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L169C16-L169C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L169C16-L169C76" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.SelectedPaths", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L179C38-L179C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L179C38-L179C103" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.InitialDirectory", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L190C16-L190C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L190C16-L190C33" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.RootFolder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L205C16-L205C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L205C16-L205C27" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L226C16-L226C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L226C16-L226C32" }, { "DocsId": "P:System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L244C42-L244C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs#L244C42-L244C46" } ], "DocsId": "T:System.Windows.Forms.FolderBrowserDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FolderBrowserDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FontDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L35C5-L35C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L35C5-L35C35" }, { "DocsId": "M:System.Windows.Forms.FontDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L304C9-L355C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L304C9-L355C57" }, { "DocsId": "M:System.Windows.Forms.FontDialog.OnApply(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L361C52-L361C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L361C52-L361C105" }, { "DocsId": "M:System.Windows.Forms.FontDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L368C9-L376C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L368C9-L376C6" }, { "DocsId": "M:System.Windows.Forms.FontDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L382C9-L430C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L382C9-L430C6" }, { "DocsId": "M:System.Windows.Forms.FontDialog.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L452C42-L452C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L452C42-L452C77" }, { "DocsId": "E:System.Windows.Forms.FontDialog.Apply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L289C16-L289C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L289C16-L289C52" }, { "DocsId": "F:System.Windows.Forms.FontDialog.EventApply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs" }, { "DocsId": "P:System.Windows.Forms.FontDialog.AllowSimulations", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L46C16-L46C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L46C16-L46C61" }, { "DocsId": "P:System.Windows.Forms.FontDialog.AllowVectorFonts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L58C16-L58C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L58C16-L58C61" }, { "DocsId": "P:System.Windows.Forms.FontDialog.AllowVerticalFonts", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L72C16-L72C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L72C16-L72C59" }, { "DocsId": "P:System.Windows.Forms.FontDialog.AllowScriptChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L85C16-L85C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L85C16-L85C60" }, { "DocsId": "P:System.Windows.Forms.FontDialog.Color", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L101C13-L101C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L101C13-L101C118" }, { "DocsId": "P:System.Windows.Forms.FontDialog.FixedPitchOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L126C16-L126C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L126C16-L126C61" }, { "DocsId": "P:System.Windows.Forms.FontDialog.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L139C13-L152C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L139C13-L152C27" }, { "DocsId": "P:System.Windows.Forms.FontDialog.FontMustExist", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L166C16-L166C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L166C16-L166C61" }, { "DocsId": "P:System.Windows.Forms.FontDialog.MaxSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L178C16-L178C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L178C16-L178C24" }, { "DocsId": "P:System.Windows.Forms.FontDialog.MinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L203C16-L203C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L203C16-L203C24" }, { "DocsId": "P:System.Windows.Forms.FontDialog.Options", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L223C30-L223C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L223C30-L223C43" }, { "DocsId": "P:System.Windows.Forms.FontDialog.ScriptsOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L234C16-L234C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L234C16-L234C58" }, { "DocsId": "P:System.Windows.Forms.FontDialog.ShowApply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L246C16-L246C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L246C16-L246C52" }, { "DocsId": "P:System.Windows.Forms.FontDialog.ShowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L256C29-L256C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L256C29-L256C33" }, { "DocsId": "P:System.Windows.Forms.FontDialog.ShowEffects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L267C16-L267C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L267C16-L267C54" }, { "DocsId": "P:System.Windows.Forms.FontDialog.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L279C16-L279C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs#L279C16-L279C55" } ], "DocsId": "T:System.Windows.Forms.FontDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/FontDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.OpenFileDialog.OpenFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L97C9-L100C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L97C9-L100C89" }, { "DocsId": "M:System.Windows.Forms.OpenFileDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L108C9-L110C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L108C9-L110C6" }, { "DocsId": "M:System.Windows.Forms.OpenFileDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.CheckFileExists", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L27C16-L27C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L27C16-L27C36" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.Multiselect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L39C16-L39C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L39C16-L39C47" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.ReadOnlyChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L51C16-L51C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L51C16-L51C39" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.SelectReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L63C16-L63C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L63C16-L63C48" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.ShowPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L75C16-L75C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L75C16-L75C62" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.ShowReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L87C16-L87C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L87C16-L87C44" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.SafeFileName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L180C35-L180C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L180C35-L180C77" }, { "DocsId": "P:System.Windows.Forms.OpenFileDialog.SafeFileNames", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L188C13-L200C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs#L188C13-L200C30" } ], "DocsId": "T:System.Windows.Forms.OpenFileDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/OpenFileDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SaveFileDialog.OpenFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L77C9-L79C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L77C9-L79C80" }, { "DocsId": "M:System.Windows.Forms.SaveFileDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L135C9-L138C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L135C9-L138C6" }, { "DocsId": "M:System.Windows.Forms.SaveFileDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs" }, { "DocsId": "P:System.Windows.Forms.SaveFileDialog.CheckWriteAccess", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L30C16-L30C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L30C16-L30C48" }, { "DocsId": "P:System.Windows.Forms.SaveFileDialog.CreatePrompt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L43C16-L43C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L43C16-L43C43" }, { "DocsId": "P:System.Windows.Forms.SaveFileDialog.ExpandedMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L55C16-L55C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L55C16-L55C61" }, { "DocsId": "P:System.Windows.Forms.SaveFileDialog.OverwritePrompt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L68C16-L68C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs#L68C16-L68C46" } ], "DocsId": "T:System.Windows.Forms.SaveFileDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/CommonDialogs/SaveFileDialog.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DialogResult.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.OK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Abort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Retry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Ignore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Yes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.No", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.TryAgain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "DocsId": "F:System.Windows.Forms.DialogResult.Continue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" } ], "DocsId": "T:System.Windows.Forms.DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/DialogResult.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L137C9-L137C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L137C9-L137C104" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L152C9-L153C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L152C9-L153C90" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L169C9-L170C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L169C9-L170C91" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L186C9-L187C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L186C9-L187C90" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L204C9-L205C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L204C9-L205C91" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L221C9-L222C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L221C9-L222C90" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L239C9-L240C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L239C9-L240C91" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L257C9-L259C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L257C9-L259C90" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L277C9-L279C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L277C9-L279C91" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L293C9-L293C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L293C9-L293C92" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L306C9-L306C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L306C9-L306C86" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L318C9-L318C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L318C9-L318C104" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L326C9-L326C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L326C9-L326C119" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L334C9-L334C132" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L334C9-L334C132" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L342C9-L342C137" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L342C9-L342C137" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L357C9-L357C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L357C9-L357C93" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L371C9-L371C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L371C9-L371C87" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L384C9-L384C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L384C9-L384C105" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L396C9-L396C120" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L396C9-L396C120" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L404C9-L404C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L404C9-L404C133" }, { "DocsId": "M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L412C9-L412C138" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs#L412C9-L412C138" } ], "DocsId": "T:System.Windows.Forms.MessageBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBox.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.OK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.OKCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.YesNoCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.YesNo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.RetryCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxButtons.CancelTryContinue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" } ], "DocsId": "T:System.Windows.Forms.MessageBoxButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxButtons.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MessageBoxDefaultButton.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxDefaultButton.Button1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxDefaultButton.Button2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxDefaultButton.Button3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxDefaultButton.Button4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" } ], "DocsId": "T:System.Windows.Forms.MessageBoxDefaultButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxDefaultButton.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Hand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Question", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Exclamation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Asterisk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxIcon.Information", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" } ], "DocsId": "T:System.Windows.Forms.MessageBoxIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxIcon.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MessageBoxOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxOptions.ServiceNotification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxOptions.RightAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" }, { "DocsId": "F:System.Windows.Forms.MessageBoxOptions.RtlReading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" } ], "DocsId": "T:System.Windows.Forms.MessageBoxOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/MessageBoxOptions.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialogAsync(System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L329C16-L329C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L329C16-L329C83" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialogAsync(System.Windows.Forms.IWin32Window,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L362C13-L362C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L362C13-L362C65" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialogAsync(System.IntPtr,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L458C12-L458C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L458C12-L458C74" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L491C12-L491C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L491C12-L491C91" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.ShowDialog(System.IntPtr,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L526C9-L529C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L526C9-L529C76" }, { "DocsId": "M:System.Windows.Forms.TaskDialog.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L715C9-L730C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L715C9-L730C6" }, { "DocsId": "P:System.Windows.Forms.TaskDialog.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L215C13-L220C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs#L215C13-L220C28" } ], "DocsId": "T:System.Windows.Forms.TaskDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L32C5-L60C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L32C5-L60C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.#ctor(System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L71C96-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L71C96-L76C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.op_Equality(System.Windows.Forms.TaskDialogButton,System.Windows.Forms.TaskDialogButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L306C9-L306C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L306C9-L306C31" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.op_Inequality(System.Windows.Forms.TaskDialogButton,System.Windows.Forms.TaskDialogButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L311C9-L311C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L311C9-L311C28" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.PerformClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L344C9-L347C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L344C9-L347C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L355C9-L359C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L355C9-L359C33" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L365C9-L368C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L365C9-L368C35" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButton.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L375C42-L375C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L375C42-L375C82" }, { "DocsId": "E:System.Windows.Forms.TaskDialogButton.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.OK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L89C42-L89C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L89C42-L89C66" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L102C46-L102C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L102C46-L102C74" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Abort", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L107C45-L107C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L107C45-L107C72" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Retry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L112C45-L112C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L112C45-L112C72" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Ignore", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L117C46-L117C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L117C46-L117C74" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Yes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L122C43-L122C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L122C43-L122C68" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.No", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L127C42-L127C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L127C42-L127C66" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L132C45-L132C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L132C45-L132C72" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L143C44-L143C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L143C44-L143C70" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.TryAgain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L148C48-L148C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L148C48-L148C78" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Continue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L153C48-L153C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L153C48-L153C78" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.AllowCloseDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L165C36-L165C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L165C36-L165C40" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L185C16-L185C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L185C16-L185C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.ShowShieldIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L217C16-L217C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L217C16-L217C31" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L249C16-L249C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L249C16-L249C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogButton.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L280C16-L280C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs#L280C16-L280C21" } ], "DocsId": "T:System.Windows.Forms.TaskDialogButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L14C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L14C5-L21C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.Add(System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L39C9-L42C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L39C9-L42C23" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.SetItem(System.Int32,System.Windows.Forms.TaskDialogButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L59C9-L83C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L59C9-L83C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.InsertItem(System.Int32,System.Windows.Forms.TaskDialogButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L99C9-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L99C9-L113C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.RemoveItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L123C9-L129C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L123C9-L129C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogButtonCollection.ClearItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L139C9-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs#L139C9-L148C6" } ], "DocsId": "T:System.Windows.Forms.TaskDialogButtonCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogButtonCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogCommandLinkButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L16C5-L18C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogCommandLinkButton.#ctor(System.String,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L38C11-L41C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L38C11-L41C6" }, { "DocsId": "P:System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L52C16-L52C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs#L52C16-L52C32" } ], "DocsId": "T:System.Windows.Forms.TaskDialogCommandLinkButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogCommandLinkButton.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.TaskDialogControl.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs#L23C26-L23C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs#L23C26-L23C30" }, { "DocsId": "P:System.Windows.Forms.TaskDialogControl.BoundPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs#L44C40-L44C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs#L44C40-L44C44" } ], "DocsId": "T:System.Windows.Forms.TaskDialogControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogExpander.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L35C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L35C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogExpander.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L45C11-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L45C11-L48C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogExpander.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L202C42-L202C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L202C42-L202C82" }, { "DocsId": "E:System.Windows.Forms.TaskDialogExpander.ExpandedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogExpander.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L73C16-L73C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L73C16-L73C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogExpander.ExpandedButtonText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L112C16-L112C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L112C16-L112C35" }, { "DocsId": "P:System.Windows.Forms.TaskDialogExpander.CollapsedButtonText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L135C16-L135C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L135C16-L135C36" }, { "DocsId": "P:System.Windows.Forms.TaskDialogExpander.Expanded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L157C16-L157C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L157C16-L157C25" }, { "DocsId": "P:System.Windows.Forms.TaskDialogExpander.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L185C16-L185C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs#L185C16-L185C33" } ], "DocsId": "T:System.Windows.Forms.TaskDialogExpander", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpander.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TaskDialogExpanderPosition.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogExpanderPosition.AfterText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogExpanderPosition.AfterFootnote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" } ], "DocsId": "T:System.Windows.Forms.TaskDialogExpanderPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogExpanderPosition.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogFootnote.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L19C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L19C5-L21C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogFootnote.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L29C11-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L29C11-L32C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogFootnote.op_Implicit(System.String)~System.Windows.Forms.TaskDialogFootnote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L35C12-L35C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L35C12-L35C29" }, { "DocsId": "M:System.Windows.Forms.TaskDialogFootnote.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L145C42-L145C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L145C42-L145C82" }, { "DocsId": "P:System.Windows.Forms.TaskDialogFootnote.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L60C16-L60C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L60C16-L60C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogFootnote.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L108C16-L108C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs#L108C16-L108C21" } ], "DocsId": "T:System.Windows.Forms.TaskDialogFootnote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogFootnote.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogIcon.#ctor(System.Drawing.Bitmap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L112C11-L114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L112C11-L114C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogIcon.#ctor(System.Drawing.Icon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L130C11-L132C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L130C11-L132C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogIcon.#ctor(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L145C5-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L145C5-L148C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogIcon.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L169C9-L170C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L169C9-L170C6" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.Information", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.Shield", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.ShieldBlueBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.ShieldGrayBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.ShieldWarningYellowBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.ShieldErrorRedBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogIcon.ShieldSuccessGreenBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogIcon.IconHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L180C33-L180C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs#L180C33-L180C85" } ], "DocsId": "T:System.Windows.Forms.TaskDialogIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogIcon.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogLinkClickedEventArgs.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.TaskDialogLinkClickedEventArgs.LinkHref", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs#L29C30-L29C34" } ], "DocsId": "T:System.Windows.Forms.TaskDialogLinkClickedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogLinkClickedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogPage.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L103C5-L113C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L103C5-L113C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogPage.Navigate(System.Windows.Forms.TaskDialogPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L620C9-L628C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L620C9-L628C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogPage.OnCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1043C55-L1043C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1043C55-L1043C79" }, { "DocsId": "M:System.Windows.Forms.TaskDialogPage.OnDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1049C57-L1049C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1049C57-L1049C83" }, { "DocsId": "M:System.Windows.Forms.TaskDialogPage.OnHelpRequest(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1055C59-L1055C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1055C59-L1055C87" }, { "DocsId": "M:System.Windows.Forms.TaskDialogPage.OnLinkClicked(System.Windows.Forms.TaskDialogLinkClickedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1061C80-L1061C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L1061C80-L1061C108" }, { "DocsId": "E:System.Windows.Forms.TaskDialogPage.Created", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" }, { "DocsId": "E:System.Windows.Forms.TaskDialogPage.Destroyed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" }, { "DocsId": "E:System.Windows.Forms.TaskDialogPage.HelpRequest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" }, { "DocsId": "E:System.Windows.Forms.TaskDialogPage.LinkClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Buttons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L127C16-L127C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L127C16-L127C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.DefaultButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L144C46-L144C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L144C46-L144C50" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.RadioButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L158C16-L158C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L158C16-L158C29" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Verification", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L183C16-L183C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L183C16-L183C25" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Expander", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L208C16-L208C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L208C16-L208C25" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Footnote", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L233C16-L233C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L233C16-L233C25" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L258C16-L258C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L258C16-L258C28" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L286C16-L286C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L286C16-L286C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Heading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L313C16-L313C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L313C16-L313C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L349C16-L349C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L349C16-L349C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L388C16-L388C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L388C16-L388C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.AllowCancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L445C16-L445C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L445C16-L445C71" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L470C16-L470C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L470C16-L470C56" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.AllowMinimize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L493C16-L493C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L493C16-L493C62" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.SizeToContent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L510C16-L510C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L510C16-L510C61" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.EnableLinks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L546C31-L546C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L546C31-L546C35" }, { "DocsId": "P:System.Windows.Forms.TaskDialogPage.BoundDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L576C38-L576C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs#L576C38-L576C42" } ], "DocsId": "T:System.Windows.Forms.TaskDialogPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogPage.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogProgressBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L15C5-L24C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L15C5-L24C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogProgressBar.#ctor(System.Windows.Forms.TaskDialogProgressBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L32C11-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L32C11-L36C6" }, { "DocsId": "P:System.Windows.Forms.TaskDialogProgressBar.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L70C16-L70C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L70C16-L70C22" }, { "DocsId": "P:System.Windows.Forms.TaskDialogProgressBar.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L130C16-L130C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L130C16-L130C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogProgressBar.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L176C16-L176C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L176C16-L176C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogProgressBar.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L222C16-L222C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L222C16-L222C22" }, { "DocsId": "P:System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L280C16-L280C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs#L280C16-L280C29" } ], "DocsId": "T:System.Windows.Forms.TaskDialogProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBar.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.Paused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.Marquee", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.MarqueePaused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogProgressBarState.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" } ], "DocsId": "T:System.Windows.Forms.TaskDialogProgressBarState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogProgressBarState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButton.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L13C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L13C5-L29C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButton.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L36C11-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L36C11-L39C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButton.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L264C42-L264C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L264C42-L264C82" }, { "DocsId": "E:System.Windows.Forms.TaskDialogRadioButton.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogRadioButton.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L59C16-L59C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L59C16-L59C24" }, { "DocsId": "P:System.Windows.Forms.TaskDialogRadioButton.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L88C16-L88C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L88C16-L88C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogRadioButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L126C16-L126C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs#L126C16-L126C24" } ], "DocsId": "T:System.Windows.Forms.TaskDialogRadioButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L14C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L14C5-L21C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L35C9-L41C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L35C9-L41C23" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.SetItem(System.Int32,System.Windows.Forms.TaskDialogRadioButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L58C9-L82C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L58C9-L82C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.InsertItem(System.Int32,System.Windows.Forms.TaskDialogRadioButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L98C9-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L98C9-L112C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.RemoveItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L122C9-L128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L122C9-L128C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogRadioButtonCollection.ClearItems", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L138C9-L147C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs#L138C9-L147C6" } ], "DocsId": "T:System.Windows.Forms.TaskDialogRadioButtonCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogRadioButtonCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TaskDialogStartupLocation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogStartupLocation.CenterScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" }, { "DocsId": "F:System.Windows.Forms.TaskDialogStartupLocation.CenterOwner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" } ], "DocsId": "T:System.Windows.Forms.TaskDialogStartupLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogStartupLocation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TaskDialogVerificationCheckBox.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L23C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L23C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogVerificationCheckBox.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L35C11-L39C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L35C11-L39C6" }, { "DocsId": "M:System.Windows.Forms.TaskDialogVerificationCheckBox.op_Implicit(System.String)~System.Windows.Forms.TaskDialogVerificationCheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L42C12-L42C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L42C12-L42C33" }, { "DocsId": "M:System.Windows.Forms.TaskDialogVerificationCheckBox.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L132C42-L132C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L132C42-L132C82" }, { "DocsId": "E:System.Windows.Forms.TaskDialogVerificationCheckBox.CheckedChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs" }, { "DocsId": "P:System.Windows.Forms.TaskDialogVerificationCheckBox.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L60C16-L60C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L60C16-L60C21" }, { "DocsId": "P:System.Windows.Forms.TaskDialogVerificationCheckBox.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L95C16-L95C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs#L95C16-L95C24" } ], "DocsId": "T:System.Windows.Forms.TaskDialogVerificationCheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/TaskDialog/TaskDialogVerificationCheckBox.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ThreadExceptionDialog.#ctor(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L40C5-L338C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L40C5-L338C6" }, { "DocsId": "E:System.Windows.Forms.ThreadExceptionDialog.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L369C16-L369C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L369C16-L369C45" }, { "DocsId": "P:System.Windows.Forms.ThreadExceptionDialog.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L361C16-L361C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs#L361C16-L361C29" } ], "DocsId": "T:System.Windows.Forms.ThreadExceptionDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Dialogs/ThreadExceptionDialog.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ErrorBlinkStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorBlinkStyle.BlinkIfDifferentError", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorBlinkStyle.NeverBlink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" } ], "DocsId": "T:System.Windows.Forms.ErrorBlinkStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorBlinkStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.ErrorIconAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.ErrorIconAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorIconAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ErrorProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L25C5-L69C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L25C5-L69C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.#ctor(System.Windows.Forms.ContainerControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L72C11-L79C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L72C11-L79C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L82C11-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L82C11-L86C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.BindToDataAndErrors(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L344C9-L345C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L344C9-L345C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.UpdateBinding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L402C9-L403C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L402C9-L403C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.System#ComponentModel#ISupportInitialize#BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L595C9-L596C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L595C9-L596C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.System#ComponentModel#ISupportInitialize#EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L619C9-L627C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L619C9-L627C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L650C9-L664C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L650C9-L664C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L671C9-L671C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L671C9-L671C49" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L680C9-L688C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L680C9-L688C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.GetError(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L736C48-L736C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L736C48-L736C80" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.GetIconAlignment(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L745C68-L745C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L745C68-L745C108" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.GetIconPadding(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L754C51-L754C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L754C51-L754C89" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L761C35-L767C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L761C35-L767C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.SetError(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L774C9-L791C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L774C9-L791C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.SetIconAlignment(System.Windows.Forms.Control,System.Windows.Forms.ErrorIconAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L798C9-L799C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L798C9-L799C6" }, { "DocsId": "M:System.Windows.Forms.ErrorProvider.SetIconPadding(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L806C9-L807C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L806C9-L807C6" }, { "DocsId": "E:System.Windows.Forms.ErrorProvider.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L216C16-L216C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L216C16-L216C46" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.Site", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L92C13-L105C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L92C13-L105C10" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.BlinkStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L116C16-L116C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L116C16-L116C74" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.ContainerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L168C16-L168C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L168C16-L168C30" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.HasErrors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L187C30-L187C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L187C30-L187C45" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L199C16-L199C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L199C16-L199C63" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L229C26-L229C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L229C26-L229C30" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.DataSource", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L299C16-L299C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L299C16-L299C27" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.DataMember", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L331C16-L331C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L331C16-L331C27" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.BlinkRate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L513C16-L513C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L513C16-L513C26" }, { "DocsId": "P:System.Windows.Forms.ErrorProvider.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L561C16-L561C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs#L561C16-L561C37" } ], "DocsId": "T:System.Windows.Forms.ErrorProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ErrorProvider/ErrorProvider.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FeatureSupport.IsPresent(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L18C9-L18C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L18C9-L18C87" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.IsPresent(System.String,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L27C9-L43C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L27C9-L43C68" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.GetVersionPresent(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L51C9-L67C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L51C9-L67C60" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.IsPresent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L73C54-L73C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L73C54-L73C97" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.IsPresent(System.Object,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L81C9-L87C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs#L81C9-L87C51" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.GetVersionPresent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" }, { "DocsId": "M:System.Windows.Forms.FeatureSupport.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" } ], "DocsId": "T:System.Windows.Forms.FeatureSupport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FeatureSupport.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FlatStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FlatStyle.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FlatStyle.Popup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FlatStyle.Standard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FlatStyle.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" } ], "DocsId": "T:System.Windows.Forms.FlatStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FlatStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Form.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L144C5-L208C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L147C5-L211C6" }, { "DocsId": "M:System.Windows.Forms.Form.SetVisibleCore(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2132C9-L2240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2135C9-L2243C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormCornerPreferenceChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2302C9-L2306C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2305C9-L2309C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormBorderColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2380C9-L2384C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2383C9-L2387C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormCaptionBackColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2441C9-L2445C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2444C9-L2448C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormCaptionTextColorChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2502C9-L2506C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2505C9-L2509C6" }, { "DocsId": "M:System.Windows.Forms.Form.Activate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2822C9-L2836C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2825C9-L2839C6" }, { "DocsId": "M:System.Windows.Forms.Form.ActivateMdiChild(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2840C9-L2873C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2843C9-L2876C6" }, { "DocsId": "M:System.Windows.Forms.Form.AddOwnedForm(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2880C9-L2904C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2883C9-L2907C6" }, { "DocsId": "M:System.Windows.Forms.Form.AdjustFormScrollbars(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2947C9-L2951C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2950C9-L2954C6" }, { "DocsId": "M:System.Windows.Forms.Form.ApplyAutoScaling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3040C9-L3059C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3043C9-L3062C6" }, { "DocsId": "M:System.Windows.Forms.Form.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3243C9-L3259C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3246C9-L3262C6" }, { "DocsId": "M:System.Windows.Forms.Form.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3284C9-L3300C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3287C9-L3303C33" }, { "DocsId": "M:System.Windows.Forms.Form.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3306C9-L3306C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3309C9-L3309C44" }, { "DocsId": "M:System.Windows.Forms.Form.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3345C9-L3432C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3348C9-L3435C6" }, { "DocsId": "M:System.Windows.Forms.Form.DefWndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3487C9-L3506C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3490C9-L3509C6" }, { "DocsId": "M:System.Windows.Forms.Form.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3514C9-L3572C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3517C9-L3575C6" }, { "DocsId": "M:System.Windows.Forms.Form.GetAutoScaleSize(System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3778C9-L3797C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3781C9-L3800C41" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3859C9-L3888C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3868C9-L3897C22" }, { "DocsId": "M:System.Windows.Forms.Form.CenterToParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3896C9-L3937C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3905C9-L3946C6" }, { "DocsId": "M:System.Windows.Forms.Form.CenterToScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3947C9-L3968C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3956C9-L3977C6" }, { "DocsId": "M:System.Windows.Forms.Form.LayoutMdi(System.Windows.Forms.MdiLayout)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3982C9-L3983C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3991C9-L3992C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnActivated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L3991C9-L3992C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4000C9-L4001C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnBackgroundImageChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4012C9-L4019C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4021C9-L4028C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnBackgroundImageLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4023C9-L4030C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4032C9-L4039C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnClosing(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4043C9-L4044C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4052C9-L4053C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnClosed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4057C9-L4058C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4066C9-L4067C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormClosing(System.Windows.Forms.FormClosingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4066C9-L4067C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4075C9-L4076C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFormClosed(System.Windows.Forms.FormClosedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4076C9-L4096C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4085C9-L4105C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnCreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4104C9-L4112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4113C9-L4121C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnDeactivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4120C9-L4121C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4129C9-L4130C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4129C9-L4144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4138C9-L4153C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnEnter(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4149C9-L4156C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4158C9-L4165C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4161C9-L4167C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4170C9-L4176C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4171C9-L4180C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4180C9-L4189C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4190C9-L4212C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4199C9-L4225C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnHandleDestroyed(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4222C9-L4231C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4236C9-L4247C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnHelpButtonClicked(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4239C9-L4240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4255C9-L4256C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4246C9-L4264C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4262C9-L4280C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnLoad(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4273C9-L4326C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4289C9-L4342C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMaximizedBoundsChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4331C9-L4335C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4347C9-L4351C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMaximumSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4340C9-L4344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4356C9-L4360C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMinimumSizeChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4349C9-L4353C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4365C9-L4369C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnInputLanguageChanged(System.Windows.Forms.InputLanguageChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4362C9-L4363C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4378C9-L4379C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnInputLanguageChanging(System.Windows.Forms.InputLanguageChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4372C9-L4373C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4388C9-L4389C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4378C9-L4402C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4394C9-L4418C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMdiChildActivate(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4410C9-L4413C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4426C9-L4429C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMenuStart(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4421C9-L4423C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4437C9-L4439C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnMenuComplete(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4431C9-L4432C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4447C9-L4448C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4440C9-L4469C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4456C9-L4485C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4477C9-L4487C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4493C9-L4503C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnDpiChanged(System.Windows.Forms.DpiChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4497C9-L4542C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4513C9-L4558C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnGetDpiScaledSize(System.Int32,System.Int32,System.Drawing.Size@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4577C9-L4597C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4593C9-L4613C21" }, { "DocsId": "M:System.Windows.Forms.Form.OnRightToLeftLayoutChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4631C9-L4654C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4647C9-L4670C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnShown(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4662C9-L4663C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4678C9-L4679C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnTextChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4668C9-L4678C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4684C9-L4694C6" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4704C9-L4723C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4720C9-L4739C25" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4734C9-L4772C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4750C9-L4788C47" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessDialogChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4782C9-L4804C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4798C9-L4820C6" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessKeyPreview(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4808C9-L4813C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4824C9-L4829C46" }, { "DocsId": "M:System.Windows.Forms.Form.ProcessTabKey(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4818C9-L4835C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4834C9-L4851C22" }, { "DocsId": "M:System.Windows.Forms.Form.RemoveOwnedForm(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4996C9-L5012C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5012C9-L5028C6" }, { "DocsId": "M:System.Windows.Forms.Form.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5120C9-L5142C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5136C9-L5158C6" }, { "DocsId": "M:System.Windows.Forms.Form.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5150C9-L5167C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5166C9-L5183C6" }, { "DocsId": "M:System.Windows.Forms.Form.ScaleMinMaxSize(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5180C9-L5195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5196C9-L5211C6" }, { "DocsId": "M:System.Windows.Forms.Form.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5206C9-L5211C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5222C9-L5227C64" }, { "DocsId": "M:System.Windows.Forms.Form.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5220C9-L5235C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5236C9-L5251C6" }, { "DocsId": "M:System.Windows.Forms.Form.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5240C9-L5331C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5256C9-L5347C6" }, { "DocsId": "M:System.Windows.Forms.Form.SetClientSizeCore(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5357C9-L5387C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5373C9-L5403C6" }, { "DocsId": "M:System.Windows.Forms.Form.SetDesktopBounds(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5394C9-L5396C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5410C9-L5412C6" }, { "DocsId": "M:System.Windows.Forms.Form.SetDesktopLocation(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5403C9-L5405C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5419C9-L5421C6" }, { "DocsId": "M:System.Windows.Forms.Form.Show(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5443C9-L5499C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5459C9-L5515C6" }, { "DocsId": "M:System.Windows.Forms.Form.ShowAsync(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5597C5-L5623C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5613C5-L5639C45" }, { "DocsId": "M:System.Windows.Forms.Form.ShowDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5657C41-L5657C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5673C41-L5673C64" }, { "DocsId": "M:System.Windows.Forms.Form.ShowDialog(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5664C9-L5819C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5680C9-L5835C29" }, { "DocsId": "M:System.Windows.Forms.Form.ShowDialogAsync", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5856C52-L5856C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5872C52-L5872C88" }, { "DocsId": "M:System.Windows.Forms.Form.ShowDialogAsync(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5896C70-L5896C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5912C70-L5912C100" }, { "DocsId": "M:System.Windows.Forms.Form.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6025C42-L6025C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6041C42-L6041C76" }, { "DocsId": "M:System.Windows.Forms.Form.UpdateDefaultButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6081C9-L6106C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6097C9-L6122C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnResizeBegin(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6403C9-L6407C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6419C9-L6423C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnResizeEnd(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6416C9-L6420C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6432C9-L6436C6" }, { "DocsId": "M:System.Windows.Forms.Form.OnStyleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6425C9-L6427C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6441C9-L6443C6" }, { "DocsId": "M:System.Windows.Forms.Form.ValidateChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6605C9-L6605C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6621C9-L6621C40" }, { "DocsId": "M:System.Windows.Forms.Form.ValidateChildren(System.Windows.Forms.ValidationConstraints)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6616C9-L6616C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L6632C9-L6632C61" }, { "DocsId": "M:System.Windows.Forms.Form.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7133C9-L7232C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7149C9-L7257C6" + }, + { + "DocsId": "M:System.Windows.Forms.Form.OnFormRevealModeChanged(System.EventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.RevealMode.cs#L95C12-L95C83" }, { "DocsId": "E:System.Windows.Forms.Form.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L517C16-L517C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L520C16-L520C45" }, { "DocsId": "E:System.Windows.Forms.Form.AutoValidateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L575C16-L575C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L578C16-L578C49" }, { "DocsId": "E:System.Windows.Forms.Form.HelpButtonClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L988C16-L988C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L991C16-L991C66" }, { "DocsId": "E:System.Windows.Forms.Form.MaximizedBoundsChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1172C16-L1172C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1175C16-L1175C70" }, { "DocsId": "E:System.Windows.Forms.Form.MaximumSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1247C16-L1247C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1250C16-L1250C67" }, { "DocsId": "E:System.Windows.Forms.Form.MarginChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1286C16-L1286C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1289C16-L1289C43" }, { "DocsId": "E:System.Windows.Forms.Form.MinimumSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1378C16-L1378C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1381C16-L1381C67" }, { "DocsId": "E:System.Windows.Forms.Form.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1973C16-L1973C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1976C16-L1976C45" }, { "DocsId": "E:System.Windows.Forms.Form.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1996C16-L1996C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1999C16-L1999C44" }, { "DocsId": "E:System.Windows.Forms.Form.Activated", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2611C16-L2611C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2614C16-L2614C58" }, { "DocsId": "E:System.Windows.Forms.Form.Closing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2629C16-L2629C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2632C16-L2632C56" }, { "DocsId": "E:System.Windows.Forms.Form.Closed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2647C16-L2647C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2650C16-L2650C55" }, { "DocsId": "E:System.Windows.Forms.Form.Deactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2658C16-L2658C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2661C16-L2661C59" }, { "DocsId": "E:System.Windows.Forms.Form.FormClosing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2669C16-L2669C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2672C16-L2672C60" }, { "DocsId": "E:System.Windows.Forms.Form.FormBorderColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2680C16-L2680C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2683C16-L2683C66" }, { "DocsId": "E:System.Windows.Forms.Form.FormCaptionBackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2691C16-L2691C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2694C16-L2694C71" }, { "DocsId": "E:System.Windows.Forms.Form.FormCaptionTextColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2702C16-L2702C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2705C16-L2705C71" }, { "DocsId": "E:System.Windows.Forms.Form.FormCornerPreferenceChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2713C16-L2713C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2716C16-L2716C71" }, { "DocsId": "E:System.Windows.Forms.Form.FormClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2724C16-L2724C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2727C16-L2727C59" }, { "DocsId": "E:System.Windows.Forms.Form.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2735C16-L2735C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2738C16-L2738C53" }, { "DocsId": "E:System.Windows.Forms.Form.MdiChildActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2747C16-L2747C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2750C16-L2750C65" }, { "DocsId": "E:System.Windows.Forms.Form.MenuComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2759C16-L2759C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2762C16-L2762C61" }, { "DocsId": "E:System.Windows.Forms.Form.MenuStart", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2771C16-L2771C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2774C16-L2774C58" }, { "DocsId": "E:System.Windows.Forms.Form.InputLanguageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2782C16-L2782C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2785C16-L2785C68" }, { "DocsId": "E:System.Windows.Forms.Form.InputLanguageChanging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2794C16-L2794C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2797C16-L2797C75" }, { "DocsId": "E:System.Windows.Forms.Form.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2802C16-L2802C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2805C16-L2805C73" }, { "DocsId": "E:System.Windows.Forms.Form.Shown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2813C16-L2813C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2816C16-L2816C54" }, { "DocsId": "E:System.Windows.Forms.Form.DpiChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4552C16-L4552C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L4568C16-L4568C59" }, { "DocsId": "E:System.Windows.Forms.Form.ResizeBegin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5039C16-L5039C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5055C16-L5055C60" }, { "DocsId": "E:System.Windows.Forms.Form.ResizeEnd", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5050C16-L5050C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L5066C16-L5066C58" + }, + { + "DocsId": "E:System.Windows.Forms.Form.FormRevealModeChanged", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.RevealMode.cs#L86C16-L86C70" }, { "DocsId": "P:System.Windows.Forms.Form.AcceptButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L218C16-L218C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L221C16-L221C81" }, { "DocsId": "P:System.Windows.Forms.Form.ActiveForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L286C39-L286C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L289C39-L289C92" }, { "DocsId": "P:System.Windows.Forms.Form.ActiveMdiChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L300C13-L324C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L303C13-L327C25" }, { "DocsId": "P:System.Windows.Forms.Form.AllowTransparency", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L353C16-L353C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L356C16-L356C61" }, { "DocsId": "P:System.Windows.Forms.Form.AutoScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L396C13-L396C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L399C13-L399C60" }, { "DocsId": "P:System.Windows.Forms.Form.AutoScaleBaseSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L440C13-L448C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L443C13-L451C39" }, { "DocsId": "P:System.Windows.Forms.Form.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L470C16-L470C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L473C16-L473C31" }, { "DocsId": "P:System.Windows.Forms.Form.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L490C15-L490C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L493C15-L493C63" }, { "DocsId": "P:System.Windows.Forms.Form.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L533C13-L533C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L536C13-L536C38" }, { "DocsId": "P:System.Windows.Forms.Form.AutoValidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L567C16-L567C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L570C16-L570C33" }, { "DocsId": "P:System.Windows.Forms.Form.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L589C13-L595C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L592C13-L598C37" }, { "DocsId": "P:System.Windows.Forms.Form.FormBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L657C16-L657C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L660C16-L660C67" }, { "DocsId": "P:System.Windows.Forms.Form.CancelButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L710C16-L710C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L713C16-L713C80" }, { "DocsId": "P:System.Windows.Forms.Form.ClientSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L729C16-L729C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L732C16-L732C31" }, { "DocsId": "P:System.Windows.Forms.Form.ControlBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L742C16-L742C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L745C16-L745C54" }, { "DocsId": "P:System.Windows.Forms.Form.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L758C13-L845C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L761C13-L848C23" }, { "DocsId": "P:System.Windows.Forms.Form.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L876C50-L876C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L879C50-L879C67" }, { "DocsId": "P:System.Windows.Forms.Form.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L882C44-L882C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L885C44-L885C62" }, { "DocsId": "P:System.Windows.Forms.Form.DesktopBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L895C13-L899C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L898C13-L902C27" }, { "DocsId": "P:System.Windows.Forms.Form.DesktopLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L918C13-L922C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L921C13-L925C24" }, { "DocsId": "P:System.Windows.Forms.Form.DialogResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L941C13-L941C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L944C13-L944C34" }, { "DocsId": "P:System.Windows.Forms.Form.HelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L964C13-L964C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L967C13-L967C59" }, { "DocsId": "P:System.Windows.Forms.Form.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1003C13-L1008C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1006C13-L1011C26" }, { "DocsId": "P:System.Windows.Forms.Form.IsMdiChild", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1067C31-L1067C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1070C31-L1070C74" }, { "DocsId": "P:System.Windows.Forms.Form.IsMdiContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1089C13-L1089C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1092C13-L1092C43" }, { "DocsId": "P:System.Windows.Forms.Form.IsRestrictedWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1125C39-L1125C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1128C39-L1128C44" }, { "DocsId": "P:System.Windows.Forms.Form.KeyPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1136C16-L1136C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1139C16-L1139C54" }, { "DocsId": "P:System.Windows.Forms.Form.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1146C16-L1146C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1149C16-L1149C29" }, { "DocsId": "P:System.Windows.Forms.Form.MaximizedBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1155C16-L1155C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1158C16-L1158C78" }, { "DocsId": "P:System.Windows.Forms.Form.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1186C16-L1186C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1189C16-L1189C107" }, { "DocsId": "P:System.Windows.Forms.Form.MainMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1257C16-L1257C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1260C16-L1260C76" }, { "DocsId": "P:System.Windows.Forms.Form.Margin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1275C16-L1275C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1278C16-L1278C27" }, { "DocsId": "P:System.Windows.Forms.Form.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1299C16-L1299C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1302C16-L1302C115" }, { "DocsId": "P:System.Windows.Forms.Form.MaximizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1391C16-L1391C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1394C16-L1394C55" }, { "DocsId": "P:System.Windows.Forms.Form.MdiChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1407C34-L1407C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1410C34-L1410C88" }, { "DocsId": "P:System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1424C52-L1424C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1427C52-L1427C56" }, { "DocsId": "P:System.Windows.Forms.Form.MdiParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1443C16-L1443C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1446C16-L1446C33" }, { "DocsId": "P:System.Windows.Forms.Form.MinimizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1539C16-L1539C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1542C16-L1542C55" }, { "DocsId": "P:System.Windows.Forms.Form.Modal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1554C26-L1554C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1557C26-L1557C48" }, { "DocsId": "P:System.Windows.Forms.Form.Opacity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1566C16-L1566C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1569C16-L1569C65" }, { "DocsId": "P:System.Windows.Forms.Form.OwnedForms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1613C33-L1613C128" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1616C33-L1616C128" }, { "DocsId": "P:System.Windows.Forms.Form.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1624C16-L1624C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1627C16-L1627C29" }, { "DocsId": "P:System.Windows.Forms.Form.RestoreBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1664C13-L1676C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1667C13-L1679C35" }, { "DocsId": "P:System.Windows.Forms.Form.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1691C16-L1691C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1694C16-L1694C34" }, { "DocsId": "P:System.Windows.Forms.Form.FormScreenCaptureMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1758C16-L1758C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1761C16-L1761C98" }, { "DocsId": "P:System.Windows.Forms.Form.ShowInTaskbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1811C16-L1811C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1814C16-L1814C51" }, { "DocsId": "P:System.Windows.Forms.Form.ShowIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1836C16-L1836C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1839C16-L1839C56" }, { "DocsId": "P:System.Windows.Forms.Form.ShowWithoutActivation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1896C13-L1896C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1899C13-L1899C26" }, { "DocsId": "P:System.Windows.Forms.Form.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1907C16-L1907C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1910C16-L1910C25" }, { "DocsId": "P:System.Windows.Forms.Form.SizeGripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1921C13-L1921C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1924C13-L1924C72" }, { "DocsId": "P:System.Windows.Forms.Form.StartPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1950C13-L1950C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1953C13-L1953C71" }, { "DocsId": "P:System.Windows.Forms.Form.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1965C16-L1965C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1968C16-L1968C29" }, { "DocsId": "P:System.Windows.Forms.Form.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1988C16-L1988C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L1991C16-L1991C28" }, { "DocsId": "P:System.Windows.Forms.Form.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2027C16-L2027C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2030C16-L2030C25" }, { "DocsId": "P:System.Windows.Forms.Form.TopLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2039C16-L2039C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2042C16-L2042C29" }, { "DocsId": "P:System.Windows.Forms.Form.TopMost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2060C16-L2060C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2063C16-L2063C51" }, { "DocsId": "P:System.Windows.Forms.Form.TransparencyKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2083C16-L2083C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2086C16-L2086C80" }, { "DocsId": "P:System.Windows.Forms.Form.FormCornerPreference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2265C16-L2265C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2268C16-L2268C102" }, { "DocsId": "P:System.Windows.Forms.Form.FormBorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2353C16-L2353C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2356C16-L2356C80" }, { "DocsId": "P:System.Windows.Forms.Form.FormCaptionBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2413C16-L2413C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2416C16-L2416C85" }, { "DocsId": "P:System.Windows.Forms.Form.FormCaptionTextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2474C16-L2474C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2477C16-L2477C85" }, { "DocsId": "P:System.Windows.Forms.Form.WindowState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2540C16-L2540C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L2543C16-L2543C67" }, { "DocsId": "P:System.Windows.Forms.Form.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7249C9-L7249C13" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7274C9-L7274C13" }, { "DocsId": "P:System.Windows.Forms.Form.MergedMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7266C9-L7266C13" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs#L7291C9-L7291C13" + }, + { + "DocsId": "P:System.Windows.Forms.Form.FormRevealMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.RevealMode.cs#L49C13-L55C26" }, { "DocsId": "T:System.Windows.Forms.Form.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs" } ], "DocsId": "T:System.Windows.Forms.Form", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FormBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.FixedSingle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.Fixed3D", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.FixedDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.Sizable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.FixedToolWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FormBorderStyle.SizableToolWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.FormBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FormClosedEventArgs.#ctor(System.Windows.Forms.CloseReason)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.FormClosedEventArgs.CloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs#L19C38-L19C42" } ], "DocsId": "T:System.Windows.Forms.FormClosedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FormClosedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosedEventHandler.Invoke(System.Object,System.Windows.Forms.FormClosedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.FormClosedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.FormClosedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FormClosingEventArgs.#ctor(System.Windows.Forms.CloseReason,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs#L13C73-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs#L13C73-L16C6" }, { "DocsId": "P:System.Windows.Forms.FormClosingEventArgs.CloseReason", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs#L21C38-L21C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs#L21C38-L21C42" } ], "DocsId": "T:System.Windows.Forms.FormClosingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FormClosingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosingEventHandler.Invoke(System.Object,System.Windows.Forms.FormClosingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.FormClosingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.FormClosingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.FormClosingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormClosingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FormCollection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs" }, { "DocsId": "P:System.Windows.Forms.FormCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs#L29C13-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs#L29C13-L44C10" }, { "DocsId": "P:System.Windows.Forms.FormCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs#L54C13-L61C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs#L54C13-L61C22" } ], "DocsId": "T:System.Windows.Forms.FormCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FormCornerPreference.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" }, { "DocsId": "F:System.Windows.Forms.FormCornerPreference.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" }, { "DocsId": "F:System.Windows.Forms.FormCornerPreference.DoNotRound", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" }, { "DocsId": "F:System.Windows.Forms.FormCornerPreference.Round", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" }, { "DocsId": "F:System.Windows.Forms.FormCornerPreference.RoundSmall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" } ], "DocsId": "T:System.Windows.Forms.FormCornerPreference", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormCornerPreference.cs" + }, + { + "Members": [ + { + "DocsId": "F:System.Windows.Forms.FormRevealMode.value__", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormRevealMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.FormRevealMode.Inherit", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormRevealMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.FormRevealMode.Classic", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormRevealMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.FormRevealMode.Deferred", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormRevealMode.cs" + } + ], + "DocsId": "T:System.Windows.Forms.FormRevealMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormRevealMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FormStartPosition.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "DocsId": "F:System.Windows.Forms.FormStartPosition.Manual", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "DocsId": "F:System.Windows.Forms.FormStartPosition.CenterScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "DocsId": "F:System.Windows.Forms.FormStartPosition.WindowsDefaultLocation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "DocsId": "F:System.Windows.Forms.FormStartPosition.WindowsDefaultBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "DocsId": "F:System.Windows.Forms.FormStartPosition.CenterParent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" } ], "DocsId": "T:System.Windows.Forms.FormStartPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormStartPosition.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FormWindowState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" }, { "DocsId": "F:System.Windows.Forms.FormWindowState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" }, { "DocsId": "F:System.Windows.Forms.FormWindowState.Minimized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" }, { "DocsId": "F:System.Windows.Forms.FormWindowState.Maximized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" } ], "DocsId": "T:System.Windows.Forms.FormWindowState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FormWindowState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FrameStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FrameStyle.Dashed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" }, { "DocsId": "F:System.Windows.Forms.FrameStyle.Thick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" } ], "DocsId": "T:System.Windows.Forms.FrameStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/FrameStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.GetChildAtPointSkip.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" }, { "DocsId": "F:System.Windows.Forms.GetChildAtPointSkip.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" }, { "DocsId": "F:System.Windows.Forms.GetChildAtPointSkip.Invisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" }, { "DocsId": "F:System.Windows.Forms.GetChildAtPointSkip.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" }, { "DocsId": "F:System.Windows.Forms.GetChildAtPointSkip.Transparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" } ], "DocsId": "T:System.Windows.Forms.GetChildAtPointSkip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GetChildAtPointSkip.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventArgs.#ctor(System.Windows.Forms.DragDropEffects,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L19C11-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L19C11-L21C6" }, { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventArgs.#ctor(System.Windows.Forms.DragDropEffects,System.Boolean,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L26C5-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L26C5-L33C6" }, { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventArgs.System#Private#Windows#Ole#IGiveFeedbackEvent#get_DragImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L55C46-L55C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L55C46-L55C55" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.Effect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L38C37-L38C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L38C37-L38C41" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L43C37-L43C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L43C37-L43C41" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.DragImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L53C32-L53C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L53C32-L53C36" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.System#Private#Windows#Ole#IGiveFeedbackEvent#DragImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L55C46-L55C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L55C46-L55C55" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L65C33-L65C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L65C33-L65C37" }, { "DocsId": "P:System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L76C39-L76C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs#L76C39-L76C43" } ], "DocsId": "T:System.Windows.Forms.GiveFeedbackEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventHandler.Invoke(System.Object,System.Windows.Forms.GiveFeedbackEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventHandler.BeginInvoke(System.Object,System.Windows.Forms.GiveFeedbackEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.GiveFeedbackEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.GiveFeedbackEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/GiveFeedbackEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L24C9-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L24C9-L25C6" }, { "DocsId": "M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.Windows.Forms.HelpNavigator)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L32C9-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L32C9-L33C6" }, { "DocsId": "M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L40C9-L48C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L40C9-L48C6" }, { "DocsId": "M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.Windows.Forms.HelpNavigator,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L55C9-L64C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L55C9-L64C6" }, { "DocsId": "M:System.Windows.Forms.Help.ShowHelpIndex(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L71C9-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L71C9-L72C6" }, { "DocsId": "M:System.Windows.Forms.Help.ShowPopup(System.Windows.Forms.Control,System.String,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L79C9-L97C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs#L79C9-L97C6" } ], "DocsId": "T:System.Windows.Forms.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/Help.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HelpEventArgs.#ctor(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.HelpEventArgs.MousePos", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L22C29-L22C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L22C29-L22C33" }, { "DocsId": "P:System.Windows.Forms.HelpEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L27C27-L27C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs#L27C27-L27C31" } ], "DocsId": "T:System.Windows.Forms.HelpEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HelpEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HelpEventHandler.Invoke(System.Object,System.Windows.Forms.HelpEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HelpEventHandler.BeginInvoke(System.Object,System.Windows.Forms.HelpEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.HelpEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.HelpEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.HelpNavigator.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.Topic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.TableOfContents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.Find", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.AssociateIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.KeywordIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "DocsId": "F:System.Windows.Forms.HelpNavigator.TopicId", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" } ], "DocsId": "T:System.Windows.Forms.HelpNavigator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpNavigator.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HelpProvider.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L20C5-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L20C5-L31C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L55C54-L55C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L55C54-L55C71" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.GetHelpKeyword(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L65C9-L66C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L65C9-L66C77" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.GetHelpNavigator(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L77C9-L78C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L77C9-L78C109" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.GetHelpString(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L89C9-L90C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L89C9-L90C80" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.GetShowHelp(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L100C9-L101C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L100C9-L101C68" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.SetHelpString(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L174C9-L183C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L174C9-L183C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.SetHelpKeyword(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L190C9-L199C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L190C9-L199C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.SetHelpNavigator(System.Windows.Forms.Control,System.Windows.Forms.HelpNavigator)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L206C9-L213C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L206C9-L213C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.SetShowHelp(System.Windows.Forms.Control,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L220C9-L224C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L220C9-L224C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.ResetShowHelp(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L241C9-L244C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L241C9-L244C6" }, { "DocsId": "M:System.Windows.Forms.HelpProvider.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L270C42-L270C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L270C42-L270C94" }, { "DocsId": "P:System.Windows.Forms.HelpProvider.HelpNamespace", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L41C44-L41C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L41C44-L41C48" }, { "DocsId": "P:System.Windows.Forms.HelpProvider.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L49C26-L49C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs#L49C26-L49C30" } ], "DocsId": "T:System.Windows.Forms.HelpProvider", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Help/HelpProvider.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IComponentEditorPageSite.GetControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" }, { "DocsId": "M:System.Windows.Forms.IComponentEditorPageSite.SetDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" } ], "DocsId": "T:System.Windows.Forms.IComponentEditorPageSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IComponentEditorPageSite.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IFeatureSupport.IsPresent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" }, { "DocsId": "M:System.Windows.Forms.IFeatureSupport.IsPresent(System.Object,System.Version)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" }, { "DocsId": "M:System.Windows.Forms.IFeatureSupport.GetVersionPresent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" } ], "DocsId": "T:System.Windows.Forms.IFeatureSupport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFeatureSupport.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IFileReaderService.OpenFileFromSource(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFileReaderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFileReaderService.cs" } ], "DocsId": "T:System.Windows.Forms.IFileReaderService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFileReaderService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IFileReaderService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L53C9-L58C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L53C9-L58C58" }, { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L70C9-L77C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L70C9-L77C73" }, { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L95C9-L172C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L95C9-L172C72" }, { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L186C9-L186C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L186C9-L186C22" }, { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L195C9-L195C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L195C9-L195C21" }, { "DocsId": "M:System.Windows.Forms.ImageIndexConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L46C61-L46C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L46C61-L46C69" }, { "DocsId": "P:System.Windows.Forms.ImageIndexConverter.IncludeNoneAsStandardValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L38C58-L38C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs#L38C58-L38C62" } ], "DocsId": "T:System.Windows.Forms.ImageIndexConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageIndexConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L50C9-L55C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L50C9-L55C57" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L63C9-L73C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L63C9-L73C58" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L85C9-L96C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L85C9-L96C73" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L107C9-L183C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L107C9-L183C72" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L197C9-L197C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L197C9-L197C21" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L206C9-L206C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L206C9-L206C21" }, { "DocsId": "M:System.Windows.Forms.ImageKeyConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L16C5-L16C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L16C5-L16C56" }, { "DocsId": "P:System.Windows.Forms.ImageKeyConverter.IncludeNoneAsStandardValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L22C13-L22C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs#L22C13-L22C25" } ], "DocsId": "T:System.Windows.Forms.ImageKeyConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ImageKeyConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IMessageFilter.PreFilterMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IMessageFilter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IMessageFilter.cs" } ], "DocsId": "T:System.Windows.Forms.IMessageFilter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IMessageFilter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IMessageFilter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Cursor.#ctor(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L56C5-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L56C5-L66C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L71C5-L78C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L71C5-L78C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L84C11-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L84C11-L86C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L92C5-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L92C5-L112C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L214C36-L214C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L214C36-L214C49" }, { "DocsId": "M:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L216C38-L216C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L216C38-L216C52" }, { "DocsId": "M:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L217C40-L217C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L217C40-L217C47" }, { "DocsId": "M:System.Windows.Forms.Cursor.CopyHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L224C9-L225C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L224C9-L225C101" }, { "DocsId": "M:System.Windows.Forms.Cursor.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L233C9-L240C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L233C9-L240C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.Draw(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L352C9-L353C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L352C9-L353C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.DrawStretched(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L360C9-L361C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L360C9-L361C6" }, { "DocsId": "M:System.Windows.Forms.Cursor.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L363C18-L363C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L363C18-L363C27" }, { "DocsId": "M:System.Windows.Forms.Cursor.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L367C9-L367C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L367C9-L367C51" }, { "DocsId": "M:System.Windows.Forms.Cursor.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L373C34-L373C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L373C34-L373C66" }, { "DocsId": "M:System.Windows.Forms.Cursor.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L463C34-L463C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L463C34-L463C65" }, { "DocsId": "M:System.Windows.Forms.Cursor.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L468C42-L468C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L468C42-L468C91" }, { "DocsId": "M:System.Windows.Forms.Cursor.op_Equality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L472C9-L472C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L472C9-L472C110" }, { "DocsId": "M:System.Windows.Forms.Cursor.op_Inequality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L475C68-L475C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L475C68-L475C84" }, { "DocsId": "M:System.Windows.Forms.Cursor.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L477C49-L477C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L477C49-L477C67" }, { "DocsId": "M:System.Windows.Forms.Cursor.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L479C49-L479C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L479C49-L479C87" }, { "DocsId": "P:System.Windows.Forms.Cursor.Clip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L122C13-L123C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L122C13-L123C25" }, { "DocsId": "P:System.Windows.Forms.Cursor.Current", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L147C13-L148C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L147C13-L148C62" }, { "DocsId": "P:System.Windows.Forms.Cursor.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L160C13-L161C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L160C13-L161C34" }, { "DocsId": "P:System.Windows.Forms.Cursor.HotSpot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L172C13-L174C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L172C13-L174C10" }, { "DocsId": "P:System.Windows.Forms.Cursor.Position", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L184C13-L185C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L184C13-L185C22" }, { "DocsId": "P:System.Windows.Forms.Cursor.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L197C13-L202C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L197C13-L202C33" }, { "DocsId": "P:System.Windows.Forms.Cursor.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L212C26-L212C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L212C26-L212C30" }, { "DocsId": "P:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L214C36-L214C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L214C36-L214C49" }, { "DocsId": "P:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L216C38-L216C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L216C38-L216C52" }, { "DocsId": "P:System.Windows.Forms.Cursor.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L217C40-L217C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs#L217C40-L217C47" } ], "DocsId": "T:System.Windows.Forms.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CursorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L26C9-L31C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L26C9-L31C57" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L40C9-L45C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L40C9-L45C60" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L53C9-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L53C9-L74C6" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L85C9-L141C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L85C9-L141C73" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L160C9-L178C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L160C9-L178C24" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L187C9-L187C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs#L187C9-L187C21" }, { "DocsId": "M:System.Windows.Forms.CursorConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs" } ], "DocsId": "T:System.Windows.Forms.CursorConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/CursorConverter.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.Cursors.AppStarting", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L40C41-L40C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L40C41-L40C108" }, { "DocsId": "P:System.Windows.Forms.Cursors.Arrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L41C35-L41C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L41C35-L41C84" }, { "DocsId": "P:System.Windows.Forms.Cursors.Cross", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L42C35-L42C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L42C35-L42C84" }, { "DocsId": "P:System.Windows.Forms.Cursors.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L43C37-L43C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L43C37-L43C96" }, { "DocsId": "P:System.Windows.Forms.Cursors.IBeam", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L44C35-L44C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L44C35-L44C84" }, { "DocsId": "P:System.Windows.Forms.Cursors.No", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L45C32-L45C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L45C32-L45C72" }, { "DocsId": "P:System.Windows.Forms.Cursors.SizeAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L46C37-L46C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L46C37-L46C92" }, { "DocsId": "P:System.Windows.Forms.Cursors.SizeNESW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L47C38-L47C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L47C38-L47C96" }, { "DocsId": "P:System.Windows.Forms.Cursors.SizeNS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L48C36-L48C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L48C36-L48C88" }, { "DocsId": "P:System.Windows.Forms.Cursors.SizeNWSE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L49C38-L49C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L49C38-L49C96" }, { "DocsId": "P:System.Windows.Forms.Cursors.SizeWE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L50C36-L50C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L50C36-L50C88" }, { "DocsId": "P:System.Windows.Forms.Cursors.UpArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L51C37-L51C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L51C37-L51C92" }, { "DocsId": "P:System.Windows.Forms.Cursors.WaitCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L52C40-L52C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L52C40-L52C92" }, { "DocsId": "P:System.Windows.Forms.Cursors.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L53C34-L53C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L53C34-L53C80" }, { "DocsId": "P:System.Windows.Forms.Cursors.Hand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L54C34-L54C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L54C34-L54C80" }, { "DocsId": "P:System.Windows.Forms.Cursors.HSplit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L55C36-L55C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L55C36-L55C82" }, { "DocsId": "P:System.Windows.Forms.Cursors.VSplit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L56C36-L56C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L56C36-L56C82" }, { "DocsId": "P:System.Windows.Forms.Cursors.NoMove2D", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L57C38-L57C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L57C38-L57C90" }, { "DocsId": "P:System.Windows.Forms.Cursors.NoMoveHoriz", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L58C41-L58C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L58C41-L58C98" }, { "DocsId": "P:System.Windows.Forms.Cursors.NoMoveVert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L59C40-L59C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L59C40-L59C95" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanEast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L60C37-L60C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L60C37-L60C83" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanNE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L61C35-L61C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L61C35-L61C75" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanNorth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L62C38-L62C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L62C38-L62C87" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanNW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L63C35-L63C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L63C35-L63C75" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanSE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L64C35-L64C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L64C35-L64C75" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanSouth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L65C38-L65C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L65C38-L65C87" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanSW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L66C35-L66C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L66C35-L66C75" }, { "DocsId": "P:System.Windows.Forms.Cursors.PanWest", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L67C37-L67C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs#L67C37-L67C83" } ], "DocsId": "T:System.Windows.Forms.Cursors", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Cursors.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HandledMouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L9C11-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L9C11-L11C6" }, { "DocsId": "M:System.Windows.Forms.HandledMouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L19C11-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L19C11-L22C6" }, { "DocsId": "P:System.Windows.Forms.HandledMouseEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L27C27-L27C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs#L27C27-L27C31" } ], "DocsId": "T:System.Windows.Forms.HandledMouseEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/HandledMouseEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ImeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.NoControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.On", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Off", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Disable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Hiragana", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Katakana", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.KatakanaHalf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.AlphaFull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Alpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.HangulFull", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Hangul", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "DocsId": "F:System.Windows.Forms.ImeMode.OnHalf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" } ], "DocsId": "T:System.Windows.Forms.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/IMEMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguage.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L258C12-L258C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L258C12-L258C68" }, { "DocsId": "M:System.Windows.Forms.InputLanguage.FromCulture(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L265C9-L276C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L265C9-L276C6" }, { "DocsId": "M:System.Windows.Forms.InputLanguage.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L281C42-L281C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L281C42-L281C54" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L28C35-L28C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L28C35-L28C51" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.CurrentInputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L38C13-L39C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L38C13-L39C68" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.DefaultInputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L62C13-L64C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L62C13-L64C46" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L71C29-L71C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L71C29-L71C36" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.InstalledInputLanguages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L80C13-L95C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L80C13-L95C53" }, { "DocsId": "P:System.Windows.Forms.InputLanguage.LayoutName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L110C13-L112C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs#L110C13-L112C10" } ], "DocsId": "T:System.Windows.Forms.InputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguage.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventArgs.#ctor(System.Globalization.CultureInfo,System.Byte)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L17C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L17C5-L25C6" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventArgs.#ctor(System.Windows.Forms.InputLanguage,System.Byte)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L31C5-L36C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L31C5-L36C6" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L41C42-L41C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L41C42-L41C46" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangedEventArgs.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L46C34-L46C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L46C34-L46C38" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangedEventArgs.CharSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L51C27-L51C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs#L51C27-L51C31" } ], "DocsId": "T:System.Windows.Forms.InputLanguageChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventHandler.Invoke(System.Object,System.Windows.Forms.InputLanguageChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.InputLanguageChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.InputLanguageChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventArgs.#ctor(System.Globalization.CultureInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L18C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L18C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventArgs.#ctor(System.Windows.Forms.InputLanguage,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L32C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L32C5-L37C6" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L42C42-L42C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L42C42-L42C46" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangingEventArgs.Culture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L47C34-L47C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L47C34-L47C38" }, { "DocsId": "P:System.Windows.Forms.InputLanguageChangingEventArgs.SysCharSet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L53C30-L53C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs#L53C30-L53C34" } ], "DocsId": "T:System.Windows.Forms.InputLanguageChangingEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventHandler.Invoke(System.Object,System.Windows.Forms.InputLanguageChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventHandler.BeginInvoke(System.Object,System.Windows.Forms.InputLanguageChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InputLanguageChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.InputLanguageChangingEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageChangingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InputLanguageCollection.Contains(System.Windows.Forms.InputLanguage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L34C51-L34C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L34C51-L34C76" }, { "DocsId": "M:System.Windows.Forms.InputLanguageCollection.CopyTo(System.Windows.Forms.InputLanguage[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L40C61-L40C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L40C61-L40C91" }, { "DocsId": "M:System.Windows.Forms.InputLanguageCollection.IndexOf(System.Windows.Forms.InputLanguage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L46C49-L46C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L46C49-L46C73" }, { "DocsId": "P:System.Windows.Forms.InputLanguageCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L28C45-L28C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs#L28C45-L28C77" } ], "DocsId": "T:System.Windows.Forms.InputLanguageCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/InputLanguageCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.KeyEventArgs.#ctor(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L17C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L17C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.Alt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L25C32-L25C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L25C32-L25C64" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L30C28-L30C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L30C28-L30C68" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L35C27-L35C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L35C27-L35C31" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.KeyCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L45C13-L53C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L45C13-L53C33" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.KeyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L61C28-L61C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L61C28-L61C57" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.KeyData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L67C27-L67C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L67C27-L67C31" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.Modifiers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L74C30-L74C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L74C30-L74C54" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.Shift", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L79C34-L79C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L79C34-L79C70" }, { "DocsId": "P:System.Windows.Forms.KeyEventArgs.SuppressKeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L83C16-L83C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs#L83C16-L83C33" } ], "DocsId": "T:System.Windows.Forms.KeyEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.KeyEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyEventHandler.Invoke(System.Object,System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyEventHandler.BeginInvoke(System.Object,System.Windows.Forms.KeyEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.KeyEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.KeyPressEventArgs.#ctor(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L14C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L14C5-L17C6" }, { "DocsId": "P:System.Windows.Forms.KeyPressEventArgs.KeyChar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L22C27-L22C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L22C27-L22C31" }, { "DocsId": "P:System.Windows.Forms.KeyPressEventArgs.Handled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L27C27-L27C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs#L27C27-L27C31" } ], "DocsId": "T:System.Windows.Forms.KeyPressEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.KeyPressEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyPressEventHandler.Invoke(System.Object,System.Windows.Forms.KeyPressEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyPressEventHandler.BeginInvoke(System.Object,System.Windows.Forms.KeyPressEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.KeyPressEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.KeyPressEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeyPressEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Keys.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.KeyCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Modifiers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.RButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.MButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.XButton1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.XButton2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Back", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Tab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LineFeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Return", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Enter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.ShiftKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.ControlKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Pause", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Capital", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.CapsLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.KanaMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.HanguelMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.HangulMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.JunjaMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.FinalMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.HanjaMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.KanjiMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Escape", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.IMEConvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.IMENonconvert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.IMEAccept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.IMEAceept", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.IMEModeChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Space", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Prior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.PageUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Next", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.PageDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.End", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Home", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Select", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Print", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Execute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Snapshot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.PrintScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Insert", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Delete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.A", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.B", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.C", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.D", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.E", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.G", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.H", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.I", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.J", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.K", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.L", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.M", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.N", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.O", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.P", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Q", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.R", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.S", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.T", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.U", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.V", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.W", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Z", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LWin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.RWin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Apps", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Sleep", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumPad9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Multiply", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Add", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Subtract", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Decimal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Divide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F13", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F14", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F15", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F16", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F17", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F18", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F19", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F20", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F21", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F22", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F23", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.F24", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NumLock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LShiftKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.RShiftKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LControlKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.RControlKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.RMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserBack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserForward", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserRefresh", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserSearch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserFavorites", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.BrowserHome", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.VolumeMute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.VolumeDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.VolumeUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.MediaNextTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.MediaPreviousTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.MediaStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.MediaPlayPause", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LaunchMail", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.SelectMedia", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LaunchApplication1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.LaunchApplication2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemSemicolon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oemplus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oemcomma", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemMinus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemPeriod", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemQuestion", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oemtilde", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemOpenBrackets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemPipe", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemCloseBrackets", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemQuotes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Oem102", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemBackslash", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.ProcessKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Packet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Attn", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Crsel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Exsel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.EraseEof", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Play", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Zoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.NoName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Pa1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.OemClear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Shift", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "DocsId": "F:System.Windows.Forms.Keys.Alt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" } ], "DocsId": "T:System.Windows.Forms.Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/Keys.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.KeysConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L130C12-L130C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L130C12-L130C116" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L137C12-L137C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L137C12-L137C92" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.Compare(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L144C9-L144C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L144C9-L144C108" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L152C9-L209C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L152C9-L209C58" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L221C9-L232C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L221C9-L232C76" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L359C9-L372C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L359C9-L372C24" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L382C89-L382C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L382C89-L382C94" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L384C89-L384C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs#L384C89-L384C93" }, { "DocsId": "M:System.Windows.Forms.KeysConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs" } ], "DocsId": "T:System.Windows.Forms.KeysConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/KeysConverter.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MouseButtons.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.Middle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.XButton1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "DocsId": "F:System.Windows.Forms.MouseButtons.XButton2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" } ], "DocsId": "T:System.Windows.Forms.MouseButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseButtons.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L15C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L15C5-L22C6" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L39C34-L39C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L39C34-L39C38" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.Clicks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L44C25-L44C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L44C25-L44C29" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L49C20-L49C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L49C20-L49C24" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L54C20-L54C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L54C20-L54C24" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.Delta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L59C24-L59C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L59C24-L59C28" }, { "DocsId": "P:System.Windows.Forms.MouseEventArgs.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L64C30-L64C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs#L64C30-L64C39" } ], "DocsId": "T:System.Windows.Forms.MouseEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MouseEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MouseEventHandler.Invoke(System.Object,System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MouseEventHandler.BeginInvoke(System.Object,System.Windows.Forms.MouseEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MouseEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.MouseEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/MouseEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PreviewKeyDownEventArgs.#ctor(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L20C27-L20C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L20C27-L20C31" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.Alt", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L22C24-L22C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L22C24-L22C56" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.Control", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L27C28-L27C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L27C28-L27C68" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L37C13-L43C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L37C13-L43C33" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L51C28-L51C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L51C28-L51C57" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.Modifiers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L58C30-L58C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L58C30-L58C54" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.Shift", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L63C26-L63C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L63C26-L63C62" }, { "DocsId": "P:System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L65C30-L65C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs#L65C30-L65C34" } ], "DocsId": "T:System.Windows.Forms.PreviewKeyDownEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PreviewKeyDownEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PreviewKeyDownEventHandler.Invoke(System.Object,System.Windows.Forms.PreviewKeyDownEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PreviewKeyDownEventHandler.BeginInvoke(System.Object,System.Windows.Forms.PreviewKeyDownEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PreviewKeyDownEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.PreviewKeyDownEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Input/PreviewKeyDownEventHandler.cs" + }, + { + "Members": [ + { + "DocsId": "M:System.Windows.Forms.ISupportSuspendPainting.BeginSuspendPainting", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ISupportSuspendPainting.cs" + }, + { + "DocsId": "M:System.Windows.Forms.ISupportSuspendPainting.EndSuspendPainting", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ISupportSuspendPainting.cs" + } + ], + "DocsId": "T:System.Windows.Forms.ISupportSuspendPainting", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ISupportSuspendPainting.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.ItemChangedEventArgs.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventArgs.cs#L13C24-L13C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventArgs.cs#L13C24-L13C28" } ], "DocsId": "T:System.Windows.Forms.ItemChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemChangedEventHandler.Invoke(System.Object,System.Windows.Forms.ItemChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ItemChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ItemChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemCheckedEventArgs.#ctor(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs#L11C5-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs#L11C5-L14C6" }, { "DocsId": "P:System.Windows.Forms.ItemCheckedEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs#L19C32-L19C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs#L19C32-L19C36" } ], "DocsId": "T:System.Windows.Forms.ItemCheckedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemCheckedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckedEventHandler.Invoke(System.Object,System.Windows.Forms.ItemCheckedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ItemCheckedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ItemCheckedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemCheckEventArgs.#ctor(System.Int32,System.Windows.Forms.CheckState,System.Windows.Forms.CheckState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L11C5-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L11C5-L16C6" }, { "DocsId": "P:System.Windows.Forms.ItemCheckEventArgs.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L21C24-L21C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L21C24-L21C28" }, { "DocsId": "P:System.Windows.Forms.ItemCheckEventArgs.NewValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L26C34-L26C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L26C34-L26C38" }, { "DocsId": "P:System.Windows.Forms.ItemCheckEventArgs.CurrentValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L31C38-L31C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs#L31C38-L31C42" } ], "DocsId": "T:System.Windows.Forms.ItemCheckEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemCheckEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckEventHandler.Invoke(System.Object,System.Windows.Forms.ItemCheckEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ItemCheckEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemCheckEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ItemCheckEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ItemCheckEventHandler.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.IWin32Window.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWin32window.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWin32window.cs" } ], "DocsId": "T:System.Windows.Forms.IWin32Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWin32window.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWin32window.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IWindowTarget.OnHandleChange(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" }, { "DocsId": "M:System.Windows.Forms.IWindowTarget.OnMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" } ], "DocsId": "T:System.Windows.Forms.IWindowTarget", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/IWindowTarget.cs" + }, + { + "Members": [ + { + "DocsId": "F:System.Windows.Forms.LayoutSuspendTraversal.value__", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/LayoutSuspendTraversal.cs" + }, + { + "DocsId": "F:System.Windows.Forms.LayoutSuspendTraversal.None", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/LayoutSuspendTraversal.cs" + }, + { + "DocsId": "F:System.Windows.Forms.LayoutSuspendTraversal.TargetOnly", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/LayoutSuspendTraversal.cs" + }, + { + "DocsId": "F:System.Windows.Forms.LayoutSuspendTraversal.TargetAndDescendants", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/LayoutSuspendTraversal.cs" + } + ], + "DocsId": "T:System.Windows.Forms.LayoutSuspendTraversal", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/LayoutSuspendTraversal.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AnchorStyles.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "DocsId": "F:System.Windows.Forms.AnchorStyles.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "DocsId": "F:System.Windows.Forms.AnchorStyles.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "DocsId": "F:System.Windows.Forms.AnchorStyles.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "DocsId": "F:System.Windows.Forms.AnchorStyles.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "DocsId": "F:System.Windows.Forms.AnchorStyles.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" } ], "DocsId": "T:System.Windows.Forms.AnchorStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AnchorStyles.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ArrangeDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeDirection.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeDirection.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeDirection.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeDirection.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" } ], "DocsId": "T:System.Windows.Forms.ArrangeDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeDirection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "DocsId": "F:System.Windows.Forms.ArrangeStartingPosition.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" } ], "DocsId": "T:System.Windows.Forms.ArrangeStartingPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangeStartingPosition.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AutoSizeMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoSizeMode.GrowAndShrink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoSizeMode.GrowOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" } ], "DocsId": "T:System.Windows.Forms.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/AutoSizeMode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AutoScaleMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoScaleMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoScaleMode.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoScaleMode.Dpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" }, { "DocsId": "F:System.Windows.Forms.AutoScaleMode.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" } ], "DocsId": "T:System.Windows.Forms.AutoScaleMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/AutoScaleMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ContainerControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L31C5-L94C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L31C5-L94C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.System#Windows#Forms#IContainerControl#ActivateControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L386C9-L386C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L386C9-L386C59" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.AdjustFormScrollbars(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L453C9-L459C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L453C9-L459C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L593C9-L602C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L593C9-L602C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnAutoValidateChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L775C66-L775C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L775C66-L775C103" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnCreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L836C9-L844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L836C9-L844C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnFontChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L856C9-L879C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L856C9-L879C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L886C9-L888C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L886C9-L888C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnMove(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L903C9-L905C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L903C9-L905C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnParentChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L916C9-L918C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L916C9-L918C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L922C9-L924C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L922C9-L924C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.PerformAutoScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L931C39-L931C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L931C39-L931C99" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ScaleMinMaxSize(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1150C7-L1150C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1150C7-L1150C8" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ProcessDialogChar(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1177C9-L1182C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1177C9-L1182C49" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1187C9-L1213C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1187C9-L1213C47" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1218C9-L1234C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1218C9-L1234C22" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ProcessMnemonic(System.Char)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1239C9-L1308C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1239C9-L1308C26" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ProcessTabKey(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1316C9-L1316C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1316C9-L1316C105" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.RescaleConstantsForDpi(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1347C9-L1365C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1347C9-L1365C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1429C9-L1444C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1429C9-L1444C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.UpdateDefaultButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1528C5-L1528C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1528C5-L1528C6" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.Validate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1776C31-L1776C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1776C31-L1776C65" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.Validate(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1785C9-L1785C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1785C9-L1785C59" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ValidateChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1844C47-L1844C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1844C47-L1844C97" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.ValidateChildren(System.Windows.Forms.ValidationConstraints)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1854C9-L1859C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L1854C9-L1859C67" }, { "DocsId": "M:System.Windows.Forms.ContainerControl.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L2024C9-L2033C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L2024C9-L2033C6" }, { "DocsId": "E:System.Windows.Forms.ContainerControl.AutoValidateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L240C16-L240C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L240C16-L240C45" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.AutoScaleDimensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L111C16-L111C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L111C16-L111C36" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.AutoScaleFactor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L137C13-L144C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L137C13-L144C44" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.AutoScaleMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L169C16-L169C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L169C16-L169C30" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.AutoValidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L210C13-L215C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L210C13-L215C52" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L253C13-L265C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L253C13-L265C23" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.CanEnableIme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L274C45-L274C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L274C45-L274C50" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.ActiveControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L285C16-L285C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L285C16-L285C30" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L293C13-L295C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L293C13-L295C23" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.CurrentAutoScaleDimensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L310C13-L315C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L310C13-L315C48" }, { "DocsId": "P:System.Windows.Forms.ContainerControl.ParentForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L367C13-L377C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs#L367C13-L377C31" } ], "DocsId": "T:System.Windows.Forms.ContainerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ContainerControl.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FixedPanel.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" }, { "DocsId": "F:System.Windows.Forms.FixedPanel.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" }, { "DocsId": "F:System.Windows.Forms.FixedPanel.Panel1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" }, { "DocsId": "F:System.Windows.Forms.FixedPanel.Panel2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" } ], "DocsId": "T:System.Windows.Forms.FixedPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/FixedPanel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IContainerControl.ActivateControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" }, { "DocsId": "P:System.Windows.Forms.IContainerControl.ActiveControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" } ], "DocsId": "T:System.Windows.Forms.IContainerControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/IContainerControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitContainer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L33C5-L108C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L33C5-L108C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.BeginInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L848C9-L849C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L848C9-L849C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.EndInit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L857C9-L874C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L857C9-L874C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L921C9-L923C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L921C9-L923C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnKeyDown(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L931C9-L1000C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L931C9-L1000C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnKeyUp(System.Windows.Forms.KeyEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1007C9-L1035C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1007C9-L1035C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1042C9-L1050C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1042C9-L1050C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1057C9-L1059C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1057C9-L1059C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMouseMove(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1064C9-L1112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1064C9-L1112C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMouseLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1119C9-L1126C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1119C9-L1126C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1133C9-L1166C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1133C9-L1166C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMouseUp(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1173C9-L1196C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1173C9-L1196C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMove(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1204C9-L1206C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1204C9-L1206C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1213C9-L1218C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1213C9-L1218C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnSplitterMoving(System.Windows.Forms.SplitterCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1227C9-L1228C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1227C9-L1228C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1237C9-L1238C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1237C9-L1238C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1243C9-L1248C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1243C9-L1248C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1413C12-L1413C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1413C12-L1413C52" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1755C13-L1782C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1764C13-L1791C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.Select(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1788C9-L1820C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L1797C9-L1829C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2064C9-L2084C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2073C9-L2093C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2299C9-L2332C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2308C9-L2341C47" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.ProcessTabKey(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2342C9-L2384C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2351C9-L2393C29" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.OnMouseCaptureChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2391C9-L2397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2400C9-L2406C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2401C9-L2419C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2410C9-L2428C6" }, { "DocsId": "M:System.Windows.Forms.SplitContainer.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2424C9-L2424C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L2433C9-L2433C106" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L191C16-L191C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L191C16-L191C45" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.ControlAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L286C16-L286C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L286C16-L286C42" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.ControlRemoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L294C16-L294C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L294C16-L294C44" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L513C16-L513C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L513C16-L513C44" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L880C16-L880C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L880C16-L880C52" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L888C16-L888C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L888C16-L888C58" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.SplitterMoving", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L896C16-L896C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L896C16-L896C55" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.SplitterMoved", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L904C16-L904C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L904C16-L904C54" }, { "DocsId": "E:System.Windows.Forms.SplitContainer.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L912C16-L912C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L912C16-L912C41" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L126C13-L126C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L126C13-L126C26" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoScrollOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L136C16-L136C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L136C16-L136C37" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L148C16-L148C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L148C16-L148C38" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L160C16-L160C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L160C16-L160C37" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoScrollPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L171C16-L171C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L171C16-L171C39" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L183C16-L183C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L183C16-L183C29" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L199C16-L199C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L199C16-L199C36" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L207C16-L207C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L207C16-L207C42" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.BindingContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L220C13-L220C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L220C13-L220C43" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L239C16-L239C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L239C16-L239C28" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L279C16-L279C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L279C16-L279C29" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L306C16-L306C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L306C16-L306C25" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L328C13-L328C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L328C13-L328C39" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.FixedPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L343C13-L343C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L343C13-L343C32" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.IsSplitterFixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L384C35-L384C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L384C35-L384C39" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L420C15-L420C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L420C15-L420C35" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L479C35-L479C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L479C35-L479C39" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L505C16-L505C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L505C16-L505C28" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel1Collapsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L527C13-L527C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L527C13-L527C37" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel2Collapsed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L553C13-L553C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L553C13-L553C37" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel1MinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L581C13-L581C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L581C13-L581C35" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L600C35-L600C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L600C35-L600C39" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Panel2MinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L614C13-L614C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L614C13-L614C35" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.SplitterDistance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L638C13-L638C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L638C13-L638C35" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.SplitterIncrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L746C13-L746C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L746C13-L746C33" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.SplitterRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L766C13-L769C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L766C13-L769C22" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.SplitterWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L784C13-L784C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L784C13-L784C35" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L821C16-L821C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L821C16-L821C24" }, { "DocsId": "P:System.Windows.Forms.SplitContainer.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L838C16-L838C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs#L838C16-L838C25" } ], "DocsId": "T:System.Windows.Forms.SplitContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitContainer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitterCancelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L17C98-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L17C98-L23C6" }, { "DocsId": "P:System.Windows.Forms.SplitterCancelEventArgs.MouseCursorX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L28C31-L28C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L28C31-L28C35" }, { "DocsId": "P:System.Windows.Forms.SplitterCancelEventArgs.MouseCursorY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L33C31-L33C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L33C31-L33C35" }, { "DocsId": "P:System.Windows.Forms.SplitterCancelEventArgs.SplitX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L38C25-L38C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L38C25-L38C29" }, { "DocsId": "P:System.Windows.Forms.SplitterCancelEventArgs.SplitY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L43C25-L43C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs#L43C25-L43C29" } ], "DocsId": "T:System.Windows.Forms.SplitterCancelEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitterCancelEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterCancelEventHandler.Invoke(System.Object,System.Windows.Forms.SplitterCancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterCancelEventHandler.BeginInvoke(System.Object,System.Windows.Forms.SplitterCancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.SplitterCancelEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.SplitterCancelEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/SplitterCancelEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ValidationConstraints.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.Selectable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "DocsId": "F:System.Windows.Forms.ValidationConstraints.ImmediateChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" } ], "DocsId": "T:System.Windows.Forms.ValidationConstraints", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Containers/ValidationConstraints.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DockingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L12C5-L12C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L12C5-L12C73" }, { "DocsId": "M:System.Windows.Forms.DockingAttribute.#ctor(System.Windows.Forms.DockingBehavior)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L14C5-L14C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L14C5-L14C98" }, { "DocsId": "M:System.Windows.Forms.DockingAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L22C9-L27C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L22C9-L27C90" }, { "DocsId": "M:System.Windows.Forms.DockingAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L30C42-L30C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L30C42-L30C71" }, { "DocsId": "M:System.Windows.Forms.DockingAttribute.IsDefaultAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L32C50-L32C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L32C50-L32C65" }, { "DocsId": "F:System.Windows.Forms.DockingAttribute.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs" }, { "DocsId": "P:System.Windows.Forms.DockingAttribute.DockingBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs#L18C46-L18C50" } ], "DocsId": "T:System.Windows.Forms.DockingAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DockingBehavior.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.DockingBehavior.Never", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.DockingBehavior.Ask", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" }, { "DocsId": "F:System.Windows.Forms.DockingBehavior.AutoDock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" } ], "DocsId": "T:System.Windows.Forms.DockingBehavior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockingBehavior.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DockStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "DocsId": "F:System.Windows.Forms.DockStyle.Fill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" } ], "DocsId": "T:System.Windows.Forms.DockStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/DockStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.HorizontalAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.HorizontalAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.HorizontalAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.HorizontalAlignment.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.HorizontalAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/HorizontalAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ImageLayout.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "DocsId": "F:System.Windows.Forms.ImageLayout.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "DocsId": "F:System.Windows.Forms.ImageLayout.Tile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "DocsId": "F:System.Windows.Forms.ImageLayout.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "DocsId": "F:System.Windows.Forms.ImageLayout.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "DocsId": "F:System.Windows.Forms.ImageLayout.Zoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" } ], "DocsId": "T:System.Windows.Forms.ImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ImageLayout.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LayoutEventArgs.#ctor(System.ComponentModel.IComponent,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L12C5-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L12C5-L16C6" }, { "DocsId": "M:System.Windows.Forms.LayoutEventArgs.#ctor(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L19C11-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L19C11-L21C6" }, { "DocsId": "P:System.Windows.Forms.LayoutEventArgs.AffectedComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L27C13-L29C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L27C13-L29C27" }, { "DocsId": "P:System.Windows.Forms.LayoutEventArgs.AffectedControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L33C40-L33C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L33C40-L33C68" }, { "DocsId": "P:System.Windows.Forms.LayoutEventArgs.AffectedProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L35C39-L35C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs#L35C39-L35C43" } ], "DocsId": "T:System.Windows.Forms.LayoutEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LayoutEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LayoutEventHandler.Invoke(System.Object,System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LayoutEventHandler.BeginInvoke(System.Object,System.Windows.Forms.LayoutEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.LayoutEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.LayoutEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LayoutSettings.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs#L10C5-L12C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs#L10C5-L12C6" }, { "DocsId": "P:System.Windows.Forms.LayoutSettings.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs#L19C50-L19C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs#L19C50-L19C54" } ], "DocsId": "T:System.Windows.Forms.LayoutSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutSettings.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.LeftRightAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.LeftRightAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.LeftRightAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.LeftRightAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LeftRightAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MeasureItemEventArgs.#ctor(System.Drawing.Graphics,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L15C11-L17C6" }, { "DocsId": "M:System.Windows.Forms.MeasureItemEventArgs.#ctor(System.Drawing.Graphics,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L19C5-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L19C5-L25C6" }, { "DocsId": "P:System.Windows.Forms.MeasureItemEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L30C32-L30C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L30C32-L30C36" }, { "DocsId": "P:System.Windows.Forms.MeasureItemEventArgs.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L35C24-L35C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L35C24-L35C28" }, { "DocsId": "P:System.Windows.Forms.MeasureItemEventArgs.ItemHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L41C29-L41C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L41C29-L41C33" }, { "DocsId": "P:System.Windows.Forms.MeasureItemEventArgs.ItemWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L47C28-L47C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs#L47C28-L47C32" } ], "DocsId": "T:System.Windows.Forms.MeasureItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MeasureItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MeasureItemEventHandler.Invoke(System.Object,System.Windows.Forms.MeasureItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MeasureItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.MeasureItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.MeasureItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.MeasureItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/MeasureItemEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Orientation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" }, { "DocsId": "F:System.Windows.Forms.Orientation.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" }, { "DocsId": "F:System.Windows.Forms.Orientation.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" } ], "DocsId": "T:System.Windows.Forms.Orientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/Orientation.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.RightToLeft.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" }, { "DocsId": "F:System.Windows.Forms.RightToLeft.No", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" }, { "DocsId": "F:System.Windows.Forms.RightToLeft.Yes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" }, { "DocsId": "F:System.Windows.Forms.RightToLeft.Inherit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" } ], "DocsId": "T:System.Windows.Forms.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/RightToLeft.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SizeType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" }, { "DocsId": "F:System.Windows.Forms.SizeType.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" }, { "DocsId": "F:System.Windows.Forms.SizeType.Absolute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" }, { "DocsId": "F:System.Windows.Forms.SizeType.Percent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" } ], "DocsId": "T:System.Windows.Forms.SizeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/SizeType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TextImageRelation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "DocsId": "F:System.Windows.Forms.TextImageRelation.Overlay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "DocsId": "F:System.Windows.Forms.TextImageRelation.ImageBeforeText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "DocsId": "F:System.Windows.Forms.TextImageRelation.TextBeforeImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "DocsId": "F:System.Windows.Forms.TextImageRelation.ImageAboveText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "DocsId": "F:System.Windows.Forms.TextImageRelation.TextAboveImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" } ], "DocsId": "T:System.Windows.Forms.TextImageRelation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/TextImageRelation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MdiClient.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L24C5-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L24C5-L34C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L131C9-L131C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L131C9-L131C44" }, { "DocsId": "M:System.Windows.Forms.MdiClient.LayoutMdi(System.Windows.Forms.MdiLayout)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L140C9-L160C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L140C9-L160C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L168C9-L175C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L168C9-L175C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L187C9-L201C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L187C9-L201C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L212C9-L214C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L212C9-L214C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L218C9-L271C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L218C9-L271C6" }, { "DocsId": "M:System.Windows.Forms.MdiClient.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L326C9-L366C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L326C9-L366C6" }, { "DocsId": "P:System.Windows.Forms.MdiClient.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L45C13-L51C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L45C13-L51C27" }, { "DocsId": "P:System.Windows.Forms.MdiClient.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L62C13-L73C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L62C13-L73C47" }, { "DocsId": "P:System.Windows.Forms.MdiClient.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L82C13-L113C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L82C13-L113C23" }, { "DocsId": "P:System.Windows.Forms.MdiClient.MdiChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L125C13-L125C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs#L125C13-L125C35" }, { "DocsId": "T:System.Windows.Forms.MdiClient.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs" } ], "DocsId": "T:System.Windows.Forms.MdiClient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MdiLayout.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" }, { "DocsId": "F:System.Windows.Forms.MdiLayout.Cascade", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" }, { "DocsId": "F:System.Windows.Forms.MdiLayout.TileHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" }, { "DocsId": "F:System.Windows.Forms.MdiLayout.TileVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" }, { "DocsId": "F:System.Windows.Forms.MdiLayout.ArrangeIcons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" } ], "DocsId": "T:System.Windows.Forms.MdiLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDILayout.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MethodInvoker.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" }, { "DocsId": "M:System.Windows.Forms.MethodInvoker.Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" }, { "DocsId": "M:System.Windows.Forms.MethodInvoker.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" }, { "DocsId": "M:System.Windows.Forms.MethodInvoker.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" } ], "DocsId": "T:System.Windows.Forms.MethodInvoker", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MethodInvoker.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NativeWindow.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L43C5-L68C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L43C5-L68C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L80C9-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L80C9-L81C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L155C34-L155C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L155C34-L155C38" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.AssignHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L292C48-L292C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L292C48-L292C96" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.CreateHandle(System.Windows.Forms.CreateParams)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L398C5-L491C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L398C5-L491C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.DefWndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L499C9-L522C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L499C9-L522C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.DestroyHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L528C5-L549C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L528C5-L549C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L555C12-L555C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L555C12-L555C75" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.OnHandleChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L585C5-L585C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L585C5-L585C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.OnThreadException(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L641C5-L641C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L641C5-L641C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.ReleaseHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L648C9-L649C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L648C9-L649C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L896C9-L910C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L896C9-L910C6" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.WmDpiChangedAfterParent(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L913C7-L913C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L913C7-L913C8" }, { "DocsId": "M:System.Windows.Forms.NativeWindow.WmDpiChangedBeforeParent(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L916C7-L916C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L916C7-L916C8" }, { "DocsId": "P:System.Windows.Forms.NativeWindow.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L151C29-L151C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L151C29-L151C33" }, { "DocsId": "P:System.Windows.Forms.NativeWindow.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L155C34-L155C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs#L155C34-L155C38" } ], "DocsId": "T:System.Windows.Forms.NativeWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NativeWindow.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NavigateEventArgs.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs#L8C5-L11C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs#L8C5-L11C6" }, { "DocsId": "P:System.Windows.Forms.NavigateEventArgs.Forward", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs#L13C27-L13C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs#L13C27-L13C31" } ], "DocsId": "T:System.Windows.Forms.NavigateEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NavigateEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NavigateEventHandler.Invoke(System.Object,System.Windows.Forms.NavigateEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NavigateEventHandler.BeginInvoke(System.Object,System.Windows.Forms.NavigateEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.NavigateEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.NavigateEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NavigateEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.NotifyIcon.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L34C5-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L34C5-L62C6" }, { "DocsId": "M:System.Windows.Forms.NotifyIcon.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L67C47-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L67C47-L72C6" }, { "DocsId": "M:System.Windows.Forms.NotifyIcon.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L388C9-L412C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L388C9-L412C6" }, { "DocsId": "M:System.Windows.Forms.NotifyIcon.ShowBalloonTip(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L524C9-L525C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L524C9-L525C6" }, { "DocsId": "M:System.Windows.Forms.NotifyIcon.ShowBalloonTip(System.Int32,System.String,System.String,System.Windows.Forms.ToolTipIcon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L547C9-L599C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L547C9-L599C6" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.BalloonTipClicked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L152C16-L152C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L152C16-L152C66" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.BalloonTipClosed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L164C16-L164C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L164C16-L164C65" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.BalloonTipShown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L176C16-L176C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L176C16-L176C64" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L304C16-L304C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L304C16-L304C54" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L315C16-L315C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L315C16-L315C60" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L326C16-L326C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L326C16-L326C59" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L337C16-L337C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L337C16-L337C65" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L349C16-L349C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L349C16-L349C58" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L361C16-L361C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L361C16-L361C58" }, { "DocsId": "E:System.Windows.Forms.NotifyIcon.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L374C16-L374C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L374C16-L374C56" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.BalloonTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L87C13-L87C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L87C13-L87C36" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.BalloonTipIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L109C13-L109C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L109C13-L109C36" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.BalloonTipTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L134C13-L134C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L134C13-L134C37" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L187C13-L187C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L187C13-L187C38" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L208C13-L208C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L208C13-L208C26" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L234C13-L234C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L234C13-L234C26" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L267C13-L267C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L267C13-L267C29" }, { "DocsId": "P:System.Windows.Forms.NotifyIcon.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L289C13-L289C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs#L289C13-L289C30" } ], "DocsId": "T:System.Windows.Forms.NotifyIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/NotifyIcon.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Clipboard.SetDataObject(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L23C54-L23C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L23C54-L23C86" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetDataObject(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L30C9-L30C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L30C9-L30C67" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetDataObject(System.Object,System.Boolean,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L43C9-L53C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L43C9-L53C6" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetDataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L60C9-L67C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L60C9-L67C27" }, { "DocsId": "M:System.Windows.Forms.Clipboard.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L75C9-L80C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L75C9-L80C6" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L85C43-L85C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L85C43-L85C82" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L92C9-L92C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L92C9-L92C87" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L101C50-L101C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L101C50-L101C103" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L107C43-L107C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L107C43-L107C94" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L112C42-L112C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L112C42-L112C82" }, { "DocsId": "M:System.Windows.Forms.Clipboard.ContainsText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L120C9-L127C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L120C9-L127C78" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetAudioStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L133C47-L133C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L133C47-L133C105" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L147C9-L147C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L147C9-L147C87" }, { "DocsId": "M:System.Windows.Forms.Clipboard.TryGetData``1(System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L310C9-L319C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L310C9-L319C86" }, { "DocsId": "M:System.Windows.Forms.Clipboard.TryGetData``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L344C9-L352C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L344C9-L352C56" }, { "DocsId": "M:System.Windows.Forms.Clipboard.TryGetData``1(``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L357C66-L357C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L357C66-L357C107" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L364C9-L371C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L364C9-L371C23" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L380C40-L380C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L380C40-L380C90" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L385C39-L385C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L385C39-L385C74" }, { "DocsId": "M:System.Windows.Forms.Clipboard.GetText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L393C9-L395C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L393C9-L395C115" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetAudio(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L417C55-L417C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L417C55-L417C109" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetAudio(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L423C9-L423C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L423C9-L423C106" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetData(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L435C9-L440C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L435C9-L440C6" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetDataAsJson``1(System.String,``0)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L445C9-L451C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L445C9-L451C6" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetFileDropList(System.Collections.Specialized.StringCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L457C9-L457C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L457C9-L457C49" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L463C9-L463C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L463C9-L463C116" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L468C48-L468C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L468C48-L468C89" }, { "DocsId": "M:System.Windows.Forms.Clipboard.SetText(System.String,System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L476C9-L479C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs#L476C9-L479C6" } ], "DocsId": "T:System.Windows.Forms.Clipboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/Clipboard.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataFormats.GetFormat(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs#L128C9-L129C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs#L128C9-L129C55" }, { "DocsId": "M:System.Windows.Forms.DataFormats.GetFormat(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs#L135C47-L135C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs#L135C47-L135C81" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.UnicodeText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Dib", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Bitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.EnhancedMetafile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.MetafilePict", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.SymbolicLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Dif", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Tiff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.OemText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Palette", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.PenData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Riff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.WaveAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.FileDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Locale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Html", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Rtf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.CommaSeparatedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.StringFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "F:System.Windows.Forms.DataFormats.Serializable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "DocsId": "T:System.Windows.Forms.DataFormats.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs" } ], "DocsId": "T:System.Windows.Forms.DataFormats", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataObject.System#Private#Windows#Ole#IDataObjectInternal#Create", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L33C80-L33C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L33C80-L33C85" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Private#Windows#Ole#IDataObjectInternal#Create(Windows.Win32.System.Com.IDataObject*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L34C107-L34C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L34C107-L34C122" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Private#Windows#Ole#IDataObjectInternal#Create(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L35C91-L35C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L35C91-L35C100" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Private#Windows#Ole#IDataObjectInternal#Wrap(System.Windows.Forms.IDataObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L38C9-L38C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L38C9-L38C36" }, { "DocsId": "M:System.Windows.Forms.DataObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L56C5-L56C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L56C5-L56C61" }, { "DocsId": "M:System.Windows.Forms.DataObject.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L70C5-L70C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L70C5-L70C101" }, { "DocsId": "M:System.Windows.Forms.DataObject.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L76C53-L76C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L76C53-L76C100" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Private#Windows#Ole#IDataObjectInternal#TryUnwrapUserDataObject(System.Windows.Forms.IDataObject@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L82C9-L82C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L82C9-L82C48" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetDataAsJson``1(System.String,``0)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L100C9-L100C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L100C9-L100C62" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetDataAsJson``1(``0)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L105C9-L105C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L105C9-L105C54" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetData(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L113C72-L113C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L113C72-L113C111" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L120C54-L120C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L120C54-L120C88" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetData(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L127C52-L127C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L127C52-L127C101" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetDataPresent(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L129C76-L129C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L129C76-L129C122" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetDataPresent(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L131C58-L131C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L131C58-L131C99" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetDataPresent(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L133C56-L133C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L133C56-L133C110" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetFormats(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L135C61-L135C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L135C61-L135C95" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetFormats", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L137C45-L137C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L137C45-L137C74" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetData(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L140C9-L140C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L140C9-L140C54" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetData(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L142C65-L142C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L142C65-L142C97" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetData(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L144C63-L144C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L144C63-L144C95" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetData(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L146C50-L146C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L146C50-L146C74" }, { "DocsId": "M:System.Windows.Forms.DataObject.TryGetData``1(System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L158C9-L161C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L158C9-L161C76" }, { "DocsId": "M:System.Windows.Forms.DataObject.TryGetData``1(System.String,System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L168C13-L168C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L168C13-L168C78" }, { "DocsId": "M:System.Windows.Forms.DataObject.TryGetData``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L173C13-L173C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L173C13-L173C84" }, { "DocsId": "M:System.Windows.Forms.DataObject.TryGetData``1(``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L177C13-L177C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L177C13-L177C97" }, { "DocsId": "M:System.Windows.Forms.DataObject.TryGetDataCore``1(System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L191C9-L193C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L191C9-L193C77" }, { "DocsId": "M:System.Windows.Forms.DataObject.ContainsAudio", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L195C44-L195C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L195C44-L195C105" }, { "DocsId": "M:System.Windows.Forms.DataObject.ContainsFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L197C51-L197C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L197C51-L197C110" }, { "DocsId": "M:System.Windows.Forms.DataObject.ContainsImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L199C44-L199C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L199C44-L199C101" }, { "DocsId": "M:System.Windows.Forms.DataObject.ContainsText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L201C43-L201C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L201C43-L201C83" }, { "DocsId": "M:System.Windows.Forms.DataObject.ContainsText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L206C9-L207C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L206C9-L207C81" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetAudioStream", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L211C48-L211C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L211C48-L211C108" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetFileDropList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L215C9-L221C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L215C9-L221C25" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L225C9-L225C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L225C9-L225C98" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetText(System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L230C9-L231C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L230C9-L231C111" }, { "DocsId": "M:System.Windows.Forms.DataObject.GetText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L235C40-L235C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L235C40-L235C75" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetAudio(System.Byte[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L237C56-L237C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L237C56-L237C110" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetAudio(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L240C9-L240C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L240C9-L240C92" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetFileDropList(System.Collections.Specialized.StringCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L244C9-L247C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L244C9-L247C6" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L249C50-L249C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L249C50-L249C110" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetText(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L251C53-L251C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L251C53-L251C98" }, { "DocsId": "M:System.Windows.Forms.DataObject.SetText(System.String,System.Windows.Forms.TextDataFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L255C9-L261C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L255C9-L261C6" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L292C9-L292C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L292C9-L292C78" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#DUnadvise(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L294C62-L294C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L294C62-L294C96" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#EnumDAdvise(System.Runtime.InteropServices.ComTypes.IEnumSTATDATA@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L297C9-L297C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L297C9-L297C47" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L300C9-L300C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L300C9-L300C46" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetCanonicalFormatEtc(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.FORMATETC@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L303C9-L303C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L303C9-L303C78" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L306C9-L306C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L306C9-L306C54" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetDataHere(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L309C9-L309C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L309C9-L309C58" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#QueryGetData(System.Runtime.InteropServices.ComTypes.FORMATETC@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L312C9-L312C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L312C9-L312C47" }, { "DocsId": "M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L315C9-L315C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L315C9-L315C68" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#DAdvise(Windows.Win32.System.Com.FORMATETC*,System.UInt32,Windows.Win32.System.Com.IAdviseSink*,System.UInt32*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L322C9-L322C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L322C9-L322C70" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#DUnadvise(System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L325C9-L325C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L325C9-L325C43" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#EnumDAdvise(Windows.Win32.System.Com.IEnumSTATDATA**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L328C9-L328C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L328C9-L328C45" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#EnumFormatEtc(System.UInt32,Windows.Win32.System.Com.IEnumFORMATETC**)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L331C9-L331C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L331C9-L331C63" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#GetData(Windows.Win32.System.Com.FORMATETC*,Windows.Win32.System.Com.STGMEDIUM*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L334C9-L334C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L334C9-L334C50" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#GetDataHere(Windows.Win32.System.Com.FORMATETC*,Windows.Win32.System.Com.STGMEDIUM*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L337C9-L337C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L337C9-L337C52" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#QueryGetData(Windows.Win32.System.Com.FORMATETC*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L340C9-L340C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L340C9-L340C44" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#GetCanonicalFormatEtc(Windows.Win32.System.Com.FORMATETC*,Windows.Win32.System.Com.FORMATETC*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L343C9-L343C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L343C9-L343C70" }, { "DocsId": "M:System.Windows.Forms.DataObject.Windows#Win32#System#Com#IDataObject#Interface#SetData(Windows.Win32.System.Com.FORMATETC*,Windows.Win32.System.Com.STGMEDIUM*,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L346C9-L346C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs#L346C9-L346C58" } ], "DocsId": "T:System.Windows.Forms.DataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataObjectExtensions.TryGetData``1(System.Windows.Forms.IDataObject,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L31C13-L31C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L31C13-L31C71" }, { "DocsId": "M:System.Windows.Forms.DataObjectExtensions.TryGetData``1(System.Windows.Forms.IDataObject,System.String,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L40C13-L40C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L40C13-L40C79" }, { "DocsId": "M:System.Windows.Forms.DataObjectExtensions.TryGetData``1(System.Windows.Forms.IDataObject,System.String,System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L50C13-L50C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L50C13-L50C92" }, { "DocsId": "M:System.Windows.Forms.DataObjectExtensions.TryGetData``1(System.Windows.Forms.IDataObject,System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L62C13-L62C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs#L62C13-L62C102" } ], "DocsId": "T:System.Windows.Forms.DataObjectExtensions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataObjectExtensions.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DragAction.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" }, { "DocsId": "F:System.Windows.Forms.DragAction.Continue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" }, { "DocsId": "F:System.Windows.Forms.DragAction.Drop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" }, { "DocsId": "F:System.Windows.Forms.DragAction.Cancel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" } ], "DocsId": "T:System.Windows.Forms.DragAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragAction.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DragDropEffects.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.Move", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "DocsId": "F:System.Windows.Forms.DragDropEffects.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" } ], "DocsId": "T:System.Windows.Forms.DragDropEffects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragDropEffects.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DragEventArgs.#ctor(System.Windows.Forms.IDataObject,System.Int32,System.Int32,System.Int32,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DragDropEffects)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L25C11-L27C6" }, { "DocsId": "M:System.Windows.Forms.DragEventArgs.#ctor(System.Windows.Forms.IDataObject,System.Int32,System.Int32,System.Int32,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DropImageType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L32C5-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L32C5-L52C6" }, { "DocsId": "M:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#get_DataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L60C53-L60C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L60C53-L60C82" }, { "DocsId": "M:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#get_Effect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L84C37-L84C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L84C37-L84C55" }, { "DocsId": "M:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#get_DropImageType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L91C47-L91C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L91C47-L91C75" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.Data", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L58C32-L58C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L58C32-L58C36" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#DataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L60C53-L60C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L60C53-L60C82" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.KeyState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L65C27-L65C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L65C27-L65C31" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.X", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L68C20-L68C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L68C20-L68C24" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.Y", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L71C20-L71C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L71C20-L71C24" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.AllowedEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L77C44-L77C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L77C44-L77C48" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.Effect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L82C37-L82C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L82C37-L82C41" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#Effect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L84C37-L84C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L84C37-L84C55" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.DropImageType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L89C42-L89C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L89C42-L89C46" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.System#Private#Windows#Ole#IDragEvent#DropImageType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L91C47-L91C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L91C47-L91C75" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.Message", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L102C30-L102C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L102C30-L102C34" }, { "DocsId": "P:System.Windows.Forms.DragEventArgs.MessageReplacementToken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L113C46-L113C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs#L113C46-L113C50" } ], "DocsId": "T:System.Windows.Forms.DragEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DragEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DragEventHandler.Invoke(System.Object,System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DragEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DragEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DragEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DragEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DragEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DropImageType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Copy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Move", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Label", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "DocsId": "F:System.Windows.Forms.DropImageType.NoImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" } ], "DocsId": "T:System.Windows.Forms.DropImageType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DropImageType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IAsyncDropTarget.OnAsyncDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IAsyncDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IAsyncDropTarget.cs" } ], "DocsId": "T:System.Windows.Forms.IAsyncDropTarget", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IAsyncDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IAsyncDropTarget.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDataObject.GetData(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetData(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetData(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetDataPresent(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetDataPresent(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetDataPresent(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetFormats(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.GetFormats", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.SetData(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.SetData(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.SetData(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.IDataObject.SetData(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" } ], "DocsId": "T:System.Windows.Forms.IDataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDataObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.IDropTarget.OnDragEnter(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" }, { "DocsId": "M:System.Windows.Forms.IDropTarget.OnDragLeave(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" }, { "DocsId": "M:System.Windows.Forms.IDropTarget.OnDragDrop(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" }, { "DocsId": "M:System.Windows.Forms.IDropTarget.OnDragOver(System.Windows.Forms.DragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" } ], "DocsId": "T:System.Windows.Forms.IDropTarget", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/IDropTarget.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemDragEventArgs.#ctor(System.Windows.Forms.MouseButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L12C11-L14C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L12C11-L14C6" }, { "DocsId": "M:System.Windows.Forms.ItemDragEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L16C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L16C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.ItemDragEventArgs.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L22C34-L22C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L22C34-L22C38" }, { "DocsId": "P:System.Windows.Forms.ItemDragEventArgs.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs#L24C27-L24C31" } ], "DocsId": "T:System.Windows.Forms.ItemDragEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ItemDragEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemDragEventHandler.Invoke(System.Object,System.Windows.Forms.ItemDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemDragEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ItemDragEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ItemDragEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ItemDragEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ItemDragEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ITypedDataObject.TryGetData``1(``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.ITypedDataObject.TryGetData``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.ITypedDataObject.TryGetData``1(System.String,System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" }, { "DocsId": "M:System.Windows.Forms.ITypedDataObject.TryGetData``1(System.String,System.Func{System.Reflection.Metadata.TypeName,System.Type},System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" } ], "DocsId": "T:System.Windows.Forms.ITypedDataObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/ITypedDataObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QueryContinueDragEventArgs.#ctor(System.Int32,System.Boolean,System.Windows.Forms.DragAction)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L14C5-L19C6" }, { "DocsId": "P:System.Windows.Forms.QueryContinueDragEventArgs.KeyState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L24C27-L24C31" }, { "DocsId": "P:System.Windows.Forms.QueryContinueDragEventArgs.EscapePressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L29C33-L29C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L29C33-L29C37" }, { "DocsId": "P:System.Windows.Forms.QueryContinueDragEventArgs.Action", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L34C32-L34C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs#L34C32-L34C36" } ], "DocsId": "T:System.Windows.Forms.QueryContinueDragEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.QueryContinueDragEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryContinueDragEventHandler.Invoke(System.Object,System.Windows.Forms.QueryContinueDragEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryContinueDragEventHandler.BeginInvoke(System.Object,System.Windows.Forms.QueryContinueDragEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.QueryContinueDragEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.QueryContinueDragEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/QueryContinueDragEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TextDataFormat.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "DocsId": "F:System.Windows.Forms.TextDataFormat.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "DocsId": "F:System.Windows.Forms.TextDataFormat.UnicodeText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "DocsId": "F:System.Windows.Forms.TextDataFormat.Rtf", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "DocsId": "F:System.Windows.Forms.TextDataFormat.Html", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "DocsId": "F:System.Windows.Forms.TextDataFormat.CommaSeparatedValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" } ], "DocsId": "T:System.Windows.Forms.TextDataFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/TextDataFormat.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.OSFeature.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L27C5-L29C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L27C5-L29C6" }, { "DocsId": "M:System.Windows.Forms.OSFeature.GetVersionPresent(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L43C9-L48C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L43C9-L48C21" }, { "DocsId": "M:System.Windows.Forms.OSFeature.IsPresent(System.Windows.Forms.SystemParameter)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L54C62-L67C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L54C62-L67C19" }, { "DocsId": "F:System.Windows.Forms.OSFeature.LayeredWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" }, { "DocsId": "F:System.Windows.Forms.OSFeature.Themes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" }, { "DocsId": "P:System.Windows.Forms.OSFeature.Feature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L35C40-L35C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs#L35C40-L35C69" } ], "DocsId": "T:System.Windows.Forms.OSFeature", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OSFeature.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.OwnerDrawPropertyBag.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L18C5-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L18C5-L35C6" }, { "DocsId": "M:System.Windows.Forms.OwnerDrawPropertyBag.IsEmpty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L64C38-L64C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L64C38-L64C92" }, { "DocsId": "M:System.Windows.Forms.OwnerDrawPropertyBag.Copy(System.Windows.Forms.OwnerDrawPropertyBag)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L70C5-L84C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L70C5-L84C6" }, { "DocsId": "M:System.Windows.Forms.OwnerDrawPropertyBag.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L88C9-L91C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L88C9-L91C6" }, { "DocsId": "P:System.Windows.Forms.OwnerDrawPropertyBag.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L41C25-L41C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L41C25-L41C29" }, { "DocsId": "P:System.Windows.Forms.OwnerDrawPropertyBag.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L43C30-L43C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L43C30-L43C34" }, { "DocsId": "P:System.Windows.Forms.OwnerDrawPropertyBag.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L45C30-L45C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs#L45C30-L45C34" } ], "DocsId": "T:System.Windows.Forms.OwnerDrawPropertyBag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OwnerDrawPropertyBag.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.FlowDirection.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.FlowDirection.LeftToRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.FlowDirection.TopDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.FlowDirection.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" }, { "DocsId": "F:System.Windows.Forms.FlowDirection.BottomUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" } ], "DocsId": "T:System.Windows.Forms.FlowDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowDirection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FlowLayoutPanel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L18C5-L21C6" }, { "DocsId": "M:System.Windows.Forms.FlowLayoutPanel.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L53C53-L53C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L53C53-L53C101" }, { "DocsId": "M:System.Windows.Forms.FlowLayoutPanel.GetFlowBreak(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L59C9-L61C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L59C9-L61C58" }, { "DocsId": "M:System.Windows.Forms.FlowLayoutPanel.SetFlowBreak(System.Windows.Forms.Control,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L67C9-L70C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L67C9-L70C6" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutPanel.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L23C50-L23C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L23C50-L23C69" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutPanel.FlowDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L31C16-L31C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L31C16-L31C49" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutPanel.WrapContents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L45C16-L45C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs#L45C16-L45C48" } ], "DocsId": "T:System.Windows.Forms.FlowLayoutPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutPanel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.FlowLayoutSettings.SetFlowBreak(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L47C9-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L47C9-L54C6" }, { "DocsId": "M:System.Windows.Forms.FlowLayoutSettings.GetFlowBreak(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L58C9-L61C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L58C9-L61C55" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutSettings.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L17C50-L17C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L17C50-L17C69" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutSettings.FlowDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L24C16-L24C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L24C16-L24C51" }, { "DocsId": "P:System.Windows.Forms.FlowLayoutSettings.WrapContents", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L37C16-L37C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs#L37C16-L37C50" } ], "DocsId": "T:System.Windows.Forms.FlowLayoutSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/FlowLayoutSettings.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Panel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L26C22-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L26C22-L33C6" }, { "DocsId": "M:System.Windows.Forms.Panel.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L216C9-L222C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L216C9-L222C6" }, { "DocsId": "M:System.Windows.Forms.Panel.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L238C9-L238C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L238C9-L238C88" }, { "DocsId": "M:System.Windows.Forms.Panel.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L249C11-L249C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L249C11-L249C42" }, { "DocsId": "E:System.Windows.Forms.Panel.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L53C16-L53C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L53C16-L53C45" }, { "DocsId": "E:System.Windows.Forms.Panel.KeyUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L161C16-L161C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L161C16-L161C35" }, { "DocsId": "E:System.Windows.Forms.Panel.KeyDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L169C16-L169C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L169C16-L169C37" }, { "DocsId": "E:System.Windows.Forms.Panel.KeyPress", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L177C16-L177C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L177C16-L177C38" }, { "DocsId": "E:System.Windows.Forms.Panel.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L204C16-L204C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L204C16-L204C41" }, { "DocsId": "P:System.Windows.Forms.Panel.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L43C16-L43C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L43C16-L43C29" }, { "DocsId": "P:System.Windows.Forms.Panel.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L67C16-L67C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L67C16-L67C33" }, { "DocsId": "P:System.Windows.Forms.Panel.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L100C16-L100C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L100C16-L100C28" }, { "DocsId": "P:System.Windows.Forms.Panel.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L122C13-L137C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L122C13-L137C23" }, { "DocsId": "P:System.Windows.Forms.Panel.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L145C44-L145C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L145C44-L145C57" }, { "DocsId": "P:System.Windows.Forms.Panel.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L186C16-L186C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L186C16-L186C28" }, { "DocsId": "P:System.Windows.Forms.Panel.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L196C16-L196C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs#L196C16-L196C25" } ], "DocsId": "T:System.Windows.Forms.Panel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/Panel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SplitterPanel.#ctor(System.Windows.Forms.SplitContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L14C50-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L14C50-L18C6" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L43C16-L43C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L43C16-L43C45" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.VisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L294C16-L294C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L294C16-L294C44" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L306C16-L306C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L306C16-L306C41" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L318C16-L318C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L318C16-L318C45" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.TabIndexChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L330C16-L330C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L330C16-L330C45" }, { "DocsId": "E:System.Windows.Forms.SplitterPanel.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L342C16-L342C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L342C16-L342C44" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L31C16-L31C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L31C16-L31C29" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L57C16-L57C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L57C16-L57C37" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L69C16-L69C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L69C16-L69C27" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L82C16-L82C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L82C16-L82C32" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L100C16-L100C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L100C16-L100C25" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.DockPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L112C16-L112C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L112C16-L112C32" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L125C16-L125C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L125C16-L125C43" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L143C16-L143C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L143C16-L143C29" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L153C49-L153C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L153C49-L153C64" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L163C16-L163C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L163C16-L163C32" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L175C16-L175C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L175C16-L175C32" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L190C16-L190C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L190C16-L190C25" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L211C16-L211C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L211C16-L211C27" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L223C16-L223C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L223C16-L223C50" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.TabIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L235C16-L235C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L235C16-L235C29" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L249C16-L249C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L249C16-L249C28" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L262C16-L262C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L262C16-L262C28" }, { "DocsId": "P:System.Windows.Forms.SplitterPanel.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L276C16-L276C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs#L276C16-L276C42" } ], "DocsId": "T:System.Windows.Forms.SplitterPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/SplitterPanel.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ColumnStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L8C5-L10C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L8C5-L10C6" }, { "DocsId": "M:System.Windows.Forms.ColumnStyle.#ctor(System.Windows.Forms.SizeType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L12C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L12C5-L15C6" }, { "DocsId": "M:System.Windows.Forms.ColumnStyle.#ctor(System.Windows.Forms.SizeType,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L17C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.ColumnStyle.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L25C16-L25C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs#L25C16-L25C20" } ], "DocsId": "T:System.Windows.Forms.ColumnStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/ColumnStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RowStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L8C5-L10C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L8C5-L10C6" }, { "DocsId": "M:System.Windows.Forms.RowStyle.#ctor(System.Windows.Forms.SizeType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L12C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L12C5-L15C6" }, { "DocsId": "M:System.Windows.Forms.RowStyle.#ctor(System.Windows.Forms.SizeType,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L17C5-L21C6" }, { "DocsId": "P:System.Windows.Forms.RowStyle.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L25C16-L25C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs#L25C16-L25C20" } ], "DocsId": "T:System.Windows.Forms.RowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/RowStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutCellPaintEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L20C11-L25C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L20C11-L25C6" }, { "DocsId": "P:System.Windows.Forms.TableLayoutCellPaintEventArgs.CellBounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L40C35-L40C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L40C35-L40C39" }, { "DocsId": "P:System.Windows.Forms.TableLayoutCellPaintEventArgs.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L42C25-L42C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L42C25-L42C29" }, { "DocsId": "P:System.Windows.Forms.TableLayoutCellPaintEventArgs.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L44C22-L44C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs#L44C22-L44C26" } ], "DocsId": "T:System.Windows.Forms.TableLayoutCellPaintEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutCellPaintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TableLayoutCellPaintEventHandler.Invoke(System.Object,System.Windows.Forms.TableLayoutCellPaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TableLayoutCellPaintEventHandler.BeginInvoke(System.Object,System.Windows.Forms.TableLayoutCellPaintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.TableLayoutCellPaintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.TableLayoutCellPaintEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutCellPaintEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutColumnStyleCollection.Add(System.Windows.Forms.ColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L19C48-L19C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L19C48-L19C78" }, { "DocsId": "M:System.Windows.Forms.TableLayoutColumnStyleCollection.Insert(System.Int32,System.Windows.Forms.ColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L21C63-L21C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L21C63-L21C103" }, { "DocsId": "M:System.Windows.Forms.TableLayoutColumnStyleCollection.Remove(System.Windows.Forms.ColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L29C52-L29C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L29C52-L29C85" }, { "DocsId": "M:System.Windows.Forms.TableLayoutColumnStyleCollection.Contains(System.Windows.Forms.ColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L31C54-L31C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L31C54-L31C89" }, { "DocsId": "M:System.Windows.Forms.TableLayoutColumnStyleCollection.IndexOf(System.Windows.Forms.ColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L33C52-L33C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L33C52-L33C86" }, { "DocsId": "P:System.Windows.Forms.TableLayoutColumnStyleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L25C16-L25C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs#L25C16-L25C50" } ], "DocsId": "T:System.Windows.Forms.TableLayoutColumnStyleCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutColumnStyleCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutControlCollection.#ctor(System.Windows.Forms.TableLayoutPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L16C71-L19C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L16C71-L19C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutControlCollection.Add(System.Windows.Forms.Control,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L31C9-L34C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L31C9-L34C6" }, { "DocsId": "P:System.Windows.Forms.TableLayoutControlCollection.Container", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L24C41-L24C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs#L24C41-L24C45" } ], "DocsId": "T:System.Windows.Forms.TableLayoutControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L27C5-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L27C5-L30C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.CreateControlsInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L167C70-L167C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L167C70-L167C108" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L177C9-L177C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L177C9-L177C57" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetColumnSpan(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L184C9-L184C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L184C9-L184C52" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.SetColumnSpan(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L189C9-L191C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L189C9-L191C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetRowSpan(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L197C47-L197C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L197C47-L197C87" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.SetRowSpan(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L202C9-L204C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L202C9-L204C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetRow(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L212C43-L212C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L212C43-L212C79" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.SetRow(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L217C9-L219C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L217C9-L219C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetCellPosition(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L228C9-L228C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L228C9-L228C54" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.SetCellPosition(System.Windows.Forms.Control,System.Windows.Forms.TableLayoutPanelCellPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L232C9-L232C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L232C9-L232C64" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetColumn(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L240C46-L240C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L240C46-L240C85" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.SetColumn(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L245C9-L247C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L245C9-L247C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetControlFromPosition(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L253C9-L253C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L253C9-L253C75" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetPositionFromControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L256C9-L256C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L256C9-L256C61" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetColumnWidths", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L265C9-L277C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L265C9-L277C19" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.GetRowHeights", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L287C9-L299C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L287C9-L299C19" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L321C9-L323C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L321C9-L323C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.OnCellPaint(System.Windows.Forms.TableLayoutCellPaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L327C9-L328C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L327C9-L328C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L332C9-L482C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L332C9-L482C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L487C9-L489C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L487C9-L489C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanel.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L496C9-L498C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L496C9-L498C6" }, { "DocsId": "E:System.Windows.Forms.TableLayoutPanel.CellPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L310C16-L310C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L310C16-L310C58" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L32C50-L32C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L32C50-L32C70" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.LayoutSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L39C16-L39C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L39C16-L39C36" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L65C16-L65C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L65C16-L65C32" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.CellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L79C15-L79C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L79C15-L79C59" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.Controls", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L100C57-L100C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L100C57-L100C100" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.ColumnCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L113C16-L113C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L113C16-L113C48" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.GrowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L131C16-L131C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L131C16-L131C46" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L146C16-L146C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L146C16-L146C45" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.RowStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L156C55-L156C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L156C55-L156C85" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanel.ColumnStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L164C61-L164C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs#L164C61-L164C94" } ], "DocsId": "T:System.Windows.Forms.TableLayoutPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanel.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Outset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetPartial", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.TableLayoutPanelCellBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellBorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L13C9-L18C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L13C9-L18C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L26C9-L31C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L26C9-L31C42" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Windows.Forms.TableLayoutPanelCellPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L35C12-L35C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L35C12-L35C54" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.op_Equality(System.Windows.Forms.TableLayoutPanelCellPosition,System.Windows.Forms.TableLayoutPanelCellPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L39C9-L39C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L39C9-L39C59" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.op_Inequality(System.Windows.Forms.TableLayoutPanelCellPosition,System.Windows.Forms.TableLayoutPanelCellPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L44C9-L44C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L44C9-L44C28" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L47C51-L47C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L47C51-L47C68" }, { "DocsId": "M:System.Windows.Forms.TableLayoutPanelCellPosition.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L49C51-L49C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L49C51-L49C80" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanelCellPosition.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L20C22-L20C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L20C22-L20C26" }, { "DocsId": "P:System.Windows.Forms.TableLayoutPanelCellPosition.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L22C25-L22C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs#L22C25-L22C29" } ], "DocsId": "T:System.Windows.Forms.TableLayoutPanelCellPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelCellPosition.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TableLayoutPanelGrowStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" }, { "DocsId": "F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddColumns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" } ], "DocsId": "T:System.Windows.Forms.TableLayoutPanelGrowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutPanelGrowStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutRowStyleCollection.Add(System.Windows.Forms.RowStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L19C42-L19C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L19C42-L19C69" }, { "DocsId": "M:System.Windows.Forms.TableLayoutRowStyleCollection.Insert(System.Int32,System.Windows.Forms.RowStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L21C57-L21C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L21C57-L21C94" }, { "DocsId": "M:System.Windows.Forms.TableLayoutRowStyleCollection.Remove(System.Windows.Forms.RowStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L29C46-L29C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L29C46-L29C76" }, { "DocsId": "M:System.Windows.Forms.TableLayoutRowStyleCollection.Contains(System.Windows.Forms.RowStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L31C48-L31C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L31C48-L31C80" }, { "DocsId": "M:System.Windows.Forms.TableLayoutRowStyleCollection.IndexOf(System.Windows.Forms.RowStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L33C46-L33C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L33C46-L33C77" }, { "DocsId": "P:System.Windows.Forms.TableLayoutRowStyleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L25C16-L25C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs#L25C16-L25C47" } ], "DocsId": "T:System.Windows.Forms.TableLayoutRowStyleCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutRowStyleCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.GetColumnSpan(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L236C9-L245C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L236C9-L245C66" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.SetColumnSpan(System.Object,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L251C9-L270C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L251C9-L270C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.GetRowSpan(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L274C9-L283C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L274C9-L283C63" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.SetRowSpan(System.Object,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L289C9-L308C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L289C9-L308C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.GetRow(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L318C9-L328C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L318C9-L328C43" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.SetRow(System.Object,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L339C9-L343C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L339C9-L343C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.GetCellPosition(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L353C9-L355C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L353C9-L355C86" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.SetCellPosition(System.Object,System.Windows.Forms.TableLayoutPanelCellPosition)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L366C9-L369C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L366C9-L369C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.GetColumn(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L379C9-L389C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L379C9-L389C46" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.SetColumn(System.Object,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L400C9-L411C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L400C9-L411C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutSettings.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L470C9-L487C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L470C9-L487C6" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L58C50-L58C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L58C50-L58C70" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.ColumnCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L97C13-L98C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L97C13-L98C45" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.RowCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L123C13-L124C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L123C13-L124C42" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.RowStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L144C13-L151C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L144C13-L151C48" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.ColumnStyles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L163C13-L170C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L163C13-L170C51" }, { "DocsId": "P:System.Windows.Forms.TableLayoutSettings.GrowStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L185C16-L185C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs#L185C16-L185C62" } ], "DocsId": "T:System.Windows.Forms.TableLayoutSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettings.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutStyle.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyle.SizeType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs#L20C15-L20C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs#L20C15-L20C32" } ], "DocsId": "T:System.Windows.Forms.TableLayoutStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L26C37-L26C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L26C37-L26C66" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.Add(System.Windows.Forms.TableLayoutStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L30C9-L40C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L30C9-L40C22" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L45C9-L55C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L45C9-L55C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L59C16-L59C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L59C16-L59C33" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L62C13-L72C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L62C13-L72C10" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L83C9-L100C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L83C9-L100C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L104C44-L111C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L104C44-L111C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L115C9-L119C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L115C9-L119C6" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L121C43-L121C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L121C43-L121C78" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L123C41-L123C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L123C41-L123C75" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L125C31-L125C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L125C31-L125C62" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L127C30-L127C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L127C30-L127C60" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L129C61-L129C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L129C61-L129C112" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L133C40-L133C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L133C40-L133C80" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L135C36-L135C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L135C36-L135C70" }, { "DocsId": "M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L137C48-L137C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L137C48-L137C74" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L59C16-L59C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L59C16-L59C33" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L77C16-L77C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L77C16-L77C55" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L125C31-L125C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L125C31-L125C62" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L127C30-L127C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L127C30-L127C60" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L131C25-L131C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L131C25-L131C41" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L133C40-L133C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L133C40-L133C80" }, { "DocsId": "P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L135C36-L135C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs#L135C36-L135C70" } ], "DocsId": "T:System.Windows.Forms.TableLayoutStyleCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutStyleCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.PowerLineStatus.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" }, { "DocsId": "F:System.Windows.Forms.PowerLineStatus.Offline", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" }, { "DocsId": "F:System.Windows.Forms.PowerLineStatus.Online", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" }, { "DocsId": "F:System.Windows.Forms.PowerLineStatus.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" } ], "DocsId": "T:System.Windows.Forms.PowerLineStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerLineStatus.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.PowerState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" }, { "DocsId": "F:System.Windows.Forms.PowerState.Suspend", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" }, { "DocsId": "F:System.Windows.Forms.PowerState.Hibernate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" } ], "DocsId": "T:System.Windows.Forms.PowerState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerState.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.PowerStatus.PowerLineStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L20C13-L21C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L20C13-L21C69" }, { "DocsId": "P:System.Windows.Forms.PowerStatus.BatteryChargeStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L29C13-L30C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L29C13-L30C72" }, { "DocsId": "P:System.Windows.Forms.PowerStatus.BatteryFullLifetime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L38C13-L39C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L38C13-L39C64" }, { "DocsId": "P:System.Windows.Forms.PowerStatus.BatteryLifePercent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L47C13-L49C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L47C13-L49C56" }, { "DocsId": "P:System.Windows.Forms.PowerStatus.BatteryLifeRemaining", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L57C13-L58C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs#L57C13-L58C60" } ], "DocsId": "T:System.Windows.Forms.PowerStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PowerStatus.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.PreProcessControlState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" }, { "DocsId": "F:System.Windows.Forms.PreProcessControlState.MessageProcessed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" }, { "DocsId": "F:System.Windows.Forms.PreProcessControlState.MessageNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" }, { "DocsId": "F:System.Windows.Forms.PreProcessControlState.MessageNotNeeded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" } ], "DocsId": "T:System.Windows.Forms.PreProcessControlState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PreProcessControlState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PageSetupDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L29C5-L29C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L29C5-L29C40" }, { "DocsId": "M:System.Windows.Forms.PageSetupDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L211C9-L221C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L211C9-L221C6" }, { "DocsId": "M:System.Windows.Forms.PageSetupDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L266C9-L348C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L266C9-L349C6" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.AllowMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L37C32-L37C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L37C32-L37C36" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.AllowOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L46C36-L46C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L46C36-L46C40" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.AllowPaper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L55C30-L55C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L55C30-L55C34" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.AllowPrinter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L63C32-L63C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L63C32-L63C36" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L73C16-L73C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L73C16-L73C30" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.EnableMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L93C32-L93C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L93C32-L93C36" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.MinMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L103C16-L103C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L103C16-L103C27" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.PageSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L117C16-L117C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L117C16-L117C29" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.PrinterSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L135C16-L135C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L135C16-L135C32" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L149C28-L149C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L149C28-L149C32" }, { "DocsId": "P:System.Windows.Forms.PageSetupDialog.ShowNetwork", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L157C31-L157C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs#L157C31-L157C35" } ], "DocsId": "T:System.Windows.Forms.PageSetupDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PageSetupDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.#ctor(System.Drawing.Printing.PrintController)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L18C11-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L18C11-L20C6" }, { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.#ctor(System.Drawing.Printing.PrintController,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L22C5-L26C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L22C5-L26C6" }, { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L35C9-L61C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L35C9-L61C6" }, { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L68C9-L78C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L68C9-L78C23" }, { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L86C9-L95C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L86C9-L95C6" }, { "DocsId": "M:System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L102C9-L111C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L102C9-L111C6" }, { "DocsId": "P:System.Windows.Forms.PrintControllerWithStatusDialog.IsPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L28C39-L28C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs#L28C39-L28C80" } ], "DocsId": "T:System.Windows.Forms.PrintControllerWithStatusDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintControllerWithStatusDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PrintDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L33C5-L33C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L33C5-L33C36" }, { "DocsId": "M:System.Windows.Forms.PrintDialog.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L208C9-L217C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L208C9-L217C6" }, { "DocsId": "M:System.Windows.Forms.PrintDialog.RunDialog(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L220C9-L220C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L220C9-L220C92" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.AllowCurrentPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L40C36-L40C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L40C36-L40C40" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.AllowSomePages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L48C34-L48C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L48C34-L48C38" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.AllowPrintToFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L56C36-L56C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L56C36-L56C40" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.AllowSelection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L64C34-L64C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L64C34-L64C38" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L75C16-L75C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L75C16-L75C30" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.PrinterSettings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L98C16-L98C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L98C16-L98C58" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.PrintToFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L115C31-L115C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L115C31-L115C35" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L123C28-L123C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L123C28-L123C32" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.ShowNetwork", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L131C31-L131C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L131C31-L131C35" }, { "DocsId": "P:System.Windows.Forms.PrintDialog.UseEXDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L145C31-L145C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs#L145C31-L145C35" } ], "DocsId": "T:System.Windows.Forms.PrintDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L31C5-L91C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L31C5-L93C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnStartPageChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L242C9-L246C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L244C9-L248C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.ResetBackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L293C46-L293C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L295C46-L295C83" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.ResetForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L298C46-L298C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L302C9-L304C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L305C12-L305C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L311C12-L311C57" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L309C9-L316C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L315C9-L322C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L320C9-L326C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L326C9-L332C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnGotFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L330C9-L332C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L336C9-L338C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnLostFocus(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L336C9-L338C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L342C9-L344C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L340C68-L340C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L346C68-L346C114" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.OnPaint(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L344C9-L377C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L350C9-L383C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.InvalidatePreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L549C9-L558C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L555C9-L564C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewControl.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L1077C9-L1086C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L1083C9-L1092C6" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewControl.StartPageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L236C16-L236C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L238C16-L238C65" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewControl.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L280C16-L280C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L282C16-L282C41" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L101C9-L101C13" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L103C9-L103C13" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.AutoZoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L113C16-L113C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L115C16-L115C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.Zoom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L132C16-L132C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L134C16-L134C21" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L154C16-L154C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L156C16-L156C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.Rows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L170C16-L170C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L172C16-L172C21" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.Columns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L188C16-L188C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L190C16-L190C24" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.StartPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L208C13-L216C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L210C13-L218C26" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L257C16-L257C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L259C16-L259C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L272C16-L272C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L274C16-L274C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewControl.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L288C16-L288C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs#L290C16-L290C28" } ], "DocsId": "T:System.Windows.Forms.PrintPreviewControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PrintPreviewDialog.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L51C5-L59C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L51C5-L59C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewDialog.OnClosing(System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L987C9-L990C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L987C9-L990C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewDialog.CreateHandle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L997C9-L1003C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L997C9-L1003C6" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewDialog.ProcessDialogKey(System.Windows.Forms.Keys)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L1007C9-L1040C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L1007C9-L1040C47" }, { "DocsId": "M:System.Windows.Forms.PrintPreviewDialog.ProcessTabKey(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L1045C9-L1051C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L1045C9-L1051C22" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L100C16-L100C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L100C16-L100C45" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.AutoValidateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L116C16-L116C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L116C16-L116C49" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L132C16-L132C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L132C16-L132C46" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.ContextMenuStripChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L164C16-L164C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L164C16-L164C53" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.MaximumSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L220C16-L220C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L220C16-L220C48" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.MarginChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L244C16-L244C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L244C16-L244C43" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.MinimumSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L261C16-L261C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L261C16-L261C48" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.PaddingChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L277C16-L277C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L277C16-L277C44" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.SizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L293C16-L293C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L293C16-L293C41" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.CausesValidationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L373C16-L373C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L373C16-L373C53" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.EnabledChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L395C16-L395C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L395C16-L395C44" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.LocationChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L412C16-L412C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L412C16-L412C45" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.CursorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L445C16-L445C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L445C16-L445C43" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L461C16-L461C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L461C16-L461C52" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L477C16-L477C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L477C16-L477C58" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L493C16-L493C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L493C16-L493C44" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.VisibleChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L533C16-L533C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L533C16-L533C44" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L549C16-L549C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L549C16-L549C46" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L573C16-L573C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L573C16-L573C48" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.RightToLeftLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L581C16-L581C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L581C16-L581C54" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.TabStopChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L597C16-L597C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L597C16-L597C44" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L614C16-L614C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L614C16-L614C41" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.DockChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L630C16-L630C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L630C16-L630C41" }, { "DocsId": "E:System.Windows.Forms.PrintPreviewDialog.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L647C16-L647C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L647C16-L647C41" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AcceptButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L65C16-L65C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L65C16-L65C33" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoScale", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L74C16-L74C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L74C16-L74C30" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L83C16-L83C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L83C16-L83C31" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L92C16-L92C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L92C16-L92C29" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoValidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L108C16-L108C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L108C16-L108C33" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L124C16-L124C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L124C16-L124C30" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.CancelButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L140C16-L140C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L140C16-L140C33" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.ControlBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L148C16-L148C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L148C16-L148C31" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L156C16-L156C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L156C16-L156C37" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.FormBorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L172C16-L172C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L172C16-L172C36" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.HelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L180C16-L180C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L180C16-L180C31" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L188C16-L188C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L188C16-L188C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.IsMdiContainer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L196C16-L196C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L196C16-L196C35" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.KeyPreview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L204C16-L204C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L204C16-L204C31" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.MaximumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L212C16-L212C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L212C16-L212C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.MaximizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L228C16-L228C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L228C16-L228C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Margin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L236C16-L236C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L236C16-L236C27" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.MinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L253C16-L253C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L253C16-L253C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Padding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L269C16-L269C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L269C16-L269C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L285C16-L285C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L285C16-L285C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.StartPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L301C16-L301C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L301C16-L301C34" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.TopMost", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L309C16-L309C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L309C16-L309C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.TransparencyKey", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L317C16-L317C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L317C16-L317C36" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.UseWaitCursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L325C16-L325C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L325C16-L325C34" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.WindowState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L333C16-L333C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L333C16-L333C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AccessibleRole", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L341C16-L341C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L341C16-L341C35" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AccessibleDescription", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L349C16-L349C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L349C16-L349C42" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AccessibleName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L357C16-L357C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L357C16-L357C35" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.CausesValidation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L365C16-L365C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L365C16-L365C37" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.DataBindings", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L379C58-L379C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L379C58-L379C75" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.DefaultMinimumSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L381C51-L381C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L381C51-L381C64" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L387C16-L387C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L387C16-L387C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Location", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L404C16-L404C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L404C16-L404C29" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L420C16-L420C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L420C16-L420C24" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AllowDrop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L428C16-L428C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L428C16-L428C30" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Cursor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L437C16-L437C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L437C16-L437C27" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L453C16-L453C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L453C16-L453C36" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L469C16-L469C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L469C16-L469C42" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L485C16-L485C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L485C16-L485C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L501C16-L501C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L501C16-L501C37" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L509C16-L509C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L509C16-L509C38" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Anchor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L517C16-L517C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L517C16-L517C27" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L525C16-L525C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L525C16-L525C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L541C16-L541C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L541C16-L541C30" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L557C16-L557C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L557C16-L557C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L565C16-L565C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L565C16-L565C38" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L589C16-L589C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L589C16-L589C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L606C16-L606C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L606C16-L606C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Dock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L622C16-L622C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L622C16-L622C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L639C16-L639C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L639C16-L639C25" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.DockPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L653C48-L653C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L653C48-L653C64" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L660C16-L660C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L660C16-L660C48" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L670C16-L670C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L670C16-L670C38" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Document", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L686C16-L686C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L686C16-L686C40" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.MinimizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L695C16-L695C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L695C16-L695C32" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.PrintPreviewControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L705C55-L705C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L705C55-L705C70" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.Opacity", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L711C16-L711C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L711C16-L711C28" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L720C16-L720C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L720C16-L720C34" }, { "DocsId": "P:System.Windows.Forms.PrintPreviewDialog.SizeGripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L729C16-L729C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs#L729C16-L729C34" } ], "DocsId": "T:System.Windows.Forms.PrintPreviewDialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Printing/PrintPreviewDialog.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyValueChangedEventArgs.#ctor(System.Windows.Forms.GridItem,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L11C5-L15C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L11C5-L15C6" }, { "DocsId": "P:System.Windows.Forms.PropertyValueChangedEventArgs.ChangedItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L17C36-L17C40" }, { "DocsId": "P:System.Windows.Forms.PropertyValueChangedEventArgs.OldValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L19C31-L19C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs#L19C31-L19C35" } ], "DocsId": "T:System.Windows.Forms.PropertyValueChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyValueChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyValueChangedEventHandler.Invoke(System.Object,System.Windows.Forms.PropertyValueChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyValueChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.PropertyValueChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyValueChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.PropertyValueChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/PropertyValueChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Border3DSide.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.Middle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DSide.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" } ], "DocsId": "T:System.Windows.Forms.Border3DSide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DSide.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Border3DStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Adjust", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Bump", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Etched", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Raised", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.RaisedInner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.RaisedOuter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.Sunken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.SunkenInner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "DocsId": "F:System.Windows.Forms.Border3DStyle.SunkenOuter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" } ], "DocsId": "T:System.Windows.Forms.Border3DStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/Border3DStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.BorderStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.BorderStyle.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.BorderStyle.FixedSingle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" }, { "DocsId": "F:System.Windows.Forms.BorderStyle.Fixed3D", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" } ], "DocsId": "T:System.Windows.Forms.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/BorderStyle.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ControlPaint.CreateHBitmap16Bit(System.Drawing.Bitmap,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L175C9-L263C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L175C9-L263C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.CreateHBitmapTransparencyMask(System.Drawing.Bitmap)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L271C9-L320C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L271C9-L320C111" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.CreateHBitmapColorMask(System.Drawing.Bitmap,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L330C9-L352C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L330C9-L352C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L396C72-L396C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L396C72-L396C118" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L401C50-L401C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L401C50-L401C86" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DarkDark(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L406C54-L406C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L406C54-L406C90" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.ButtonBorderStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L555C9-L574C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L555C9-L574C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L587C9-L596C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L587C9-L596C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1009C12-L1013C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1009C12-L1013C93" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Border3DStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1019C12-L1023C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1019C12-L1023C93" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Border3DStyle,System.Windows.Forms.Border3DSide)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1030C12-L1030C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1030C12-L1030C109" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1036C12-L1040C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1036C12-L1040C93" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.Border3DStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1046C12-L1049C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1046C12-L1049C93" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.Border3DStyle,System.Windows.Forms.Border3DSide)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1057C9-L1080C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1057C9-L1080C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1212C12-L1212C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1212C12-L1212C100" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1219C9-L1226C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1219C9-L1226C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CaptionButton,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1235C31-L1239C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1235C31-L1239C19" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.CaptionButton,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1248C31-L1254C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1248C31-L1254C25" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1260C12-L1260C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1260C12-L1260C102" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1268C9-L1282C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1268C9-L1282C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1288C12-L1288C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1288C12-L1288C105" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1294C12-L1300C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1294C12-L1300C25" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawContainerGrabHandle(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1307C9-L1344C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1307C9-L1344C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1426C12-L1426C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1426C12-L1426C99" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1433C12-L1433C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1433C12-L1433C83" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawGrabHandle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1513C9-L1533C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1513C9-L1533C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawGrid(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Size,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1540C9-L1577C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1540C9-L1577C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawImageDisabled(System.Drawing.Graphics,System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1619C12-L1619C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1619C12-L1619C116" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawLockedFrame(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1710C9-L1721C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1710C9-L1721C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.MenuGlyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1727C12-L1727C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1727C12-L1727C103" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.MenuGlyph,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1738C29-L1743C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1738C29-L1743C23" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MenuGlyph)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1749C12-L1749C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1749C12-L1749C123" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MenuGlyph,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1760C29-L1766C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1760C29-L1766C23" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1772C12-L1772C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1772C12-L1772C107" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1776C9-L1783C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1776C9-L1783C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1789C12-L1789C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1789C12-L1789C105" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1796C9-L1803C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1796C9-L1803C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawReversibleFrame(System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.FrameStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1815C9-L1844C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1815C9-L1844C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawReversibleLine(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1851C9-L1865C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1851C9-L1865C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ScrollButton,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1871C12-L1871C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1871C12-L1871C114" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ScrollButton,System.Windows.Forms.ButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1883C9-L1921C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1883C9-L1921C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawSelectionFrame(System.Drawing.Graphics,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1934C9-L1942C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1934C9-L1942C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics,System.Drawing.Color,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1948C12-L1948C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1948C12-L1948C94" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics,System.Drawing.Color,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1955C9-L1970C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L1955C9-L1970C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Drawing.Color,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2012C9-L2031C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2012C9-L2031C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Color,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2044C9-L2051C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2044C9-L2051C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.DrawVisualStyleBorder(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2083C9-L2087C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2083C9-L2087C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.FillReversibleRectangle(System.Drawing.Rectangle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2097C9-L2114C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2097C9-L2114C6" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.Light(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2320C12-L2320C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2320C12-L2320C61" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.Light(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2325C51-L2325C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2325C51-L2325C88" }, { "DocsId": "M:System.Windows.Forms.ControlPaint.LightLight(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2330C56-L2330C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L2330C56-L2330C93" }, { "DocsId": "P:System.Windows.Forms.ControlPaint.ContrastControlDark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L168C12-L168C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs#L168C12-L168C96" } ], "DocsId": "T:System.Windows.Forms.ControlPaint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/ControlPaint.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DpiChangedEventArgs.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L31C42-L31C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L31C42-L31C85" }, { "DocsId": "P:System.Windows.Forms.DpiChangedEventArgs.DeviceDpiOld", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L25C31-L25C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L25C31-L25C35" }, { "DocsId": "P:System.Windows.Forms.DpiChangedEventArgs.DeviceDpiNew", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L27C31-L27C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L27C31-L27C35" }, { "DocsId": "P:System.Windows.Forms.DpiChangedEventArgs.SuggestedRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L29C43-L29C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs#L29C43-L29C47" } ], "DocsId": "T:System.Windows.Forms.DpiChangedEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DpiChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DpiChangedEventHandler.Invoke(System.Object,System.Windows.Forms.DpiChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DpiChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DpiChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DpiChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DpiChangedEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DpiChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L32C11-L33C8" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L32C11-L33C8" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L39C5-L54C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L39C5-L54C6" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.DrawBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L125C9-L127C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L125C9-L127C6" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.DrawFocusRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L134C9-L139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L134C9-L139C6" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L141C30-L141C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L141C30-L141C54" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L147C9-L148C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L147C9-L148C6" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IDeviceContext#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L161C39-L161C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L161C39-L161C72" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.Windows#Win32#Graphics#Gdi#IHdcContext#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L162C33-L162C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L162C33-L162C69" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IDeviceContext#ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L163C41-L163C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L163C41-L163C63" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.Windows#Win32#Graphics#Gdi#IHdcContext#ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L164C38-L164C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L164C38-L164C73" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IGraphicsHdcProvider#GetGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L165C73-L165C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L165C73-L165C107" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IGraphicsHdcProvider#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L166C42-L166C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L166C42-L166C57" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IGraphicsHdcProvider#get_IsGraphicsStateClean", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L167C55-L167C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L167C55-L167C74" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L85C33-L85C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L85C33-L85C48" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L90C25-L90C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L90C25-L90C29" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L95C32-L95C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L95C32-L95C52" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.Index", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L100C24-L100C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L100C24-L100C28" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L108C34-L108C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L108C34-L108C38" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L115C12-L115C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L115C12-L115C112" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L118C12-L118C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L118C12-L118C108" }, { "DocsId": "P:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IGraphicsHdcProvider#IsGraphicsStateClean", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L167C55-L167C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs#L167C55-L167C74" } ], "DocsId": "T:System.Windows.Forms.DrawItemEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawItemEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventHandler.Invoke(System.Object,System.Windows.Forms.DrawItemEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawItemEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawItemEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawItemEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DrawItemState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.ComboBoxEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Focus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Grayed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.HotLight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.NoAccelerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.NoFocusRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "DocsId": "F:System.Windows.Forms.DrawItemState.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" } ], "DocsId": "T:System.Windows.Forms.DrawItemState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawItemState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DrawMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.DrawMode.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.DrawMode.OwnerDrawFixed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" }, { "DocsId": "F:System.Windows.Forms.DrawMode.OwnerDrawVariable", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" } ], "DocsId": "T:System.Windows.Forms.DrawMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/DrawMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InvalidateEventArgs.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs#L17C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs#L17C5-L20C6" }, { "DocsId": "P:System.Windows.Forms.InvalidateEventArgs.InvalidRect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs#L26C36-L26C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs#L26C36-L26C40" } ], "DocsId": "T:System.Windows.Forms.InvalidateEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.InvalidateEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InvalidateEventHandler.Invoke(System.Object,System.Windows.Forms.InvalidateEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InvalidateEventHandler.BeginInvoke(System.Object,System.Windows.Forms.InvalidateEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.InvalidateEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.InvalidateEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/InvalidateEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PaintEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L37C68-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L37C68-L43C6" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L75C26-L75C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L75C26-L75C40" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L92C9-L94C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L92C9-L94C6" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L96C55-L96C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L96C55-L96C81" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.System#Drawing#IDeviceContext#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L134C39-L134C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L134C39-L134C72" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.Windows#Win32#Graphics#Gdi#IHdcContext#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L135C33-L135C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L135C33-L135C69" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.System#Drawing#IDeviceContext#ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L136C41-L136C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L136C41-L136C63" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.Windows#Win32#Graphics#Gdi#IHdcContext#ReleaseHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L137C38-L137C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L137C38-L137C73" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.System#Drawing#IGraphicsHdcProvider#GetGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L138C73-L138C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L138C73-L138C107" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.System#Drawing#IGraphicsHdcProvider#GetHdc", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L139C42-L139C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L139C42-L139C57" }, { "DocsId": "M:System.Windows.Forms.PaintEventArgs.System#Drawing#IGraphicsHdcProvider#get_IsGraphicsStateClean", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L140C55-L140C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L140C55-L140C74" }, { "DocsId": "P:System.Windows.Forms.PaintEventArgs.ClipRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L80C39-L80C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L80C39-L80C59" }, { "DocsId": "P:System.Windows.Forms.PaintEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L85C33-L85C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L85C33-L85C48" }, { "DocsId": "P:System.Windows.Forms.PaintEventArgs.System#Drawing#IGraphicsHdcProvider#IsGraphicsStateClean", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L140C55-L140C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs#L140C55-L140C74" } ], "DocsId": "T:System.Windows.Forms.PaintEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PaintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PaintEventHandler.Invoke(System.Object,System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PaintEventHandler.BeginInvoke(System.Object,System.Windows.Forms.PaintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PaintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.PaintEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/PaintEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.TextFormatFlags.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.EndEllipsis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.ExpandTabs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.ExternalLeading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.HidePrefix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.HorizontalCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Internal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.ModifyString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.NoClipping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.NoPrefix", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.NoFullWidthCharacterBreak", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.PathEllipsis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.PrefixOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.SingleLine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.TextBoxControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.VerticalCenter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.WordBreak", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.WordEllipsis", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.PreserveGraphicsClipping", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.PreserveGraphicsTranslateTransform", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.GlyphOverhangPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.NoPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "DocsId": "F:System.Windows.Forms.TextFormatFlags.LeftAndRightPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" } ], "DocsId": "T:System.Windows.Forms.TextFormatFlags", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextFormatFlags.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L26C12-L26C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L26C12-L26C72" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L38C12-L38C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L38C12-L38C72" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L47C12-L47C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L47C12-L47C70" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L66C12-L66C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L66C12-L66C70" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L75C12-L75C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L75C12-L75C79" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L98C12-L105C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L98C12-L105C38" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L115C12-L115C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L115C12-L115C77" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L140C12-L147C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L140C12-L147C38" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L150C12-L150C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L150C12-L150C76" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L167C12-L167C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L167C12-L167C76" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L176C12-L176C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L176C12-L176C74" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L196C12-L196C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L196C12-L196C74" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L205C12-L205C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L205C12-L205C83" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L228C12-L235C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L228C12-L235C38" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L245C12-L245C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L245C12-L245C81" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L270C12-L277C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L270C12-L277C38" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L382C12-L382C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L382C12-L382C52" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L402C12-L402C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L402C12-L402C52" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L405C12-L405C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L405C12-L405C57" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L419C12-L419C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L419C12-L419C57" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L422C12-L422C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L422C12-L422C64" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L440C12-L440C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L440C12-L440C83" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L443C12-L443C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L443C12-L443C56" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L457C12-L457C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L457C12-L457C56" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L460C12-L460C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L460C12-L460C61" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L476C12-L476C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L476C12-L476C61" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L484C12-L484C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L484C12-L484C68" }, { "DocsId": "M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L509C12-L509C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs#L509C12-L509C87" } ], "DocsId": "T:System.Windows.Forms.TextRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Rendering/TextRenderer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Screen.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L244C49-L244C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L244C49-L244C98" }, { "DocsId": "M:System.Windows.Forms.Screen.FromPoint(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L250C12-L252C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L250C12-L252C39" }, { "DocsId": "M:System.Windows.Forms.Screen.FromRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L258C12-L260C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L258C12-L260C48" }, { "DocsId": "M:System.Windows.Forms.Screen.FromControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L267C9-L269C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L267C9-L269C43" }, { "DocsId": "M:System.Windows.Forms.Screen.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L276C12-L278C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L276C12-L278C48" }, { "DocsId": "M:System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L283C57-L283C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L283C57-L283C82" }, { "DocsId": "M:System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L288C63-L288C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L288C63-L288C94" }, { "DocsId": "M:System.Windows.Forms.Screen.GetWorkingArea(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L293C60-L293C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L293C60-L293C88" }, { "DocsId": "M:System.Windows.Forms.Screen.GetBounds(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L298C52-L298C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L298C52-L298C72" }, { "DocsId": "M:System.Windows.Forms.Screen.GetBounds(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L303C58-L303C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L303C58-L303C84" }, { "DocsId": "M:System.Windows.Forms.Screen.GetBounds(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L308C55-L308C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L308C55-L308C78" }, { "DocsId": "M:System.Windows.Forms.Screen.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L313C42-L313C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L313C42-L313C64" }, { "DocsId": "M:System.Windows.Forms.Screen.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L345C12-L345C118" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L345C12-L345C118" }, { "DocsId": "P:System.Windows.Forms.Screen.AllScreens", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L104C13-L127C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L104C13-L127C30" }, { "DocsId": "P:System.Windows.Forms.Screen.BitsPerPixel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L134C32-L134C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L134C32-L134C41" }, { "DocsId": "P:System.Windows.Forms.Screen.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L139C32-L139C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L139C32-L139C39" }, { "DocsId": "P:System.Windows.Forms.Screen.DeviceName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L144C33-L144C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L144C33-L144C44" }, { "DocsId": "P:System.Windows.Forms.Screen.Primary", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L149C28-L149C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L149C28-L149C36" }, { "DocsId": "P:System.Windows.Forms.Screen.PrimaryScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L158C13-L173C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L158C13-L173C62" }, { "DocsId": "P:System.Windows.Forms.Screen.WorkingArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L187C13-L210C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs#L187C13-L210C33" } ], "DocsId": "T:System.Windows.Forms.Screen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Screen.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScreenCaptureMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenCaptureMode.Allow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenCaptureMode.HideContent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" }, { "DocsId": "F:System.Windows.Forms.ScreenCaptureMode.HideWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" } ], "DocsId": "T:System.Windows.Forms.ScreenCaptureMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HScrollBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs" }, { "DocsId": "P:System.Windows.Forms.HScrollBar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs#L17C13-L19C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs#L17C13-L19C23" }, { "DocsId": "P:System.Windows.Forms.HScrollBar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs#L24C12-L24C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs#L24C12-L24C64" } ], "DocsId": "T:System.Windows.Forms.HScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.HScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollProperties.cs#L11C62-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollProperties.cs#L11C62-L13C6" } ], "DocsId": "T:System.Windows.Forms.HScrollProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/HScrollProperties.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollableControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L22C5-L63C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L22C5-L63C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.System#Windows#Forms#Layout#IArrangedElement#get_DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L216C13-L225C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L216C13-L225C37" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.AdjustFormScrollbars(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L280C9-L296C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L280C9-L296C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.GetScrollState(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L567C47-L567C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L567C47-L567C74" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnLayout(System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L587C9-L596C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L587C9-L596C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L606C9-L643C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L606C9-L643C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnRightToLeftChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L648C9-L652C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L648C9-L652C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L656C9-L680C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L656C9-L680C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnPaddingChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L686C9-L687C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L686C9-L687C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnVisibleChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L692C9-L699C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L692C9-L699C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.ScaleCore(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L709C9-L711C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L709C9-L711C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L718C9-L720C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L718C9-L720C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.SetDisplayRectLocation(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L738C9-L809C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L738C9-L809C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L817C9-L834C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L817C9-L834C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.ScrollToControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L846C9-L893C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L846C9-L893C40" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.OnScroll(System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L924C9-L925C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L924C9-L925C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.SetAutoScrollMargin(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L945C9-L963C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L945C9-L963C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.SetScrollState(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L1092C9-L1100C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L1092C9-L1100C6" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L1459C9-L1474C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L1459C9-L1474C6" }, { "DocsId": "E:System.Windows.Forms.ScrollableControl.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L915C16-L915C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L915C16-L915C55" }, { "DocsId": "F:System.Windows.Forms.ScrollableControl.ScrollStateAutoScrolling", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollableControl.ScrollStateHScrollVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollableControl.ScrollStateVScrollVisible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollableControl.ScrollStateUserHasScrolled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollableControl.ScrollStateFullDrag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.AutoScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L75C16-L75C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L75C16-L75C56" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.AutoScrollMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L96C16-L96C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L96C16-L96C38" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.AutoScrollPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L119C13-L120C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L119C13-L120C46" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.AutoScrollMinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L137C16-L137C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L137C16-L137C38" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L157C13-L179C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L157C13-L179C23" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L192C13-L208C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L192C13-L208C59" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.System#Windows#Forms#Layout#IArrangedElement#DisplayRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L216C13-L225C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L216C13-L225C37" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.HScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L234C16-L234C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L234C16-L234C57" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.HorizontalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L245C50-L245C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L245C50-L245C99" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.VScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L252C16-L252C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L252C16-L252C57" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.VerticalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L263C48-L263C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L263C48-L263C95" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPadding", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L271C44-L271C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs#L271C44-L271C87" }, { "DocsId": "T:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" }, { "DocsId": "T:System.Windows.Forms.ScrollableControl.DockPaddingEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollableControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L22C5-L43C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L22C5-L43C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L133C9-L139C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L133C9-L139C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L480C9-L489C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L480C9-L489C64" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.OnEnabledChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L496C9-L502C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L496C9-L502C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.OnHandleCreated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L509C9-L511C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L509C9-L511C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.OnScroll(System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L517C12-L517C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L517C12-L517C74" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L528C9-L566C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L528C9-L566C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.OnValueChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L572C12-L572C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L572C12-L572C73" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L586C9-L587C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L586C9-L587C79" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.UpdateScrollInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L592C9-L618C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L592C9-L618C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L720C9-L745C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L720C9-L745C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBar.CreateAccessibilityInstance", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L755C12-L755C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L755C12-L755C47" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L61C16-L61C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L61C16-L61C45" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.BackColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L77C16-L77C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L77C16-L77C46" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.BackgroundImageChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L93C16-L93C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L93C16-L93C52" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.BackgroundImageLayoutChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L109C16-L109C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L109C16-L109C58" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.ForeColorChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L156C16-L156C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L156C16-L156C46" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.FontChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L173C16-L173C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L173C16-L173C41" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.ImeModeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L189C16-L189C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L189C16-L189C44" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L335C16-L335C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L335C16-L335C41" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.Click", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L385C16-L385C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L385C16-L385C35" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.Paint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L393C16-L393C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L393C16-L393C35" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.DoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L401C16-L401C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L401C16-L401C41" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.MouseClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L409C16-L409C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L409C16-L409C40" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.MouseDoubleClick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L417C16-L417C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L417C16-L417C46" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.MouseDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L425C16-L425C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L425C16-L425C39" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.MouseUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L433C16-L433C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L433C16-L433C37" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.MouseMove", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L441C16-L441C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L441C16-L441C39" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.Scroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L452C16-L452C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L452C16-L452C55" }, { "DocsId": "E:System.Windows.Forms.ScrollBar.ValueChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L465C16-L465C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L465C16-L465C61" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L53C16-L53C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L53C16-L53C29" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L69C16-L69C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L69C16-L69C30" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.BackgroundImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L85C16-L85C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L85C16-L85C36" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.BackgroundImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L101C16-L101C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L101C16-L101C42" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L117C13-L122C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L117C13-L122C23" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.DefaultImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L126C50-L126C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L126C50-L126C65" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.DefaultMargin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L128C49-L128C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L128C49-L128C62" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L148C16-L148C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L148C16-L148C30" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L165C16-L165C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L165C16-L165C25" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.ImeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L181C16-L181C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L181C16-L181C28" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.LargeChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L209C13-L209C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L209C13-L209C68" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L232C16-L232C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L232C16-L232C24" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L262C16-L262C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L262C16-L262C24" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.SmallChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L297C13-L297C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L297C13-L297C56" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.TabStop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L316C16-L316C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L316C16-L316C28" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L327C16-L327C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L327C16-L327C25" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L349C16-L349C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L349C16-L349C22" }, { "DocsId": "P:System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L379C46-L379C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs#L379C46-L379C50" } ], "DocsId": "T:System.Windows.Forms.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L29C9-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L29C9-L32C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L39C9-L42C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L39C9-L42C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L49C9-L52C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L49C9-L52C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L59C9-L62C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L59C9-L62C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L69C9-L72C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L69C9-L72C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L79C9-L82C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L79C9-L82C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L89C9-L92C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L89C9-L92C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L99C9-L102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L99C9-L102C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L109C9-L112C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L109C9-L112C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.DrawSizeBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L119C9-L122C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L119C9-L122C6" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.GetThumbGripSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L129C9-L131C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L129C9-L131C73" }, { "DocsId": "M:System.Windows.Forms.ScrollBarRenderer.GetSizeBoxSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.ScrollBarState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L139C9-L141C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L139C9-L141C73" }, { "DocsId": "P:System.Windows.Forms.ScrollBarRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L22C39-L22C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs#L22C39-L22C70" } ], "DocsId": "T:System.Windows.Forms.ScrollBarRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBarRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScrollBars.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollBars.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollBars.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollBars.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollBars.Both", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollBars", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollBars.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScrollButton.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Min", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollButton.Max", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollButton.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L15C5-L20C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L15C5-L20C6" }, { "DocsId": "M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Windows.Forms.ScrollOrientation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L25C5-L31C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L25C5-L31C6" }, { "DocsId": "M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L33C5-L38C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L33C5-L38C6" }, { "DocsId": "M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Int32,System.Windows.Forms.ScrollOrientation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L40C5-L46C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L40C5-L46C6" }, { "DocsId": "P:System.Windows.Forms.ScrollEventArgs.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L51C35-L51C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L51C35-L51C39" }, { "DocsId": "P:System.Windows.Forms.ScrollEventArgs.NewValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L56C27-L56C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L56C27-L56C31" }, { "DocsId": "P:System.Windows.Forms.ScrollEventArgs.OldValue", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L61C27-L61C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L61C27-L61C31" }, { "DocsId": "P:System.Windows.Forms.ScrollEventArgs.ScrollOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L66C50-L66C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs#L66C50-L66C54" } ], "DocsId": "T:System.Windows.Forms.ScrollEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ScrollEventHandler.Invoke(System.Object,System.Windows.Forms.ScrollEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ScrollEventHandler.BeginInvoke(System.Object,System.Windows.Forms.ScrollEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.ScrollEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScrollEventType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.SmallDecrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.SmallIncrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.LargeDecrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.LargeIncrement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.ThumbPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.ThumbTrack", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.First", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.Last", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollEventType.EndScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollEventType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollEventType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ScrollOrientation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollOrientation.HorizontalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.ScrollOrientation.VerticalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollOrientation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L14C5-L33C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L14C5-L33C6" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.ParentControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L24C51-L24C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L24C51-L24C58" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L43C16-L43C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L43C16-L43C24" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.LargeChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L81C13-L81C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L81C13-L81C68" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.Maximum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L105C16-L105C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L105C16-L105C24" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.Minimum", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L141C16-L141C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L141C16-L141C24" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.SmallChange", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L191C13-L191C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L191C13-L191C56" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L216C16-L216C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L216C16-L216C22" }, { "DocsId": "P:System.Windows.Forms.ScrollProperties.Visible", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L241C16-L241C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs#L241C16-L241C24" } ], "DocsId": "T:System.Windows.Forms.ScrollProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollProperties.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.VScrollBar.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs" }, { "DocsId": "E:System.Windows.Forms.VScrollBar.RightToLeftChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L54C16-L54C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L54C16-L54C48" }, { "DocsId": "P:System.Windows.Forms.VScrollBar.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L21C13-L23C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L21C13-L23C23" }, { "DocsId": "P:System.Windows.Forms.VScrollBar.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L31C13-L38C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L31C13-L38C86" }, { "DocsId": "P:System.Windows.Forms.VScrollBar.RightToLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L46C16-L46C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs#L46C16-L46C30" } ], "DocsId": "T:System.Windows.Forms.VScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollBar.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.VScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollProperties.cs#L11C62-L13C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollProperties.cs#L11C62-L13C6" } ], "DocsId": "T:System.Windows.Forms.VScrollProperties", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollProperties.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/VScrollProperties.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SecurityIDType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.User", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Group", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Domain", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Alias", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.WellKnownGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.DeletedAccount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Invalid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Unknown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "DocsId": "F:System.Windows.Forms.SecurityIDType.Computer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" } ], "DocsId": "T:System.Windows.Forms.SecurityIDType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SecurityIDType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SelectionMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.SelectionMode.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.SelectionMode.One", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.SelectionMode.MultiSimple", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" }, { "DocsId": "F:System.Windows.Forms.SelectionMode.MultiExtended", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" } ], "DocsId": "T:System.Windows.Forms.SelectionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SelectionMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SendKeys.Send(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L900C45-L900C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L900C45-L900C68" }, { "DocsId": "M:System.Windows.Forms.SendKeys.SendWait(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L970C49-L970C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L970C49-L970C69" }, { "DocsId": "M:System.Windows.Forms.SendKeys.Flush", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L991C9-L996C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs#L991C9-L996C6" } ], "DocsId": "T:System.Windows.Forms.SendKeys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SendKeys/SendKeys.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Shortcut.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlA", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlB", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlG", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlH", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlJ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlL", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlO", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlP", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlQ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlT", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlU", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlV", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlZ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftA", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftB", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftC", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftD", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftE", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftG", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftH", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftJ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftK", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftL", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftM", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftN", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftO", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftP", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftQ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftR", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftT", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftU", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftV", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftW", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftZ", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.F12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftF12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlF12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShiftF12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlIns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftIns", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Del", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlDel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.ShiftDel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltRightArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltLeftArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltUpArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltDownArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltBksp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF10", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF11", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.AltF12", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Alt9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.Ctrl9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift0", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift6", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift7", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift8", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "DocsId": "F:System.Windows.Forms.Shortcut.CtrlShift9", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" } ], "DocsId": "T:System.Windows.Forms.Shortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Shortcut.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SizeGripStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" }, { "DocsId": "F:System.Windows.Forms.SizeGripStyle.Auto", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" }, { "DocsId": "F:System.Windows.Forms.SizeGripStyle.Show", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" }, { "DocsId": "F:System.Windows.Forms.SizeGripStyle.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" } ], "DocsId": "T:System.Windows.Forms.SizeGripStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SizeGripStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SortOrder.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" }, { "DocsId": "F:System.Windows.Forms.SortOrder.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" }, { "DocsId": "F:System.Windows.Forms.SortOrder.Ascending", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" }, { "DocsId": "F:System.Windows.Forms.SortOrder.Descending", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" } ], "DocsId": "T:System.Windows.Forms.SortOrder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SortOrder.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.StructFormat.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" }, { "DocsId": "F:System.Windows.Forms.StructFormat.Ansi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" }, { "DocsId": "F:System.Windows.Forms.StructFormat.Unicode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" }, { "DocsId": "F:System.Windows.Forms.StructFormat.Auto", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" } ], "DocsId": "T:System.Windows.Forms.StructFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/StructFormat.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SystemColorMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" }, { "DocsId": "F:System.Windows.Forms.SystemColorMode.Classic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" }, { "DocsId": "F:System.Windows.Forms.SystemColorMode.System", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" }, { "DocsId": "F:System.Windows.Forms.SystemColorMode.Dark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" } ], "DocsId": "T:System.Windows.Forms.SystemColorMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemColorMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.SystemInformation.GetVerticalScrollBarWidthForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L68C12-L70C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L68C12-L70C57" }, { "DocsId": "M:System.Windows.Forms.SystemInformation.GetHorizontalScrollBarHeightForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L81C12-L83C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L81C12-L83C57" }, { "DocsId": "M:System.Windows.Forms.SystemInformation.GetBorderSizeForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L100C9-L103C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L100C9-L103C26" }, { "DocsId": "M:System.Windows.Forms.SystemInformation.GetMenuFontForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L140C12-L140C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L140C12-L140C79" }, { "DocsId": "M:System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeightForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L212C12-L212C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L212C12-L212C68" }, { "DocsId": "M:System.Windows.Forms.SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L223C12-L225C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L223C12-L225C57" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DragFullWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L33C12-L33C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L33C12-L33C72" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HighContrast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L42C13-L44C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L42C13-L44C81" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseWheelScrollLines", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L52C12-L52C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L52C12-L52C72" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.PrimaryMonitorSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L57C46-L57C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L57C46-L57C79" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VerticalScrollBarWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L62C49-L62C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L62C49-L62C91" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HorizontalScrollBarHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L75C52-L75C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L75C52-L75C94" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.CaptionHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L88C40-L88C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L88C40-L88C82" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.BorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L93C38-L93C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L93C38-L93C71" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.FixedFrameBorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L109C48-L109C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L109C48-L109C89" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VerticalScrollBarThumbHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L114C55-L114C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L114C55-L114C96" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HorizontalScrollBarThumbWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L119C56-L119C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L119C56-L119C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IconSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L124C36-L124C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L124C36-L124C65" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.CursorSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L129C38-L129C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L129C38-L129C71" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L134C36-L134C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L134C36-L134C71" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L171C37-L171C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L171C37-L171C76" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.PowerStatus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L176C46-L176C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L176C46-L176C81" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.WorkingArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L185C13-L187C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L185C13-L187C32" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.KanjiWindowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L195C44-L195C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L195C44-L195C90" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MousePresent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L201C40-L201C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L201C40-L201C90" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L206C55-L206C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L206C55-L206C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HorizontalScrollBarArrowWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L217C56-L217C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L217C56-L217C98" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DebugOS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L230C35-L230C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L230C35-L230C78" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseButtonsSwapped", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L236C47-L236C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L236C47-L236C95" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MinimumWindowSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L241C45-L241C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L241C45-L241C72" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.CaptionButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L246C45-L246C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L246C45-L246C74" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.FrameBorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L251C43-L251C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L251C43-L251C74" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MinWindowTrackSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L256C46-L256C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L256C46-L256C83" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DoubleClickSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L263C43-L263C82" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L263C43-L263C82" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DoubleClickTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L268C42-L268C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L268C42-L268C75" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IconSpacingSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L273C43-L273C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L273C43-L273C86" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.RightAlignedMenus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L279C45-L279C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L279C45-L279C100" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.PenWindows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L284C38-L284C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L284C38-L284C86" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DbcsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L290C39-L290C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L290C39-L290C88" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L295C39-L295C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L295C39-L295C85" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.Secure", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L300C34-L300C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L300C34-L300C78" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.Border3DSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L305C40-L305C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L305C40-L305C69" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MinimizedWindowSpacingSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L310C54-L310C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L310C54-L310C95" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.SmallIconSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L315C41-L315C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L315C41-L315C74" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ToolWindowCaptionHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L320C50-L320C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L320C50-L320C94" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ToolWindowCaptionButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L325C55-L325C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L325C55-L325C88" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L330C42-L330C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L330C42-L330C79" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ArrangeStartingPosition", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L339C13-L345C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L339C13-L345C66" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ArrangeDirection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L356C13-L359C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L356C13-L359C59" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MinimizedWindowSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L366C47-L366C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L366C47-L366C86" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MaxWindowTrackSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L372C46-L372C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L372C46-L372C83" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.PrimaryMonitorMaximizedWindowSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L378C61-L378C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L378C61-L378C100" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.Network", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L383C35-L383C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L383C35-L383C95" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.TerminalServerSession", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L385C49-L385C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L385C49-L385C115" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.BootMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L390C40-L390C92" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L390C40-L390C92" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.DragSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L396C36-L396C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L396C36-L396C65" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ShowSounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L403C38-L403C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L403C38-L403C86" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuCheckSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L408C41-L408C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L408C41-L408C80" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MidEastEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L413C42-L413C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L413C42-L413C94" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.NativeMouseWheelSupport", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L439C51-L439C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L439C51-L439C106" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseWheelPresent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L444C45-L444C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L444C45-L444C68" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VirtualScreen", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L453C13-L462C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L453C13-L462C65" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MonitorCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L469C39-L469C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L469C39-L469C107" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MonitorsSameDisplayFormat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L475C12-L475C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L475C12-L475C91" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ComputerName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L480C42-L480C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L480C42-L480C65" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.UserDomainName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L485C44-L485C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L485C44-L485C70" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.UserInteractive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L494C13-L516C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L494C13-L516C40" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.UserName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L524C38-L524C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L524C38-L524C58" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsDropShadowEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L529C47-L529C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L529C47-L529C102" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsFlatMenuEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L534C45-L534C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L534C45-L534C98" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsFontSmoothingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L539C50-L539C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L539C50-L539C108" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.FontSmoothingContrast", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L544C48-L544C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L544C48-L544C113" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.FontSmoothingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L549C44-L549C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L549C44-L549C105" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IconHorizontalSpacing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L554C48-L554C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L554C48-L554C110" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IconVerticalSpacing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L559C46-L559C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L559C46-L559C106" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsIconTitleWrappingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L564C54-L564C112" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L564C54-L564C112" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuAccessKeysUnderlined", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L569C52-L569C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L569C52-L569C109" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.KeyboardDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L576C40-L576C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L576C40-L576C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsKeyboardPreferred", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L582C47-L582C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L582C47-L582C104" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.KeyboardSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L588C40-L588C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L588C40-L588C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseHoverSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L595C12-L596C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L595C12-L596C74" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseHoverTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L602C41-L602C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L602C41-L602C99" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseSpeed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L607C37-L607C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L607C37-L607C91" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsSnapToDefaultEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L612C50-L612C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L612C50-L612C110" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.PopupMenuAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L618C12-L619C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L618C12-L619C65" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsMenuFadeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L624C45-L624C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L624C45-L624C98" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuShowDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L630C40-L630C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L630C40-L630C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsComboBoxAnimationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L635C54-L635C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L635C54-L635C116" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsTitleBarGradientEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L640C53-L640C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L640C53-L640C114" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsHotTrackingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L645C48-L645C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L645C48-L645C104" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsListBoxSmoothScrollingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L650C59-L650C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L650C59-L650C126" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsMenuAnimationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L655C50-L655C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L655C50-L655C108" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsSelectionFadeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L660C50-L660C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L660C50-L660C108" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsToolTipAnimationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L665C53-L665C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L665C53-L665C114" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.UIEffectsEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L670C44-L670C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L670C44-L670C98" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsActiveWindowTrackingEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L675C57-L675C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L675C57-L675C122" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ActiveWindowTrackingDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L680C52-L680C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L680C52-L680C115" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.IsMinimizeRestoreAnimationEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L685C61-L685C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L685C61-L685C115" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.BorderMultiplierFactor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L690C49-L690C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L690C49-L690C99" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.CaretBlinkTime", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L695C41-L695C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L695C41-L695C73" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.CaretWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L700C37-L700C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L700C37-L700C91" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MouseWheelScrollDelta", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L702C48-L702C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L702C48-L702C72" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VerticalFocusThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L707C49-L707C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L707C49-L707C95" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HorizontalFocusThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L712C51-L712C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L712C51-L712C97" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.VerticalResizeBorderThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L717C56-L717C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L717C56-L717C100" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.HorizontalResizeBorderThickness", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L722C58-L722C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L722C58-L722C102" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.ScreenOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L731C13-L743C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L731C13-L743C23" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.SizingBorderWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L754C13-L756C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L754C13-L756C66" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.SmallCaptionButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L767C13-L771C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L767C13-L771C34" }, { "DocsId": "P:System.Windows.Forms.SystemInformation.MenuBarButtonSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L782C13-L786C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs#L782C13-L786C34" } ], "DocsId": "T:System.Windows.Forms.SystemInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemInformation.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.SystemParameter.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.DropShadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.FlatMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.FontSmoothingContrastMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.FontSmoothingTypeMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.MenuFadeEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.SelectionFade", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.ToolTipAnimationMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.UIEffects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.CaretWidthMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.VerticalFocusThicknessMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" }, { "DocsId": "F:System.Windows.Forms.SystemParameter.HorizontalFocusThicknessMetric", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" } ], "DocsId": "T:System.Windows.Forms.SystemParameter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemParameter.cs" + }, + { + "Members": [ + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.AccentColor", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L38C32-L38C36" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.TextScaleFactor", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L48C36-L48C40" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.HighContrastEnabled", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L59C39-L59C43" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.ClientAreaAnimationEnabled", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L70C46-L70C50" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.KeyboardCuesVisible", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L81C39-L81C43" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettings.FocusBorderMetrics", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L92C38-L92C42" + } + ], + "DocsId": "T:System.Windows.Forms.SystemVisualSettings", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "Members": [ + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.value__", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.None", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.AccentColor", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.TextScale", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.HighContrast", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.ClientAreaAnimations", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.KeyboardCues", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "F:System.Windows.Forms.SystemVisualSettingsCategories.FocusMetrics", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + } + ], + "DocsId": "T:System.Windows.Forms.SystemVisualSettingsCategories", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "Members": [ + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettingsChangedEventArgs.OldSettings", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L156C47-L156C51" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettingsChangedEventArgs.NewSettings", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L161C47-L161C51" + }, + { + "DocsId": "P:System.Windows.Forms.SystemVisualSettingsChangedEventArgs.Changed", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs#L166C53-L166C57" + } + ], + "DocsId": "T:System.Windows.Forms.SystemVisualSettingsChangedEventArgs", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "Members": [ + { + "DocsId": "M:System.Windows.Forms.SystemVisualSettingsChangedEventHandler.#ctor(System.Object,System.IntPtr)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "M:System.Windows.Forms.SystemVisualSettingsChangedEventHandler.Invoke(System.Object,System.Windows.Forms.SystemVisualSettingsChangedEventArgs)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "M:System.Windows.Forms.SystemVisualSettingsChangedEventHandler.BeginInvoke(System.Object,System.Windows.Forms.SystemVisualSettingsChangedEventArgs,System.AsyncCallback,System.Object)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + }, + { + "DocsId": "M:System.Windows.Forms.SystemVisualSettingsChangedEventHandler.EndInvoke(System.IAsyncResult)", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" + } + ], + "DocsId": "T:System.Windows.Forms.SystemVisualSettingsChangedEventHandler", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/SystemVisualSettings.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Timer.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L19C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L19C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.Timer.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L42C42-L47C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L42C42-L47C6" }, { "DocsId": "M:System.Windows.Forms.Timer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L73C9-L81C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L73C9-L81C6" }, { "DocsId": "M:System.Windows.Forms.Timer.OnTick(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L166C51-L166C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L166C51-L166C76" }, { "DocsId": "M:System.Windows.Forms.Timer.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L171C28-L171C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L171C28-L171C42" }, { "DocsId": "M:System.Windows.Forms.Timer.Stop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L176C27-L176C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L176C27-L176C42" }, { "DocsId": "M:System.Windows.Forms.Timer.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L178C42-L178C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L178C42-L178C84" }, { "DocsId": "E:System.Windows.Forms.Timer.Tick", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L64C16-L64C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L64C16-L64C33" }, { "DocsId": "P:System.Windows.Forms.Timer.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L55C26-L55C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L55C26-L55C30" }, { "DocsId": "P:System.Windows.Forms.Timer.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L91C16-L91C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L91C16-L91C77" }, { "DocsId": "P:System.Windows.Forms.Timer.Interval", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L137C16-L137C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs#L137C16-L137C25" } ], "DocsId": "T:System.Windows.Forms.Timer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Timer.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawToolTipEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.IWin32Window,System.Windows.Forms.Control,System.Drawing.Rectangle,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L19C5-L37C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L19C5-L37C6" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventArgs.DrawBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L74C9-L76C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L74C9-L76C6" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventArgs.DrawText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L84C9-L86C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L84C9-L86C6" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L93C9-L94C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L93C9-L94C6" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventArgs.DrawBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L101C9-L102C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L101C9-L102C6" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L42C32-L42C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L42C32-L42C36" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.AssociatedWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L47C45-L47C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L47C45-L47C49" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.AssociatedControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L52C41-L52C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L52C41-L52C45" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L57C31-L57C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L57C31-L57C35" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.ToolTipText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L62C34-L62C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L62C34-L62C38" }, { "DocsId": "P:System.Windows.Forms.DrawToolTipEventArgs.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L67C25-L67C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs#L67C25-L67C29" } ], "DocsId": "T:System.Windows.Forms.DrawToolTipEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DrawToolTipEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventHandler.Invoke(System.Object,System.Windows.Forms.DrawToolTipEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventHandler.BeginInvoke(System.Object,System.Windows.Forms.DrawToolTipEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.DrawToolTipEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.DrawToolTipEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/DrawToolTipEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PopupEventArgs.#ctor(System.Windows.Forms.IWin32Window,System.Windows.Forms.Control,System.Boolean,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L17C5-L23C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L17C5-L23C6" }, { "DocsId": "P:System.Windows.Forms.PopupEventArgs.AssociatedWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L28C45-L28C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L28C45-L28C49" }, { "DocsId": "P:System.Windows.Forms.PopupEventArgs.AssociatedControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L33C41-L33C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L33C41-L33C45" }, { "DocsId": "P:System.Windows.Forms.PopupEventArgs.ToolTipSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L38C31-L38C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L38C31-L38C35" }, { "DocsId": "P:System.Windows.Forms.PopupEventArgs.IsBalloon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L43C29-L43C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs#L43C29-L43C33" } ], "DocsId": "T:System.Windows.Forms.PopupEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PopupEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PopupEventHandler.Invoke(System.Object,System.Windows.Forms.PopupEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PopupEventHandler.BeginInvoke(System.Object,System.Windows.Forms.PopupEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.PopupEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.PopupEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/PopupEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolTip.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L77C11-L84C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L77C11-L84C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L36C5-L98C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L36C5-L98C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L257C34-L257C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L257C34-L257C38" }, { "DocsId": "M:System.Windows.Forms.ToolTip.CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L676C45-L676C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L676C45-L676C62" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L924C9-L952C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L928C9-L956C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.GetToolTip(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1014C9-L1021C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1018C9-L1025C28" }, { "DocsId": "M:System.Windows.Forms.ToolTip.RemoveAll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1147C9-L1168C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1151C9-L1172C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.SetToolTip(System.Windows.Forms.Control,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1207C9-L1209C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1211C9-L1213C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1378C9-L1382C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1382C9-L1386C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1390C9-L1397C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1394C9-L1401C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1404C9-L1416C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1408C9-L1420C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Drawing.Point,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1423C9-L1436C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1427C9-L1440C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1443C9-L1453C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1447C9-L1457C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1460C9-L1472C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1464C9-L1476C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Hide(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1722C9-L1770C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1726C9-L1774C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.StopTimer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1889C9-L1897C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1893C9-L1901C6" }, { "DocsId": "M:System.Windows.Forms.ToolTip.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1910C19-L1910C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1914C19-L1914C34" }, { "DocsId": "M:System.Windows.Forms.ToolTip.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1917C9-L1918C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L1921C9-L1922C78" }, { "DocsId": "E:System.Windows.Forms.ToolTip.Draw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L588C16-L588C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L588C16-L588C32" }, { "DocsId": "E:System.Windows.Forms.ToolTip.Popup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L599C16-L599C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L599C16-L599C33" }, { "DocsId": "P:System.Windows.Forms.ToolTip.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L107C16-L107C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L107C16-L107C23" }, { "DocsId": "P:System.Windows.Forms.ToolTip.AutomaticDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L140C16-L140C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L140C16-L140C56" }, { "DocsId": "P:System.Windows.Forms.ToolTip.AutoPopDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L161C16-L161C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L161C16-L161C54" }, { "DocsId": "P:System.Windows.Forms.ToolTip.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L177C16-L177C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L177C16-L177C26" }, { "DocsId": "P:System.Windows.Forms.ToolTip.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L195C13-L230C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L195C13-L230C23" }, { "DocsId": "P:System.Windows.Forms.ToolTip.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L241C16-L241C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L241C16-L241C26" }, { "DocsId": "P:System.Windows.Forms.ToolTip.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L257C34-L257C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L257C34-L257C38" }, { "DocsId": "P:System.Windows.Forms.ToolTip.IsBalloon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L286C16-L286C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L286C16-L286C26" }, { "DocsId": "P:System.Windows.Forms.ToolTip.InitialDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L332C16-L332C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L332C16-L332C54" }, { "DocsId": "P:System.Windows.Forms.ToolTip.OwnerDraw", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L347C29-L347C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L347C29-L347C33" }, { "DocsId": "P:System.Windows.Forms.ToolTip.ReshowDelay", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L357C16-L357C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L357C16-L357C53" }, { "DocsId": "P:System.Windows.Forms.ToolTip.ShowAlways", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L374C16-L374C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L374C16-L374C27" }, { "DocsId": "P:System.Windows.Forms.ToolTip.StripAmpersands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L396C16-L396C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L396C16-L396C32" }, { "DocsId": "P:System.Windows.Forms.ToolTip.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L416C26-L416C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L416C26-L416C30" }, { "DocsId": "P:System.Windows.Forms.ToolTip.ToolTipIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L425C16-L425C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L425C16-L425C28" }, { "DocsId": "P:System.Windows.Forms.ToolTip.ToolTipTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L455C16-L455C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L455C16-L455C29" }, { "DocsId": "P:System.Windows.Forms.ToolTip.UseAnimation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L545C16-L545C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L545C16-L545C29" }, { "DocsId": "P:System.Windows.Forms.ToolTip.UseFading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L567C16-L567C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs#L567C16-L567C26" } ], "DocsId": "T:System.Windows.Forms.ToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTip.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.ToolTipIcon.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" }, { "DocsId": "F:System.Windows.Forms.ToolTipIcon.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" }, { "DocsId": "F:System.Windows.Forms.ToolTipIcon.Info", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" }, { "DocsId": "F:System.Windows.Forms.ToolTipIcon.Warning", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" }, { "DocsId": "F:System.Windows.Forms.ToolTipIcon.Error", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" } ], "DocsId": "T:System.Windows.Forms.ToolTipIcon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ToolTip/ToolTipIcon.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.UICues.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.ShowFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.ShowKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.Shown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.ChangeFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.ChangeKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.Changed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "DocsId": "F:System.Windows.Forms.UICues.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" } ], "DocsId": "T:System.Windows.Forms.UICues", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICues.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UICuesEventArgs.#ctor(System.Windows.Forms.UICues)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L13C5-L16C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L13C5-L16C6" }, { "DocsId": "P:System.Windows.Forms.UICuesEventArgs.ShowFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L21C30-L21C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L21C30-L21C63" }, { "DocsId": "P:System.Windows.Forms.UICuesEventArgs.ShowKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L26C33-L26C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L26C33-L26C69" }, { "DocsId": "P:System.Windows.Forms.UICuesEventArgs.ChangeFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L31C32-L31C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L31C32-L31C67" }, { "DocsId": "P:System.Windows.Forms.UICuesEventArgs.ChangeKeyboard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L36C35-L36C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L36C35-L36C73" }, { "DocsId": "P:System.Windows.Forms.UICuesEventArgs.Changed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L38C30-L38C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs#L38C30-L38C56" } ], "DocsId": "T:System.Windows.Forms.UICuesEventArgs", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UICuesEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UICuesEventHandler.Invoke(System.Object,System.Windows.Forms.UICuesEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UICuesEventHandler.BeginInvoke(System.Object,System.Windows.Forms.UICuesEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" }, { "DocsId": "M:System.Windows.Forms.UICuesEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" } ], "DocsId": "T:System.Windows.Forms.UICuesEventHandler", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UICuesEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.UnhandledExceptionMode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" }, { "DocsId": "F:System.Windows.Forms.UnhandledExceptionMode.Automatic", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" }, { "DocsId": "F:System.Windows.Forms.UnhandledExceptionMode.ThrowException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" }, { "DocsId": "F:System.Windows.Forms.UnhandledExceptionMode.CatchException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" } ], "DocsId": "T:System.Windows.Forms.UnhandledExceptionMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UnhandledExceptionMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.UserControl.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L29C5-L35C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L29C5-L35C6" }, { "DocsId": "M:System.Windows.Forms.UserControl.ValidateChildren", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L227C9-L227C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L227C9-L227C40" }, { "DocsId": "M:System.Windows.Forms.UserControl.ValidateChildren(System.Windows.Forms.ValidationConstraints)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L238C9-L238C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L238C9-L238C61" }, { "DocsId": "M:System.Windows.Forms.UserControl.OnCreateControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L263C9-L266C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L263C9-L266C6" }, { "DocsId": "M:System.Windows.Forms.UserControl.OnLoad(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L276C9-L277C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L276C9-L277C6" }, { "DocsId": "M:System.Windows.Forms.UserControl.OnResize(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L284C9-L289C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L284C9-L289C6" }, { "DocsId": "M:System.Windows.Forms.UserControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L294C9-L300C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L294C9-L300C6" }, { "DocsId": "M:System.Windows.Forms.UserControl.WndProc(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L321C9-L330C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L321C9-L330C6" }, { "DocsId": "E:System.Windows.Forms.UserControl.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L56C16-L56C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L56C16-L56C45" }, { "DocsId": "E:System.Windows.Forms.UserControl.AutoValidateChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L114C16-L114C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L114C16-L114C49" }, { "DocsId": "E:System.Windows.Forms.UserControl.Load", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L195C16-L195C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L195C16-L195C53" }, { "DocsId": "E:System.Windows.Forms.UserControl.TextChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L214C16-L214C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L214C16-L214C41" }, { "DocsId": "P:System.Windows.Forms.UserControl.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L45C16-L45C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L45C16-L45C29" }, { "DocsId": "P:System.Windows.Forms.UserControl.AutoSizeMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L72C13-L72C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L72C13-L72C38" }, { "DocsId": "P:System.Windows.Forms.UserControl.AutoValidate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L106C16-L106C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L106C16-L106C33" }, { "DocsId": "P:System.Windows.Forms.UserControl.BorderStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L131C13-L131C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L131C13-L131C33" }, { "DocsId": "P:System.Windows.Forms.UserControl.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L158C13-L173C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L158C13-L173C23" }, { "DocsId": "P:System.Windows.Forms.UserControl.DefaultSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L184C13-L184C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L184C13-L184C39" }, { "DocsId": "P:System.Windows.Forms.UserControl.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L206C16-L206C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs#L206C16-L206C25" } ], "DocsId": "T:System.Windows.Forms.UserControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/UserControl.cs" + }, + { + "Members": [ + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.value__", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.Inherit", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.Classic", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.Disabled", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.Net11", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + }, + { + "DocsId": "F:System.Windows.Forms.VisualStylesMode.Latest", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" + } + ], + "DocsId": "T:System.Windows.Forms.VisualStylesMode", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStylesMode.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WindowsFormsSection.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs#L16C5-L18C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs#L16C5-L18C45" }, { "DocsId": "P:System.Windows.Forms.WindowsFormsSection.JitDebugging", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs#L23C16-L23C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs#L23C16-L23C51" } ], "DocsId": "T:System.Windows.Forms.WindowsFormsSection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L26C5-L32C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L26C5-L32C6" }, { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L65C9-L74C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L65C9-L74C6" }, { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L80C9-L87C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L80C9-L87C6" }, { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L90C12-L90C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L90C12-L90C53" }, { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.CreateCopy", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L93C12-L93C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L93C12-L93C87" }, { "DocsId": "M:System.Windows.Forms.WindowsFormsSynchronizationContext.Uninstall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L156C39-L156C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L156C39-L156C74" }, { "DocsId": "P:System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L112C16-L112C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs#L112C16-L112C35" } ], "DocsId": "T:System.Windows.Forms.WindowsFormsSynchronizationContext", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/WindowsFormsSynchronizationContext.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.BackgroundType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BackgroundType.ImageFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BackgroundType.BorderFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BackgroundType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.BackgroundType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BackgroundType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.Transparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.BorderOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.Composited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.BackgroundFill", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.GlyphTransparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.GlyphOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.AlwaysShowSizingBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.MirrorImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.UniformSizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.IntegralSizing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.SourceGrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BooleanProperty.SourceShrink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.BooleanProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BooleanProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.BorderType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BorderType.Rectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BorderType.RoundedRectangle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.BorderType.Ellipse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.BorderType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/BorderType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.CheckBoxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/CheckBoxState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.BorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.FillColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.TextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeLightColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeHighlightColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeShadowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeDarkShadowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeFillColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.TransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.ShadowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GlowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.TextBorderColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.TextShadowColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GlyphTextColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.GlyphTransparentColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.FillColorHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.BorderColorHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ColorProperty.AccentColorHint", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ColorProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ColorProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ComboBoxState.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ComboBoxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ComboBoxState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ContentAlignment.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ContentAlignment.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ContentAlignment.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ContentAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ContentAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.FillInterior", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.Flat", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.Soft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeEffects.Mono", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.EdgeEffects", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeEffects.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.Edges.Diagonal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.Edges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/Edges.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeStyle.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeStyle.Raised", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeStyle.Sunken", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeStyle.Etched", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EdgeStyle.Bump", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.EdgeStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EdgeStyle.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.BackgroundType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.BorderType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.FillType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.SizingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.HorizontalAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.ContentAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.VerticalAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.OffsetType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.IconEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.TextShadowType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.ImageLayout", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.GlyphType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.ImageSelectType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.GlyphFontSizingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.EnumProperty.TrueSizeScalingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.EnumProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/EnumProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.StockImageFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FilenameProperty.GlyphImageFile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.FilenameProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FilenameProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.Solid", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.VerticalGradient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.HorizontalGradient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.RadialGradient", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FillType.TileImage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.FillType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FillType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.FontProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FontProperty.TextFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.FontProperty.GlyphFont", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.FontProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/FontProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.Dpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.GlyphFontSizingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphFontSizingType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphType.ImageGlyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GlyphType.FontGlyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.GlyphType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GlyphType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.GroupBoxState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GroupBoxState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.GroupBoxState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.GroupBoxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/GroupBoxState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Nowhere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Client", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestCode.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.HitTestCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestCode.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.BackgroundSegment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.FixedBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HitTestOptions.SystemSizingMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.HitTestOptions", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HitTestOptions.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.HorizontalAlign.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HorizontalAlign.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HorizontalAlign.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.HorizontalAlign.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.HorizontalAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/HorizontalAlign.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.Glow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.Shadow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.Pulse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IconEffect.Alpha", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.IconEffect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IconEffect.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageOrientation.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageOrientation.Vertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageOrientation.Horizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ImageOrientation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageOrientation.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageSelectType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageSelectType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageSelectType.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ImageSelectType.Dpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ImageSelectType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ImageSelectType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.ImageCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.AlphaLevel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.BorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerWidth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerHeight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.ProgressChunkSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.ProgressSpaceSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.Saturation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.TextBorderSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.AlphaThreshold", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.Width", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.Height", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.GlyphIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.TrueSizeStretchMark", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.IntegerProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/IntegerProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.MarginProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.MarginProperty.SizingMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.MarginProperty.ContentMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.MarginProperty.CaptionMargins", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.MarginProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/MarginProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.TopLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.TopRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.TopMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.BottomLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.BottomRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.BottomMiddle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.MiddleLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.MiddleRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.LeftOfCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.RightOfCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.LeftOfLastButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.RightOfLastButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.AboveLastButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.OffsetType.BelowLastButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.OffsetType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/OffsetType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.Offset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.TextShadowOffset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize1", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize2", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize3", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PointProperty.MinSize5", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.PointProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PointProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.PushButtonState.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.PushButtonState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/PushButtonState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.RadioButtonState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/RadioButtonState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarArrowButtonState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.RightAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.LeftAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarSizeBoxState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarState.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ScrollBarState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ScrollBarState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ScrollBarState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.SizingType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.SizingType.FixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.SizingType.Stretch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.SizingType.Tile", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.SizingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/SizingType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.StringProperty.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.StringProperty.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.StringProperty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/StringProperty.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TabItemState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TabItemState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TabItemState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TabItemState.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TabItemState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TabItemState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TabItemState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Readonly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextBoxState.Assist", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TextBoxState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextBoxState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TextShadowType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextShadowType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextShadowType.Single", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TextShadowType.Continuous", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TextShadowType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TextShadowType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.ToolBarState.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.ToolBarState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/ToolBarState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TrackBarThumbState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TrackBarThumbState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrackBarThumbState.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.Dpi", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.TrueSizeScalingType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/TrueSizeScalingType.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.VerticalAlignment.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VerticalAlignment.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VerticalAlignment.Center", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VerticalAlignment.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VerticalAlignment", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VerticalAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleElement.CreateElement(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L28C9-L28C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L28C9-L28C63" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L31C31-L31C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L31C31-L31C35" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Part", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L33C23-L33C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L33C23-L33C27" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L35C24-L35C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L35C24-L35C28" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.IsSupportedByOS", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L29C43-L29C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L29C43-L29C47" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.IsEnabledByUser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L34C43-L34C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L34C43-L34C64" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.ColorScheme", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L62C13-L73C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L62C13-L73C33" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Size", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L84C13-L95C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L84C13-L95C33" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.DisplayName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L102C48-L104C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L102C48-L104C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Company", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L109C37-L111C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L109C37-L111C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Author", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L116C36-L118C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L116C36-L118C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Copyright", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L123C39-L125C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L123C39-L125C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Url", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L130C33-L132C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L130C33-L132C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Version", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L137C37-L139C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L137C37-L139C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L144C41-L146C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L144C41-L146C23" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.SupportsFlatMenus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L152C9-L155C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L152C9-L155C52" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.MinimumColorDepth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L164C13-L174C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L164C13-L174C26" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.TextControlBorder", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L181C46-L183C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L181C46-L183C35" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleInformation.ControlHighlightHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L188C48-L190C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs#L188C48-L190C39" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleInformation", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleInformation.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(System.Windows.Forms.VisualStyles.VisualStyleElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L78C9-L80C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L78C9-L80C70" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.#ctor(System.Windows.Forms.VisualStyles.VisualStyleElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L126C62-L128C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L126C62-L128C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L134C5-L144C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L134C5-L144C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Windows#Win32#Foundation#IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L179C38-L179C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L179C38-L179C52" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.Windows.Forms.VisualStyles.VisualStyleElement)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L188C9-L191C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L188C9-L191C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L200C9-L206C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L200C9-L206C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L213C9-L217C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L213C9-L217C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L242C9-L246C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L242C9-L246C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawEdge(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.Edges,System.Windows.Forms.VisualStyles.EdgeStyle,System.Windows.Forms.VisualStyles.EdgeEffects)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L269C9-L273C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L269C9-L273C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L301C9-L308C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L301C9-L308C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ImageList,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L316C9-L328C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L316C9-L328C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawParentBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L337C9-L350C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L337C9-L350C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L357C9-L358C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L357C9-L358C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L365C9-L366C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L365C9-L366C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Boolean,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L373C9-L377C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L373C9-L377C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundContentRectangle(System.Drawing.IDeviceContext,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L407C9-L411C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L407C9-L411C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundExtent(System.Drawing.IDeviceContext,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L429C9-L439C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L429C9-L439C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundRegion(System.Drawing.IDeviceContext,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L448C9-L472C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L448C9-L472C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBoolean(System.Windows.Forms.VisualStyles.BooleanProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L479C9-L482C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L479C9-L482C22" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetColor(System.Windows.Forms.VisualStyles.ColorProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L491C9-L494C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L491C9-L494C22" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetEnumValue(System.Windows.Forms.VisualStyles.EnumProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L503C9-L506C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L503C9-L506C22" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFilename(System.Windows.Forms.VisualStyles.FilenameProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L515C9-L523C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L515C9-L523C55" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFont(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.FontProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L532C9-L554C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L532C9-L554C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetInteger(System.Windows.Forms.VisualStyles.IntegerProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L562C9-L565C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L562C9-L565C22" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.ThemeSizeType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L573C9-L577C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L573C9-L577C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ThemeSizeType)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L600C9-L608C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L600C9-L608C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPoint(System.Windows.Forms.VisualStyles.PointProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L616C9-L619C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L616C9-L619C22" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetMargins(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.MarginProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L627C9-L636C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L627C9-L636C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetString(System.Windows.Forms.VisualStyles.StringProperty)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L644C9-L652C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L644C9-L652C54" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext,System.String,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L660C9-L676C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L660C9-L676C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Windows.Forms.TextFormatFlags)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L683C9-L699C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L683C9-L699C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextMetrics(System.Drawing.IDeviceContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L706C9-L711C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L706C9-L711C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L718C9-L733C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L718C9-L733C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Region,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L740C9-L744C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L740C9-L744C77" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.IntPtr,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L752C9-L767C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L752C9-L767C6" }, { "DocsId": "M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsBackgroundPartiallyTransparent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L774C9-L774C83" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L774C9-L774C83" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsSupported", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L53C13-L64C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L53C13-L64C30" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L149C27-L149C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L149C27-L149C31" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L154C23-L154C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L154C23-L154C27" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L159C24-L159C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L159C24-L159C28" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L173C12-L177C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L173C12-L177C37" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Windows#Win32#Foundation#IHandle#Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L179C38-L179C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L179C38-L179C52" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.LastHResult", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L781C31-L781C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs#L781C31-L781C48" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleRenderer", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleRenderer.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.VisualStyles.VisualStyleState.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VisualStyleState.NoneEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" }, { "DocsId": "F:System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleState", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleState.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L26C9-L39C21" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L26C9-L39C21" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L44C9-L50C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L44C9-L50C34" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L120C27-L120C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L120C27-L120C53" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L122C31-L122C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L122C31-L122C61" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L124C43-L124C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L124C43-L124C77" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L128C39-L128C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L128C39-L128C73" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L130C41-L130C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L130C41-L130C73" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L132C37-L132C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L132C37-L132C66" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L134C41-L134C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L134C41-L134C74" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L136C52-L136C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L136C52-L136C85" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L140C16-L140C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L140C16-L140C32" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L141C16-L141C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L141C16-L141C49" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L146C36-L146C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L146C36-L146C69" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L148C51-L148C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L148C51-L148C96" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L150C40-L150C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L150C40-L150C79" }, { "DocsId": "M:System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L152C51-L152C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L152C51-L152C76" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L122C31-L122C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L122C31-L122C61" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L126C39-L126C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L126C39-L126C68" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L140C16-L140C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L140C16-L140C32" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L144C33-L144C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L144C33-L144C48" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L146C36-L146C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L146C36-L146C69" }, { "DocsId": "P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L150C40-L150C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs#L150C40-L150C79" } ], "DocsId": "T:System.Windows.Forms.Layout.ArrangedElementCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/ArrangedElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Layout.LayoutEngine.InitLayout(System.Object,System.Windows.Forms.BoundsSpecified)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs#L27C9-L30C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs#L27C9-L30C6" }, { "DocsId": "M:System.Windows.Forms.Layout.LayoutEngine.Layout(System.Object,System.Windows.Forms.LayoutEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs#L42C9-L43C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs#L42C9-L43C78" }, { "DocsId": "M:System.Windows.Forms.Layout.LayoutEngine.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs" } ], "DocsId": "T:System.Windows.Forms.Layout.LayoutEngine", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Layout/LayoutEngine.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L20C9-L25C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L20C9-L25C57" }, { "DocsId": "M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L34C9-L39C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L34C9-L39C60" }, { "DocsId": "M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L47C9-L60C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L47C9-L60C58" }, { "DocsId": "M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L65C9-L132C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs#L65C9-L132C73" }, { "DocsId": "M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs" } ], "DocsId": "T:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Panels/TableLayoutPanel/TableLayoutSettingsTypeConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.#ctor(System.Object,System.Type[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L19C5-L66C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L19C5-L66C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.OnActivated(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L314C9-L326C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L314C9-L326C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.OnHelpRequested(System.Windows.Forms.HelpEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L331C9-L333C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L331C9-L333C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.OnSelChangeSelector(System.Object,System.Windows.Forms.TreeViewEventArgs)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L375C9-L404C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L375C9-L404C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.PreProcessMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L412C9-L417C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L412C9-L417C48" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L436C9-L436C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L436C9-L436C34" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L444C9-L444C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L444C9-L444C37" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L452C9-L452C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L452C9-L452C35" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L460C9-L462C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L460C9-L462C29" }, { "DocsId": "E:System.Windows.Forms.Design.ComponentEditorForm.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L130C16-L130C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L130C16-L130C45" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorForm.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L122C16-L122C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs#L122C16-L122C29" } ], "DocsId": "T:System.Windows.Forms.Design.ComponentEditorForm", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorForm.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L57C50-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L57C50-L22C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.Activate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L107C9-L118C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L107C9-L118C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.ApplyChanges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L123C43-L123C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L123C43-L123C58" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.Deactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L130C9-L131C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L130C9-L131C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.EnterLoadingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L136C42-L136C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L136C42-L136C51" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.ExitLoadingMode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L143C9-L149C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L143C9-L149C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.GetControl", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L154C44-L154C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L154C44-L154C48" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.GetSelectedComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L159C53-L159C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L159C53-L159C62" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.IsPageMessage(System.Windows.Forms.Message@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L164C59-L164C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L164C59-L164C85" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.IsFirstActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L169C41-L169C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L169C41-L169C54" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.IsLoading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L174C35-L174C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L174C35-L174C47" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.LoadComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.OnApplyComplete", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L184C46-L184C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L184C46-L184C63" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.ReloadComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L191C9-L195C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L191C9-L195C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.SaveComponent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.SetDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L207C9-L211C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L207C9-L211C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.SetComponent(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L218C9-L220C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L218C9-L220C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.SetSite(System.Windows.Forms.IComponentEditorPageSite)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L227C9-L229C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L227C9-L229C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.ShowHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L236C5-L236C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L236C5-L236C6" }, { "DocsId": "M:System.Windows.Forms.Design.ComponentEditorPage.SupportsHelp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L241C43-L241C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L241C43-L241C48" }, { "DocsId": "E:System.Windows.Forms.Design.ComponentEditorPage.AutoSizeChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L40C16-L40C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L40C16-L40C45" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.AutoSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L32C16-L32C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L32C16-L32C29" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.PageSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L47C52-L47C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L47C52-L47C56" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.Component", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L52C39-L52C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L52C39-L52C43" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.FirstActivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L57C36-L57C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L57C36-L57C40" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.LoadRequired", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L62C35-L62C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L62C35-L62C39" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.Loading", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L67C29-L67C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L67C29-L67C33" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L72C38-L72C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L72C38-L72C42" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.CreateParams", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L81C13-L83C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L81C13-L83C23" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.Icon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L93C16-L93C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L93C16-L93C86" }, { "DocsId": "P:System.Windows.Forms.Design.ComponentEditorPage.Title", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L100C36-L100C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs#L100C36-L100C45" } ], "DocsId": "T:System.Windows.Forms.Design.ComponentEditorPage", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ComponentEditorPage.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.EventsTab.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L22C5-L22C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L22C5-L22C68" }, { "DocsId": "M:System.Windows.Forms.Design.EventsTab.CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L28C57-L28C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L28C57-L28C107" }, { "DocsId": "M:System.Windows.Forms.Design.EventsTab.GetDefaultProperty(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L35C9-L44C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L35C9-L44C20" }, { "DocsId": "M:System.Windows.Forms.Design.EventsTab.GetProperties(System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L90C12-L90C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L90C12-L90C63" }, { "DocsId": "M:System.Windows.Forms.Design.EventsTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L102C9-L169C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L102C9-L169C41" }, { "DocsId": "P:System.Windows.Forms.Design.EventsTab.TabName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L24C39-L24C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L24C39-L24C59" }, { "DocsId": "P:System.Windows.Forms.Design.EventsTab.HelpKeyword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L26C43-L26C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs#L26C43-L26C51" } ], "DocsId": "T:System.Windows.Forms.Design.EventsTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/EventsTab.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.IUIService.CanShowComponentEditor(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.GetDialogOwnerWindow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.SetUIDirty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowComponentEditor(System.Object,System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowDialog(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowError(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowError(System.Exception)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowError(System.Exception,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String,System.String,System.Windows.Forms.MessageBoxButtons)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IUIService.ShowToolWindow(System.Guid)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "DocsId": "P:System.Windows.Forms.Design.IUIService.Styles", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" } ], "DocsId": "T:System.Windows.Forms.Design.IUIService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IUIService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.IWindowsFormsEditorService.CloseDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IWindowsFormsEditorService.DropDownControl(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" }, { "DocsId": "M:System.Windows.Forms.Design.IWindowsFormsEditorService.ShowDialog(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" } ], "DocsId": "T:System.Windows.Forms.Design.IWindowsFormsEditorService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/IWindowsFormsEditorService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.CanExtend(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L84C56-L84C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L84C56-L84C60" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L88C9-L90C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L88C9-L90C6" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L94C9-L99C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L94C9-L99C6" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L101C23-L101C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L101C23-L101C48" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.GetDefaultProperty(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L107C12-L107C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L107C12-L107C56" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L113C12-L113C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L113C12-L113C54" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L128C37-L128C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L128C37-L128C73" }, { "DocsId": "M:System.Windows.Forms.Design.PropertyTab.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" }, { "DocsId": "P:System.Windows.Forms.Design.PropertyTab.Bitmap", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L42C13-L58C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L42C13-L58C28" }, { "DocsId": "P:System.Windows.Forms.Design.PropertyTab.Components", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L65C43-L65C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L65C43-L65C47" }, { "DocsId": "P:System.Windows.Forms.Design.PropertyTab.TabName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" }, { "DocsId": "P:System.Windows.Forms.Design.PropertyTab.HelpKeyword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L78C43-L78C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs#L78C43-L78C50" } ], "DocsId": "T:System.Windows.Forms.Design.PropertyTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/PropertyTab.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" } ], "DocsId": "T:System.Windows.Forms.Design.ToolStripItemDesignerAvailability", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripDesignerAvailability.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L15C5-L17C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L15C5-L17C6" }, { "DocsId": "M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.#ctor(System.Windows.Forms.Design.ToolStripItemDesignerAvailability)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L19C5-L22C6" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L19C5-L22C6" }, { "DocsId": "M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L28C9-L33C130" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L28C9-L33C130" }, { "DocsId": "M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L36C42-L36C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L36C42-L36C78" }, { "DocsId": "M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.IsDefaultAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L38C50-L38C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L38C50-L38C65" }, { "DocsId": "F:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs" }, { "DocsId": "P:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ItemAdditionVisibility", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L24C71-L24C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs#L24C71-L24C75" } ], "DocsId": "T:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/ToolStripItemDesignerAvailabilityAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L19C9-L19C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L19C9-L19C56" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.Object,System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L27C9-L27C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L27C9-L27C54" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L35C9-L42C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L35C9-L42C94" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.GetComponentEditorPages", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L48C60-L48C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L48C60-L48C64" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L54C67-L54C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs#L54C67-L54C68" }, { "DocsId": "M:System.Windows.Forms.Design.WindowsFormsComponentEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs" } ], "DocsId": "T:System.Windows.Forms.Design.WindowsFormsComponentEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Design/WindowsFormsComponentEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ResetBrowsableAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" }, { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ShowCategories(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" }, { "DocsId": "P:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" } ], "DocsId": "T:System.Windows.Forms.PropertyGridInternal.IRootGridEntry", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/IRootGridEntry.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetDefaultProperty(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L19C9-L37C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L19C9-L37C32" }, { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L41C12-L41C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L41C12-L41C63" }, { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L45C9-L58C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L45C9-L58C75" }, { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs" }, { "DocsId": "P:System.Windows.Forms.PropertyGridInternal.PropertiesTab.TabName", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L11C39-L11C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L11C39-L11C63" }, { "DocsId": "P:System.Windows.Forms.PropertyGridInternal.PropertiesTab.HelpKeyword", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L13C43-L13C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs#L13C43-L13C58" } ], "DocsId": "T:System.Windows.Forms.PropertyGridInternal.PropertiesTab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertiesTab.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuGroup", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuCommand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Reset", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Hide", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "DocsId": "F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Commands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" } ], "DocsId": "T:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/PropertyGridCommands.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/Com2Variant.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/Com2Variant.cs" } ], "DocsId": "T:System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/Com2Variant.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/Com2Variant.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService.ShowPropertyPage(System.String,System.Object,System.Int32,System.Guid,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/ICOM2PropertyPageDisplayService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/ICOM2PropertyPageDisplayService.cs" } ], "DocsId": "T:System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/ICOM2PropertyPageDisplayService.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/ICOM2PropertyPageDisplayService.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.DropDownDone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.EnsurePendingChangesCommitted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.HandleF4", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.LoadState(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.SaveState(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "E:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.ComComponentNameChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "DocsId": "P:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.InPropertySet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" } ], "DocsId": "T:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ComponentModel/COM2Interop/IComPropertyBrowser.cs" }, { "Members": [ { "DocsId": "M:System.Resources.ResXFileRef.Converter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L17C16-L17C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L17C16-L17C44" }, { "DocsId": "M:System.Resources.ResXFileRef.Converter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L20C16-L20C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L20C16-L20C49" }, { "DocsId": "M:System.Resources.ResXFileRef.Converter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L28C13-L34C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L28C13-L34C28" }, { "DocsId": "M:System.Resources.ResXFileRef.Converter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L98C13-L153C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs#L98C13-L153C10" }, { "DocsId": "M:System.Resources.ResXFileRef.Converter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" } ], "DocsId": "T:System.Resources.ResXFileRef.Converter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Resources/ResxFileRef.Converter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L32C15-L34C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.GetHelpTopic(System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L437C13-L449C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L437C13-L449C26" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L458C16-L458C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L458C16-L458C79" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L461C16-L461C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L461C16-L461C85" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L465C13-L475C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L465C13-L475C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.RaiseLiveRegionChanged", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L490C13-L497C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L490C13-L497C26" }, { "DocsId": "M:System.Windows.Forms.Control.ControlAccessibleObject.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L556C16-L556C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L556C16-L556C91" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L199C50-L199C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L199C50-L199C113" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L218C48-L218C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L218C48-L218C96" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Handle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L238C17-L246C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L238C17-L246C32" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L274C17-L282C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L274C17-L282C34" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L297C17-L298C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L297C17-L298C73" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L311C17-L317C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L311C17-L317C74" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L335C53-L335C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L335C53-L335C64" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L381C34-L381C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L381C34-L381C95" }, { "DocsId": "P:System.Windows.Forms.Control.ControlAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L430C17-L431C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs#L430C17-L431C74" } ], "DocsId": "T:System.Windows.Forms.Control.ControlAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Accessibility/Control.ControlAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L22C9-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L22C9-L27C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L34C13-L34C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L34C13-L34C50" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.Add(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L44C13-L123C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L44C13-L123C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L127C13-L134C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L127C13-L134C84" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.AddRange(System.Windows.Forms.Control[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L141C13-L153C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L141C13-L153C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L159C13-L163C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L159C13-L163C28" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.Contains(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L166C51-L166C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L166C51-L166C87" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.Find(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L174C13-L178C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L174C13-L178C39" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L229C13-L229C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L229C13-L229C58" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.IndexOf(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L232C49-L232C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L232C49-L232C84" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L240C13-L266C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L240C13-L266C23" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.Remove(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L289C13-L310C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L289C13-L310C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L314C13-L318C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L314C13-L318C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L322C13-L323C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L322C13-L323C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L330C13-L335C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L330C13-L335C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L382C13-L391C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L382C13-L391C10" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L397C52-L397C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L397C52-L397C78" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L405C13-L411C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L405C13-L411C26" }, { "DocsId": "M:System.Windows.Forms.Control.ControlCollection.SetChildIndex(System.Windows.Forms.Control,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L446C13-L446C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L446C13-L446C51" }, { "DocsId": "P:System.Windows.Forms.Control.ControlCollection.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L280C32-L280C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L280C32-L280C36" }, { "DocsId": "P:System.Windows.Forms.Control.ControlCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L345C17-L350C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L345C17-L350C32" }, { "DocsId": "P:System.Windows.Forms.Control.ControlCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L362C17-L375C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs#L362C17-L375C33" } ], "DocsId": "T:System.Windows.Forms.Control.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Control.ControlCollection.cs" + }, + { + "Members": [ + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.value__", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.None", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.Repaint", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.NonClientUpdate", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.Metrics", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + }, + { + "DocsId": "F:System.Windows.Forms.Control.VisualStylesModeChangeImpact.Recreate", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" + } + ], + "DocsId": "T:System.Windows.Forms.Control.VisualStylesModeChangeImpact", + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/Control.ActiveXImpl.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.AxHost.ActiveXInvokeKind.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" }, { "DocsId": "F:System.Windows.Forms.AxHost.ActiveXInvokeKind.MethodInvoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" }, { "DocsId": "F:System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertyGet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" }, { "DocsId": "F:System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertySet", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" } ], "DocsId": "T:System.Windows.Forms.AxHost.ActiveXInvokeKind", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ActiveXInvokeKind.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.AxComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Windows.Forms.IWin32Window)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs#L18C13-L24C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs#L18C13-L24C26" }, { "DocsId": "M:System.Windows.Forms.AxHost.AxComponentEditor.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" } ], "DocsId": "T:System.Windows.Forms.AxHost.AxComponentEditor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.AxComponentEditor.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.ClsidAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs#L11C9-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs#L11C9-L14C10" }, { "DocsId": "P:System.Windows.Forms.AxHost.ClsidAttribute.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs#L16C31-L16C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs#L16C31-L16C35" } ], "DocsId": "T:System.Windows.Forms.AxHost.ClsidAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ClsidAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.ConnectionPointCookie.#ctor(System.Object,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L19C15-L21C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.ConnectionPointCookie.Disconnect", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L85C13-L88C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L85C13-L88C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.ConnectionPointCookie.Finalize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L91C34-L91C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs#L91C34-L91C37" } ], "DocsId": "T:System.Windows.Forms.AxHost.ConnectionPointCookie", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.ConnectionPointCookie.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.AboutBoxDelegate.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "DocsId": "M:System.Windows.Forms.AxHost.AboutBoxDelegate.Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "DocsId": "M:System.Windows.Forms.AxHost.AboutBoxDelegate.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "DocsId": "M:System.Windows.Forms.AxHost.AboutBoxDelegate.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" } ], "DocsId": "T:System.Windows.Forms.AxHost.AboutBoxDelegate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.InvalidActiveXStateException.#ctor(System.String,System.Windows.Forms.AxHost.ActiveXInvokeKind)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L13C9-L17C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.InvalidActiveXStateException.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L19C9-L21C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L19C9-L21C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.InvalidActiveXStateException.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L23C46-L28C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs#L23C46-L28C33" } ], "DocsId": "T:System.Windows.Forms.AxHost.InvalidActiveXStateException", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.InvalidActiveXStateException.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.State.#ctor(System.IO.Stream,System.Int32,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L69C9-L78C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L69C9-L78C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.State.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L83C9-L126C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L83C9-L126C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.State.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L343C13-L360C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L343C13-L360C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.State.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L364C13-L369C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L364C13-L369C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.State.Dispose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L373C13-L375C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs#L373C13-L375C10" } ], "DocsId": "T:System.Windows.Forms.AxHost.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.State.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.StateConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L19C16-L19C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L19C16-L19C88" }, { "DocsId": "M:System.Windows.Forms.AxHost.StateConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L23C16-L23C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L23C16-L23C96" }, { "DocsId": "M:System.Windows.Forms.AxHost.StateConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L28C13-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L28C13-L35C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.StateConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L40C13-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs#L40C13-L61C10" }, { "DocsId": "M:System.Windows.Forms.AxHost.StateConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" } ], "DocsId": "T:System.Windows.Forms.AxHost.StateConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.StateConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs#L13C9-L16C10" }, { "DocsId": "P:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs#L18C33-L18C37" } ], "DocsId": "T:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/ActiveX/AxHost.TypeLibraryTimeStampAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Application.MessageLoopCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" }, { "DocsId": "M:System.Windows.Forms.Application.MessageLoopCallback.Invoke", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" }, { "DocsId": "M:System.Windows.Forms.Application.MessageLoopCallback.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" }, { "DocsId": "M:System.Windows.Forms.Application.MessageLoopCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" } ], "DocsId": "T:System.Windows.Forms.Application.MessageLoopCallback", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Application.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L11C15-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L11C15-L15C10" }, { "DocsId": "M:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L24C13-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L24C13-L28C10" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L18C13-L20C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L18C13-L20C29" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L46C53-L48C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L46C53-L48C19" }, { "DocsId": "P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L54C17-L64C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs#L54C17-L64C106" } ], "DocsId": "T:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/ButtonBase.ButtonBaseAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.#ctor(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L11C60-L13C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L11C60-L13C127" }, { "DocsId": "M:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L59C13-L73C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L59C13-L73C10" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L15C49-L17C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L15C49-L17C27" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L21C48-L21C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L21C48-L21C103" }, { "DocsId": "P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L23C51-L29C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs#L23C51-L29C32" } ], "DocsId": "T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/CheckBox.CheckBoxAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.#ctor(System.Windows.Forms.RadioButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L11C67-L11C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L11C67-L11C97" }, { "DocsId": "M:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L31C13-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L31C13-L35C10" }, { "DocsId": "P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L14C13-L16C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L14C13-L16C43" }, { "DocsId": "P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L20C48-L20C103" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L20C48-L20C103" }, { "DocsId": "P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L23C13-L25C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L23C13-L25C29" }, { "DocsId": "P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L53C53-L55C19" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L53C53-L55C19" }, { "DocsId": "P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L61C17-L71C106" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs#L61C17-L71C106" } ], "DocsId": "T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Buttons/RadioButton.RadioButtonAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComboBox.ChildAccessibleObject.#ctor(System.Windows.Forms.ComboBox,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs#L12C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs#L12C9-L22C10" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ChildAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs#L24C41-L24C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs#L24C41-L24C72" } ], "DocsId": "T:System.Windows.Forms.ComboBox.ChildAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ChildAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.#ctor(System.Windows.Forms.ComboBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L67C17-L67C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L67C17-L67C29" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L75C17-L75C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L75C17-L75C30" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L83C17-L83C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L83C17-L83C30" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L106C13-L113C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L106C13-L113C26" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L174C13-L174C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L174C13-L174C31" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L179C13-L189C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L179C13-L189C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L235C13-L237C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L235C13-L237C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L258C13-L258C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L258C13-L258C41" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L266C13-L277C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L266C13-L277C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L281C13-L292C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L281C13-L292C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L297C47-L297C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L297C47-L297C77" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L310C13-L352C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L310C13-L352C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L359C13-L389C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L359C13-L389C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L397C13-L403C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L397C13-L403C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L450C13-L462C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L450C13-L462C10" }, { "DocsId": "M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#Generic#IComparer#Compare(System.Windows.Forms.ComboBox.ObjectCollection.Entry,System.Windows.Forms.ComboBox.ObjectCollection.Entry)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L466C13-L475C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L466C13-L475C86" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L61C29-L61C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L61C29-L61C44" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L67C17-L67C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L67C17-L67C29" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L75C17-L75C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L75C17-L75C30" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L83C17-L83C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L83C17-L83C30" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L91C17-L91C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L91C17-L91C30" }, { "DocsId": "P:System.Windows.Forms.ComboBox.ObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L218C17-L221C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs#L218C17-L221C46" } ], "DocsId": "T:System.Windows.Forms.ComboBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.#ctor(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L20C15-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L20C15-L22C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L59C13-L108C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L59C13-L108C25" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L113C13-L136C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L113C13-L136C31" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetFocused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L141C13-L147C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L141C13-L147C29" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L151C59-L151C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L151C59-L151C91" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L155C13-L187C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L155C13-L187C33" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L191C97-L195C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L191C97-L195C22" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L49C48-L49C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs#L49C48-L49C97" } ], "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.AccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.#ctor(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L15C15-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L15C15-L18C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.CopyTo(System.Windows.Forms.Control[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L22C13-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L22C13-L23C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Insert(System.Int32,System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L27C13-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L27C13-L28C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Remove(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L50C18-L61C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs#L50C18-L61C10" } ], "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.ControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridView.HitTestInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L95C13-L95C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L95C13-L95C99" }, { "DocsId": "M:System.Windows.Forms.DataGridView.HitTestInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L100C46-L100C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L100C46-L100C81" }, { "DocsId": "M:System.Windows.Forms.DataGridView.HitTestInfo.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L107C13-L107C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L107C13-L107C69" }, { "DocsId": "F:System.Windows.Forms.DataGridView.HitTestInfo.Nowhere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HitTestInfo.ColumnIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L41C17-L41C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L41C17-L41C29" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HitTestInfo.RowIndex", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L53C17-L53C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L53C17-L53C29" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HitTestInfo.ColumnX", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L64C17-L64C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L64C17-L64C34" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HitTestInfo.RowY", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L75C17-L75C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L75C17-L75C34" }, { "DocsId": "P:System.Windows.Forms.DataGridView.HitTestInfo.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L87C17-L87C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs#L87C17-L87C30" } ], "DocsId": "T:System.Windows.Forms.DataGridView.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.HitTestInfo.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L17C9-L19C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.#ctor(System.Windows.Forms.DataGridView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L21C73-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L21C73-L24C10" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L100C13-L132C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L100C13-L132C29" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L138C13-L150C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L138C13-L150C27" }, { "DocsId": "M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L155C13-L183C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L155C13-L183C33" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L30C17-L41C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L30C17-L41C40" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L45C40-L45C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L45C40-L45C65" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L53C17-L53C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L53C17-L53C43" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L70C17-L75C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L70C17-L75C63" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L83C17-L83C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L83C17-L83C43" }, { "DocsId": "P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L94C41-L94C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs#L94C41-L94C45" } ], "DocsId": "T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridView.TopRowAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L13C82-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L13C82-L15C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L23C13-L49C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L23C13-L49C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L51C48-L51C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L51C48-L51C49" }, { "DocsId": "P:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L17C49-L17C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs#L17C49-L17C91" } ], "DocsId": "T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L20C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L20C9-L22C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L24C9-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L24C9-L27C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L262C13-L308C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L262C13-L308C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L392C13-L407C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L392C13-L407C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L413C13-L427C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L413C13-L427C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetFocused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L431C59-L431C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L431C59-L431C63" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L433C60-L433C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L433C60-L433C64" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L437C13-L490C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L437C13-L490C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L566C13-L598C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L566C13-L598C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L29C45-L29C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L29C45-L29C99" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L35C17-L40C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L35C17-L40C94" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L50C17-L85C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L50C17-L85C29" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L93C20-L93C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L93C20-L93C26" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L105C53-L105C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L105C53-L105C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L120C48-L120C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L120C48-L120C67" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L128C17-L177C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L128C17-L177C30" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L185C17-L214C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs#L185C17-L214C41" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCell.DataGridViewCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L15C84-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L15C84-L17C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L79C13-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L79C13-L130C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L132C48-L132C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L132C48-L132C49" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L23C17-L42C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L23C17-L42C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L51C17-L73C151" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs#L51C17-L73C151" } ], "DocsId": "T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewColumnHeaderCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L15C100-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L15C100-L17C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L107C13-L136C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L107C13-L136C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L140C13-L156C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L140C13-L156C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L202C13-L236C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L202C13-L236C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L30C45-L32C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L30C45-L32C114" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L38C17-L57C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L38C17-L57C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L61C40-L63C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L61C40-L63C61" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L66C53-L68C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L66C53-L68C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L70C48-L70C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L70C48-L70C75" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L76C17-L99C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L76C17-L99C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L103C41-L103C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs#L103C41-L103C45" } ], "DocsId": "T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs#L15C84-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs#L15C84-L18C10" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.#ctor(System.Windows.Forms.DataGridViewComboBoxCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L21C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L21C9-L25C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L39C40-L39C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L39C40-L39C74" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L41C44-L41C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L41C44-L41C84" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L43C35-L43C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L43C35-L43C66" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L56C13-L81C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L56C13-L81C26" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L84C40-L84C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L84C40-L84C50" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L88C13-L91C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L88C13-L91C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L95C13-L120C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L95C13-L120C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L176C13-L182C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L176C13-L182C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L186C48-L186C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L186C48-L186C69" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L192C13-L192C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L192C13-L192C70" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L195C13-L195C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L195C13-L195C65" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L200C47-L200C73" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L200C47-L200C73" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L204C13-L206C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L204C13-L206C46" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L218C13-L235C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L218C13-L235C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L243C13-L249C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L243C13-L249C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L256C13-L263C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L256C13-L263C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L32C29-L32C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L32C29-L32C45" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L39C40-L39C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L39C40-L39C74" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L41C44-L41C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L41C44-L41C84" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L43C35-L43C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L43C35-L43C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L45C35-L45C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L45C35-L45C65" }, { "DocsId": "P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L154C17-L157C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs#L154C17-L157C42" } ], "DocsId": "T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewComboBoxCell.ObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L13C81-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L13C81-L15C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L34C13-L53C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L34C13-L53C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L55C48-L55C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L55C48-L55C49" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L17C49-L17C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L17C49-L17C61" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L19C48-L19C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L19C48-L19C119" }, { "DocsId": "P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L25C20-L25C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs#L25C20-L25C30" } ], "DocsId": "T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L13C80-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L13C80-L15C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L21C13-L46C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L21C13-L46C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L48C48-L48C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L48C48-L48C49" }, { "DocsId": "P:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L17C49-L17C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs#L17C49-L17C89" } ], "DocsId": "T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L20C9-L22C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L20C9-L22C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.#ctor(System.Windows.Forms.DataGridViewRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L24C9-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L24C9-L27C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L251C13-L277C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L251C13-L277C86" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L283C13-L300C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L283C13-L300C27" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetSelected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L303C59-L303C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L303C59-L303C91" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetFocused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L307C13-L321C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L307C13-L321C29" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L327C13-L392C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L327C13-L392C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L398C13-L447C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L398C13-L447C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L43C17-L84C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L43C17-L84C32" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L92C17-L101C110" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L92C17-L101C110" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L109C20-L109C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L109C20-L109C42" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L121C53-L121C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L121C53-L121C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L136C48-L136C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L136C48-L136C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L166C17-L204C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L166C17-L204C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L212C17-L243C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs#L212C17-L243C38" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRow.DataGridViewRowAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewRowHeaderCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L14C94-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L14C94-L16C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L120C13-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L120C13-L132C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L136C13-L201C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L136C13-L201C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L207C13-L241C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L207C13-L241C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L22C17-L41C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L22C17-L41C33" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L49C17-L61C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L49C17-L61C37" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L65C41-L65C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L65C41-L65C76" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L67C53-L67C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L67C53-L67C66" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L82C48-L82C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L82C48-L82C72" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L88C17-L112C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L88C17-L112C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L116C41-L116C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs#L116C41-L116C53" } ], "DocsId": "T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs#L13C83-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs#L13C83-L15C10" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewTopLeftHeaderCell)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L14C101-L16C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L14C101-L16C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L141C13-L145C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L141C13-L145C10" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L149C13-L187C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L149C13-L187C33" }, { "DocsId": "M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L193C13-L243C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L193C13-L243C10" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L22C17-L33C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L22C17-L33C71" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L41C17-L52C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L41C17-L52C41" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L61C17-L96C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L61C17-L96C41" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L105C17-L125C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L105C17-L125C36" }, { "DocsId": "P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L135C17-L135C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs#L135C17-L135C37" } ], "DocsId": "T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DataGridView/DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.#ctor(System.Windows.Forms.DateTimePicker)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L13C71-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L13C71-L15C10" }, { "DocsId": "M:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L109C13-L118C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L109C13-L118C10" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L24C17-L36C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L24C17-L36C29" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L42C40-L42C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L42C40-L42C81" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L50C17-L51C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L50C17-L51C91" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L61C17-L68C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L61C17-L68C30" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L72C48-L72C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L72C48-L72C100" }, { "DocsId": "P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L98C16-L102C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs#L98C16-L102C34" } ], "DocsId": "T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/DateTimePicker/DateTimePicker.DateTimePickerAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L110C40-L110C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L110C40-L110C44" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L112C44-L112C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L112C44-L112C49" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L114C35-L114C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L114C35-L114C40" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L188C20-L188C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L188C20-L188C31" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L191C17-L197C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L191C17-L197C14" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Add(System.String,System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L232C13-L240C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L232C13-L240C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Add(System.String,System.Drawing.Icon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L250C13-L258C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L250C13-L258C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L262C13-L268C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L262C13-L268C30" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Icon)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L273C13-L277C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L273C13-L277C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L284C13-L288C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L284C13-L288C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L297C13-L300C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L297C13-L300C40" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.AddRange(System.Drawing.Image[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L373C13-L383C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L373C13-L383C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.AddStrip(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L391C13-L408C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L391C13-L408C40" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L417C13-L427C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L417C13-L427C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Contains(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L430C46-L430C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L430C46-L430C79" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L434C13-L439C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L434C13-L439C36" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L445C48-L445C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L445C48-L445C77" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.IndexOf(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L448C44-L448C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L448C44-L448C77" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L452C13-L457C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L452C13-L457C35" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L466C13-L496C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L466C13-L496C23" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L499C56-L499C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L499C56-L499C89" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L509C18-L513C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L509C18-L513C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L520C13-L526C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L520C13-L526C43" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.Remove(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L530C44-L530C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L530C44-L530C77" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L534C13-L540C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L534C13-L540C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L544C13-L559C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L544C13-L559C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L566C13-L571C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L566C13-L571C10" }, { "DocsId": "M:System.Windows.Forms.ImageList.ImageCollection.SetKeyName(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L578C13-L589C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L578C13-L589C10" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.Keys", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L38C17-L52C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L38C17-L52C39" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L85C17-L105C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L85C17-L105C34" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L110C40-L110C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L110C40-L110C44" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L112C44-L112C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L112C44-L112C49" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L114C35-L114C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L114C35-L114C40" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L116C35-L116C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L116C35-L116C40" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.Empty", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L121C30-L121C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L121C30-L121C40" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L129C17-L132C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L129C17-L132C48" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L188C20-L188C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L188C20-L188C31" }, { "DocsId": "P:System.Windows.Forms.ImageList.ImageCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L208C17-L220C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs#L208C17-L220C36" } ], "DocsId": "T:System.Windows.Forms.ImageList.ImageCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ImageList/ImageList.ImageCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L25C13-L30C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L25C13-L30C61" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L39C13-L44C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L39C13-L44C64" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L52C13-L76C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L52C13-L76C62" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L88C13-L111C77" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L88C13-L111C77" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L121C13-L137C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L121C13-L137C10" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L143C93-L143C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L143C93-L143C97" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L153C13-L154C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L153C13-L154C64" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L160C89-L160C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs#L160C89-L160C93" }, { "DocsId": "M:System.Windows.Forms.LinkArea.LinkAreaConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" } ], "DocsId": "T:System.Windows.Forms.LinkArea.LinkAreaConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkArea.LinkAreaConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkLabel.Link.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L23C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.Link.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L29C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.Link.#ctor(System.Int32,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L36C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L16C9-L36C10" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L51C38-L51C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L51C38-L51C42" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Enabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L56C20-L56C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L56C20-L56C28" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Length", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L78C17-L91C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L78C17-L91C32" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.LinkData", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L108C35-L108C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L108C35-L108C39" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L126C20-L126C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L126C20-L126C41" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Start", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L132C20-L132C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L132C20-L132C26" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L155C30-L155C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L155C30-L155C34" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.Link.Visited", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L160C20-L160C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs#L160C20-L160C68" } ], "DocsId": "T:System.Windows.Forms.LinkLabel.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.Link.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.#ctor(System.Windows.Forms.LinkLabel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L20C9-L22C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L20C9-L22C81" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L43C20-L43C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L43C20-L43C31" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L46C17-L52C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L46C17-L52C85" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L91C40-L91C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L91C40-L91C44" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L93C44-L93C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L93C44-L93C49" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L95C35-L95C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L95C35-L95C40" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L101C13-L106C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L101C13-L106C45" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Int32,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L111C13-L135C22" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L111C13-L135C22" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Windows.Forms.LinkLabel.Link)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L140C13-L184C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L140C13-L184C26" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L190C13-L196C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L190C13-L196C81" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L202C13-L208C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L202C13-L208C81" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Contains(System.Windows.Forms.LinkLabel.Link)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L214C13-L214C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L214C13-L214C49" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L222C13-L222C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L222C13-L222C50" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L227C13-L233C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L227C13-L233C30" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.IndexOf(System.Windows.Forms.LinkLabel.Link)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L239C13-L239C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L239C13-L239C48" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L244C13-L250C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L244C13-L250C27" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L260C13-L286C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L260C13-L286C23" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L302C13-L315C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L302C13-L315C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L319C13-L320C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L319C13-L320C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L324C13-L330C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L324C13-L330C60" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.Remove(System.Windows.Forms.LinkLabel.Link)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L336C13-L361C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L336C13-L361C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L365C13-L366C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L365C13-L366C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L373C13-L378C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L373C13-L378C10" }, { "DocsId": "M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L382C13-L386C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L382C13-L386C10" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L28C17-L28C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L28C17-L28C45" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L43C20-L43C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L43C20-L43C31" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L65C17-L78C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L65C17-L78C33" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L84C29-L84C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L84C29-L84C48" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.LinksAdded", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L89C34-L89C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L89C34-L89C38" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L91C40-L91C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L91C40-L91C44" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L93C44-L93C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L93C44-L93C49" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L95C35-L95C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L95C35-L95C40" }, { "DocsId": "P:System.Windows.Forms.LinkLabel.LinkCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L97C35-L97C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs#L97C35-L97C40" } ], "DocsId": "T:System.Windows.Forms.LinkLabel.LinkCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Labels/LinkLabel.LinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L35C17-L35C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L35C17-L35C29" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L43C17-L43C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L43C17-L43C30" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L51C17-L51C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L51C17-L51C29" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L81C17-L81C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L81C17-L81C36" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L85C17-L85C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L85C17-L85C100" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L91C13-L91C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L91C13-L91C96" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L96C13-L96C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L96C13-L96C96" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L101C13-L101C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L101C13-L101C96" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L106C13-L106C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L106C13-L106C96" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L111C13-L111C96" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L111C13-L111C96" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Contains(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L116C13-L116C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L116C13-L116C41" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L121C13-L127C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L121C13-L127C30" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L133C13-L138C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L133C13-L138C10" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L154C13-L156C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L154C13-L156C44" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L161C13-L167C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L161C13-L167C23" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L172C13-L178C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L172C13-L178C27" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L27C17-L27C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L27C17-L27C50" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L35C17-L35C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L35C17-L35C29" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L43C17-L43C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L43C17-L43C30" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L51C17-L51C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L51C17-L51C29" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L59C17-L59C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L59C17-L59C29" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L72C17-L73C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L72C17-L73C69" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L81C17-L81C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs#L81C17-L81C36" } ], "DocsId": "T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedIndexCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L68C17-L68C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L68C17-L68C29" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L76C17-L76C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L76C17-L76C30" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L84C17-L84C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L84C17-L84C29" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L98C13-L98C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L98C13-L98C40" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L103C13-L103C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L103C13-L103C56" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L113C13-L113C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L113C13-L113C95" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L118C13-L118C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L118C13-L118C95" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L123C13-L123C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L123C13-L123C95" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L128C13-L128C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L128C13-L128C95" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L133C13-L133C95" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L133C13-L133C95" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L138C13-L143C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L138C13-L143C10" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L168C13-L168C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L168C13-L168C62" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L31C17-L31C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L31C17-L31C55" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L56C17-L56C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L56C17-L56C61" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L68C17-L68C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L68C17-L68C29" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L76C17-L76C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L76C17-L76C30" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L84C17-L84C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L84C17-L84C29" }, { "DocsId": "P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L92C17-L92C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs#L92C17-L92C29" } ], "DocsId": "T:System.Windows.Forms.CheckedListBox.CheckedItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.CheckedItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.CheckedListBox.ObjectCollection.#ctor(System.Windows.Forms.CheckedListBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L12C57-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L12C57-L15C10" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.ObjectCollection.Add(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L23C13-L23C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L23C13-L23C85" }, { "DocsId": "M:System.Windows.Forms.CheckedListBox.ObjectCollection.Add(System.Object,System.Windows.Forms.CheckState)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L35C13-L40C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs#L35C13-L40C26" } ], "DocsId": "T:System.Windows.Forms.CheckedListBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/CheckedListBox.ObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.#ctor(System.Windows.Forms.ListBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L38C17-L38C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L38C17-L38C29" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L46C17-L46C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L46C17-L46C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L54C17-L54C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L54C17-L54C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L62C17-L62C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L62C17-L62C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.Contains(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L68C13-L68C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L68C13-L68C40" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L73C13-L78C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L73C13-L78C26" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L83C13-L85C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L83C13-L85C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.IndexOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L89C13-L105C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L89C13-L105C26" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L110C13-L115C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L110C13-L115C23" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L145C13-L148C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L145C13-L148C26" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L153C13-L158C35" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L153C13-L158C35" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Int32[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L163C13-L164C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L163C13-L164C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Windows.Forms.ListBox.IntegerCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L168C13-L169C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L168C13-L169C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L223C13-L224C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L223C13-L224C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L228C13-L228C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L228C13-L228C88" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L233C13-L239C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L233C13-L239C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L243C13-L244C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L243C13-L244C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.Remove(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L252C13-L258C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L252C13-L258C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L265C13-L273C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L265C13-L273C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L302C17-L302C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L302C17-L302C36" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L306C17-L314C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L306C17-L314C14" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L319C13-L326C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L319C13-L326C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L330C13-L330C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L330C13-L330C57" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L30C17-L30C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L30C17-L30C31" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L38C17-L38C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L38C17-L38C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L46C17-L46C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L46C17-L46C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L54C17-L54C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L54C17-L54C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L62C17-L62C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L62C17-L62C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L282C17-L285C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L282C17-L285C44" }, { "DocsId": "P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L302C17-L302C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs#L302C17-L302C36" } ], "DocsId": "T:System.Windows.Forms.ListBox.IntegerCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.IntegerCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L23C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L23C9-L26C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox,System.Windows.Forms.ListBox.ObjectCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L32C15-L37C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L32C15-L37C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox,System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L43C15-L48C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L43C15-L48C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L68C40-L68C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L68C40-L68C44" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L70C44-L70C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L70C44-L70C49" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L72C35-L72C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L72C35-L72C40" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L87C13-L90C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L87C13-L90C26" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L161C40-L161C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L161C40-L161C50" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Windows.Forms.ListBox.ObjectCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L165C13-L169C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L165C13-L169C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L173C13-L177C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L173C13-L177C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L224C20-L224C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L224C20-L224C31" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L225C20-L225C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L225C20-L225C40" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L233C13-L235C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L233C13-L235C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L263C13-L263C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L263C13-L263C41" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L266C47-L266C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L266C47-L266C63" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L273C13-L280C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L273C13-L280C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L284C13-L291C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L284C13-L291C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L296C47-L296C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L296C47-L296C74" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L300C13-L302C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L300C13-L302C46" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L305C45-L305C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L305C45-L305C60" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L325C13-L361C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L325C13-L361C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L363C55-L363C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L363C55-L363C75" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L371C13-L378C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L371C13-L378C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L380C45-L380C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L380C45-L380C59" }, { "DocsId": "M:System.Windows.Forms.ListBox.ObjectCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L387C13-L408C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L387C13-L408C10" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L53C29-L53C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L53C29-L53C45" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L68C40-L68C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L68C40-L68C44" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L70C44-L70C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L70C44-L70C49" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L72C35-L72C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L72C35-L72C40" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L74C35-L74C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L74C35-L74C40" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L210C17-L213C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L210C17-L213C50" }, { "DocsId": "P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L224C20-L224C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs#L224C20-L224C31" } ], "DocsId": "T:System.Windows.Forms.ListBox.ObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.ObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.#ctor(System.Windows.Forms.ListBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L36C17-L36C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L36C17-L36C29" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L44C17-L44C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L44C17-L44C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L52C17-L52C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L52C17-L52C29" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.Contains(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L66C13-L66C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L66C13-L66C49" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L71C13-L77C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L71C13-L77C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.IndexOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L87C13-L94C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L87C13-L94C23" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L99C13-L105C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L99C13-L105C27" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L111C13-L111C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L111C13-L111C90" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L116C13-L116C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L116C13-L116C90" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L121C13-L121C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L121C13-L121C90" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L126C13-L126C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L126C13-L126C90" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L131C13-L131C90" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L131C13-L131C90" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L150C17-L150C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L150C17-L150C36" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L154C17-L154C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L154C17-L154C94" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L173C13-L178C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L173C13-L178C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L182C13-L183C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L187C13-L198C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L187C13-L198C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.Remove(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L202C13-L213C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L202C13-L213C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedIndexCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L217C13-L217C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L217C13-L217C54" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L28C17-L28C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L28C17-L28C51" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L36C17-L36C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L36C17-L36C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L44C17-L44C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L44C17-L44C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L52C17-L52C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L52C17-L52C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L60C17-L60C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L141C17-L142C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L141C17-L142C55" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L150C17-L150C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs#L150C17-L150C36" } ], "DocsId": "T:System.Windows.Forms.ListBox.SelectedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedIndexCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.#ctor(System.Windows.Forms.ListBox)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L22C9-L27C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L22C9-L27C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L77C17-L77C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L77C17-L77C29" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L85C17-L85C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L85C17-L85C30" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L93C17-L93C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L93C17-L93C29" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L144C13-L144C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L144C13-L144C50" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L149C13-L149C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L149C13-L149C105" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L154C13-L154C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L154C13-L154C91" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L159C13-L159C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L159C13-L159C91" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L164C13-L164C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L164C13-L164C91" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L169C13-L169C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L169C13-L169C91" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L174C13-L174C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L174C13-L174C91" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L206C13-L211C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L206C13-L211C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L215C13-L215C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L215C13-L215C65" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L252C13-L253C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L257C13-L269C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L257C13-L269C10" }, { "DocsId": "M:System.Windows.Forms.ListBox.SelectedObjectCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L273C13-L285C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L273C13-L285C10" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L36C17-L69C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L36C17-L69C31" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L77C17-L77C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L77C17-L77C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L85C17-L85C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L85C17-L85C30" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L93C17-L93C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L93C17-L93C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L138C17-L138C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L138C17-L138C29" }, { "DocsId": "P:System.Windows.Forms.ListBox.SelectedObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L196C17-L196C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs#L196C17-L196C70" } ], "DocsId": "T:System.Windows.Forms.ListBox.SelectedObjectCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListBoxes/ListBox.SelectedObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L103C17-L103C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L103C17-L103C36" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L107C17-L107C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L107C17-L107C51" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L115C17-L115C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L115C17-L115C29" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L123C17-L123C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L123C17-L123C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L131C17-L131C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L131C17-L131C29" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.Contains(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L145C13-L151C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L145C13-L151C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L157C13-L163C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L157C13-L163C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.IndexOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L169C13-L178C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L169C13-L178C23" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L183C13-L189C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L183C13-L189C27" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L195C13-L195C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L195C13-L195C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L200C13-L200C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L200C13-L200C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L205C13-L205C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L205C13-L205C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L210C13-L210C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L210C13-L210C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L215C13-L215C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L215C13-L215C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L220C13-L224C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L220C13-L224C10" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedIndexCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L228C13-L235C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L228C13-L235C59" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L30C17-L45C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L30C17-L45C30" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L74C17-L95C134" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L74C17-L95C134" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L103C17-L103C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L103C17-L103C36" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L115C17-L115C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L115C17-L115C29" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L123C17-L123C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L123C17-L123C30" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L131C17-L131C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L131C17-L131C29" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedIndexCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L139C17-L139C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs#L139C17-L139C29" } ], "DocsId": "T:System.Windows.Forms.ListView.CheckedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedIndexCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L19C9-L25C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L19C9-L25C10" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L83C17-L88C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L83C17-L88C36" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L92C17-L92C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L92C17-L92C51" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L131C17-L131C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L131C17-L131C29" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L139C17-L139C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L139C17-L139C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L147C17-L147C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L147C17-L147C29" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L161C13-L172C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L161C13-L172C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L178C13-L189C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L178C13-L189C30" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L198C13-L203C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L198C13-L203C50" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L208C13-L222C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L208C13-L222C23" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L230C13-L262C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L230C13-L262C23" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L275C13-L286C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L275C13-L286C27" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L292C13-L292C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L292C13-L292C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L297C13-L297C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L297C13-L297C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L302C13-L302C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L302C13-L302C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L307C13-L307C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L307C13-L307C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L312C13-L312C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L312C13-L312C47" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L317C13-L326C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L317C13-L326C10" }, { "DocsId": "M:System.Windows.Forms.ListView.CheckedListViewItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L330C13-L342C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L330C13-L342C68" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L35C17-L40C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L35C17-L40C52" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L69C17-L75C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L69C17-L75C48" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L83C17-L88C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L83C17-L88C36" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L103C17-L122C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L103C17-L122C33" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L131C17-L131C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L131C17-L131C29" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L139C17-L139C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L139C17-L139C30" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L147C17-L147C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L147C17-L147C29" }, { "DocsId": "P:System.Windows.Forms.ListView.CheckedListViewItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L155C17-L155C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs#L155C17-L155C29" } ], "DocsId": "T:System.Windows.Forms.ListView.CheckedListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.CheckedListViewItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L125C9-L19C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L125C9-L19C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L31C17-L31C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L31C17-L31C36" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L35C17-L35C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L35C17-L35C51" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L81C17-L81C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L81C17-L81C29" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L89C17-L89C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L89C17-L89C29" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L97C17-L97C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L97C17-L97C30" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L114C13-L119C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L114C13-L119C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L133C13-L159C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L133C13-L159C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.Int32,System.Windows.Forms.HorizontalAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L175C13-L181C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L175C13-L181C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L186C13-L188C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L186C13-L188C26" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L193C13-L197C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L193C13-L197C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L204C13-L209C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L204C13-L209C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L214C13-L219C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L214C13-L219C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L224C13-L230C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L224C13-L230C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L235C13-L242C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L235C13-L242C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L247C13-L254C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L247C13-L254C61" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(System.Windows.Forms.ColumnHeader[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L261C13-L289C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L261C13-L289C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L293C13-L299C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L293C13-L299C102" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L309C13-L344C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L309C13-L344C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Contains(System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L348C13-L348C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L348C13-L348C41" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L353C13-L358C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L353C13-L358C26" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L366C13-L366C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L366C13-L366C50" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L371C13-L375C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L371C13-L375C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOf(System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L379C18-L387C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L379C18-L387C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L392C13-L397C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L392C13-L397C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L402C13-L406C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L402C13-L406C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L410C13-L414C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L410C13-L414C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L418C13-L425C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L418C13-L425C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L431C13-L436C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L431C13-L436C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L440C13-L446C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L440C13-L446C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L450C13-L456C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L450C13-L456C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L460C13-L467C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L460C13-L467C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L471C13-L479C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L471C13-L479C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L483C13-L491C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L483C13-L491C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L500C13-L565C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L500C13-L565C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.Remove(System.Windows.Forms.ColumnHeader)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L569C13-L574C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L569C13-L574C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L578C13-L582C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L578C13-L582C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ColumnHeaderCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L586C13-L592C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L586C13-L592C68" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L25C56-L25C85" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L25C56-L25C85" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L31C17-L31C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L31C17-L31C36" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L47C17-L60C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L47C17-L60C33" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L73C17-L73C89" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L73C17-L73C89" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L81C17-L81C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L81C17-L81C29" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L89C17-L89C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L89C17-L89C29" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L97C17-L97C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L97C17-L97C30" }, { "DocsId": "P:System.Windows.Forms.ListView.ColumnHeaderCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L105C17-L105C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs#L105C17-L105C30" } ], "DocsId": "T:System.Windows.Forms.ListView.ColumnHeaderCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ColumnHeaderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L20C9-L31C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L20C9-L31C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L47C40-L47C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L47C40-L47C44" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L49C44-L49C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L49C44-L49C48" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L51C35-L51C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L51C35-L51C40" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L88C17-L88C36" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L92C17-L95C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L92C17-L95C14" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L129C13-L129C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L129C13-L129C34" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L134C13-L144C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L134C13-L144C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L154C13-L156C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L154C13-L156C25" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L166C13-L167C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L166C13-L167C26" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L179C13-L181C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L179C13-L181C25" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L191C13-L196C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L191C13-L196C25" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L206C13-L211C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L206C13-L211C25" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListViewItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L218C13-L221C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L218C13-L221C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListView.ListViewItemCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L225C13-L230C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L225C13-L230C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L237C13-L238C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L237C13-L238C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L242C13-L242C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L242C13-L242C45" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L246C16-L246C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L246C16-L246C75" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L253C13-L253C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L253C13-L253C50" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L258C13-L259C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L258C13-L259C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Find(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L267C13-L272C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L267C13-L272C36" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L307C13-L313C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L307C13-L313C46" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L318C18-L326C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L318C18-L326C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L330C16-L330C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L330C16-L330C78" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L338C13-L364C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L338C13-L364C23" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L377C13-L381C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L377C13-L381C25" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L386C13-L386C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L386C13-L386C58" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L391C13-L391C70" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L391C13-L391C70" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L396C13-L404C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L396C13-L404C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L409C16-L409C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L409C16-L409C63" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L412C16-L415C15" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L412C16-L415C15" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L418C16-L421C15" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L418C16-L421C15" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.Remove(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L430C13-L431C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L430C13-L431C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L438C13-L442C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L438C13-L442C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L449C13-L454C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L449C13-L454C10" }, { "DocsId": "M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L458C13-L462C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L458C13-L462C10" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L45C29-L45C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L45C29-L45C44" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L47C40-L47C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L47C40-L47C44" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L49C44-L49C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L49C44-L49C48" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L51C35-L51C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L51C35-L51C40" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L53C35-L53C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L53C35-L53C40" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L62C17-L65C41" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L62C17-L65C41" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L88C17-L88C36" }, { "DocsId": "P:System.Windows.Forms.ListView.ListViewItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L106C17-L118C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs#L106C17-L118C29" } ], "DocsId": "T:System.Windows.Forms.ListView.ListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.ListViewItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L128C17-L128C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L128C17-L128C36" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L132C17-L132C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L132C17-L132C51" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L140C17-L140C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L140C17-L140C29" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L148C17-L148C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L148C17-L148C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L156C17-L156C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L156C17-L156C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.Contains(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L170C13-L175C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L170C13-L175C57" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L180C13-L186C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L180C13-L186C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.IndexOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L192C13-L201C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L192C13-L201C23" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L206C13-L212C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L206C13-L212C27" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L218C13-L224C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L218C13-L224C117" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L230C13-L231C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L235C13-L235C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L235C13-L235C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L240C13-L246C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L240C13-L246C117" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L252C13-L252C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L252C13-L252C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L257C13-L277C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L257C13-L277C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L283C13-L292C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L283C13-L292C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L296C13-L300C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L296C13-L300C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L304C13-L311C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L304C13-L311C59" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedIndexCollection.Remove(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L317C13-L333C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L317C13-L333C10" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L30C17-L41C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L30C17-L41C30" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L97C17-L119C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L97C17-L119C68" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L128C17-L128C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L128C17-L128C36" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L140C17-L140C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L140C17-L140C29" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L148C17-L148C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L148C17-L148C30" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L156C17-L156C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L156C17-L156C30" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedIndexCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L164C17-L164C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs#L164C17-L164C30" } ], "DocsId": "T:System.Windows.Forms.ListView.SelectedIndexCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedIndexCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.#ctor(System.Windows.Forms.ListView)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L19C9-L24C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L183C17-L188C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L183C17-L188C36" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L193C17-L193C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L193C17-L193C51" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L201C17-L201C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L201C17-L201C29" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L217C17-L217C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L217C17-L217C29" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L225C17-L225C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L225C17-L225C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L232C13-L232C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L232C13-L232C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L238C13-L238C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L238C13-L238C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L252C13-L252C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L252C13-L252C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L258C13-L258C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L258C13-L258C47" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L266C13-L276C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L266C13-L276C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L283C13-L288C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L283C13-L288C50" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L293C13-L298C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L293C13-L298C40" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L303C13-L314C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L303C13-L314C30" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L320C13-L329C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L320C13-L329C10" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L333C13-L345C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L333C13-L345C68" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L351C13-L365C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L351C13-L365C23" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L370C13-L381C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L370C13-L381C27" }, { "DocsId": "M:System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L390C13-L422C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L390C13-L422C23" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L87C17-L103C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L87C17-L103C30" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L115C17-L143C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L115C17-L143C62" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L155C17-L174C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L155C17-L174C33" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L183C17-L188C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L183C17-L188C36" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L201C17-L201C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L201C17-L201C29" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L209C17-L209C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L209C17-L209C29" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L217C17-L217C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L217C17-L217C29" }, { "DocsId": "P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L225C17-L225C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs#L225C17-L225C30" } ], "DocsId": "T:System.Windows.Forms.ListView.SelectedListViewItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListView.SelectedListViewItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L36C9-L38C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L36C9-L38C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor(System.Windows.Forms.ListViewItem,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L40C9-L44C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L40C9-L44C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor(System.Windows.Forms.ListViewItem,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L46C9-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L46C9-L56C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItem.ResetStyle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L255C13-L260C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L255C13-L260C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItem.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L262C46-L262C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L262C46-L262C76" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L75C17-L80C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L75C17-L80C76" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L99C17-L105C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L99C17-L105C44" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.Font", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L145C17-L150C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L145C17-L150C71" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L168C17-L173C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L168C17-L173C80" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.Tag", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L197C20-L197C28" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L197C20-L197C28" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.Text", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L205C20-L205C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L205C20-L205C40" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItem.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L217C20-L217C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs#L217C20-L217C40" } ], "DocsId": "T:System.Windows.Forms.ListViewItem.ListViewSubItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItem.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.#ctor(System.Windows.Forms.ListViewItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L19C9-L24C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L32C40-L32C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L32C40-L32C44" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L34C44-L34C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L34C44-L34C48" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L36C35-L36C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L36C35-L36C40" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L71C20-L71C31" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L74C17-L80C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L74C17-L80C14" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.Windows.Forms.ListViewItem.ListViewSubItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L109C13-L115C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L109C13-L115C25" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L120C13-L122C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L120C13-L122C25" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L127C13-L129C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L127C13-L129C25" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.Windows.Forms.ListViewItem.ListViewSubItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L134C13-L148C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L134C13-L148C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L152C13-L165C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L152C13-L165C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.String[],System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L169C13-L182C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L169C13-L182C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L186C13-L191C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L186C13-L191C44" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L196C13-L209C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L196C13-L209C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Contains(System.Windows.Forms.ListViewItem.ListViewSubItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L211C59-L211C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L211C59-L211C81" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L215C13-L220C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L215C13-L220C40" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L226C57-L226C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L226C57-L226C86" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOf(System.Windows.Forms.ListViewItem.ListViewSubItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L244C18-L252C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L244C18-L252C23" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L257C13-L262C42" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L257C13-L262C42" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L270C13-L293C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L270C13-L293C23" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Insert(System.Int32,System.Windows.Forms.ListViewItem.ListViewSubItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L303C13-L315C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L303C13-L315C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L319C13-L325C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L319C13-L325C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Remove(System.Windows.Forms.ListViewItem.ListViewSubItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L329C13-L334C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L329C13-L334C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L338C13-L342C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L338C13-L342C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L346C13-L359C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L346C13-L359C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L366C13-L371C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L366C13-L371C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L375C13-L379C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L375C13-L379C10" }, { "DocsId": "M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L383C13-L383C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L383C13-L383C53" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L30C29-L30C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L30C29-L30C48" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L32C40-L32C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L32C40-L32C44" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L34C44-L34C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L34C44-L34C48" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L36C35-L36C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L36C35-L36C40" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L38C35-L38C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L38C35-L38C40" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L47C17-L50C48" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L47C17-L50C48" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L71C20-L71C31" }, { "DocsId": "P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L91C17-L103C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs#L91C17-L103C36" } ], "DocsId": "T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ListView/ListViewItem.ListViewSubItemCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.Nowhere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.TitleBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.TitleMonth", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.TitleYear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.NextMonthButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.PrevMonthButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.CalendarBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.Date", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.NextMonthDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.PrevMonthDate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.DayOfWeek", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.WeekNumbers", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "DocsId": "F:System.Windows.Forms.MonthCalendar.HitArea.TodayLink", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" } ], "DocsId": "T:System.Windows.Forms.MonthCalendar.HitArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/HitArea.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.MonthCalendar.HitTestInfo.Point", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L34C30-L34C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L34C30-L34C34" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.HitTestInfo.HitArea", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L40C34-L40C38" }, { "DocsId": "P:System.Windows.Forms.MonthCalendar.HitTestInfo.Time", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L46C32-L46C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs#L46C32-L46C36" } ], "DocsId": "T:System.Windows.Forms.MonthCalendar.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/MonthCalendar/MonthCalendar.HitTestInfo.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L37C40-L37C44" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L39C44-L39C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L39C44-L39C49" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L59C13-L65C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L59C13-L65C10" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type,System.ComponentModel.PropertyTabScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L69C13-L75C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L69C13-L75C10" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Clear(System.ComponentModel.PropertyTabScope)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L83C13-L89C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L83C13-L89C10" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L93C13-L107C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L93C13-L107C10" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L114C13-L119C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L114C13-L119C80" }, { "DocsId": "M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.RemoveTabType(System.Type)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L124C13-L130C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L124C13-L130C10" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L28C17-L33C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L28C17-L33C55" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L37C40-L37C44" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L39C44-L39C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L39C44-L39C49" }, { "DocsId": "P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L48C17-L53C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs#L48C17-L53C60" } ], "DocsId": "T:System.Windows.Forms.PropertyGrid.PropertyTabCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGrid.PropertyTabCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControl.ControlCollection.#ctor(System.Windows.Forms.TabControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L14C54-L17C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L14C54-L17C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.ControlCollection.Add(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L21C13-L64C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L21C13-L64C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.ControlCollection.Remove(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L68C13-L87C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs#L68C13-L87C10" } ], "DocsId": "T:System.Windows.Forms.TabControl.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.ControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.#ctor(System.Windows.Forms.TabControl)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L19C9-L24C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L34C20-L34C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L34C20-L34C31" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L37C17-L43C14" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L37C17-L43C14" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L73C40-L73C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L73C40-L73C44" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L75C44-L75C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L75C44-L75C49" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L77C35-L77C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L77C35-L77C40" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L83C13-L86C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L83C13-L86C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L90C13-L96C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L90C13-L96C37" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L99C42-L102C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L99C42-L102C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L104C55-L108C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L104C55-L108C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L110C71-L115C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L110C71-L115C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L117C72-L122C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L117C72-L122C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.AddRange(System.Windows.Forms.TabPage[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L126C13-L132C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L126C13-L132C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Contains(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L136C13-L138C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L136C13-L138C40" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L143C13-L148C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L143C13-L148C38" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L156C13-L156C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L156C13-L156C50" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.IndexOf(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L161C13-L171C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L161C13-L171C23" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L176C13-L181C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L176C13-L181C37" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L189C13-L215C23" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L189C13-L215C23" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L223C13-L236C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L223C13-L236C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L240C13-L246C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L240C13-L246C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L248C56-L251C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L248C56-L251C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L253C69-L257C11" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L253C69-L257C11" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L261C13-L271C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L261C13-L271C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L275C13-L285C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L275C13-L285C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L295C40-L295C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L295C40-L295C58" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L298C13-L302C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L298C13-L302C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L306C13-L312C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L306C13-L312C45" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.Remove(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L317C13-L324C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L317C13-L324C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L328C13-L332C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L328C13-L332C10" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L334C44-L334C75" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L334C44-L334C75" }, { "DocsId": "M:System.Windows.Forms.TabControl.TabPageCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L341C13-L346C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L341C13-L346C10" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L28C20-L28C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L28C20-L28C44" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L34C20-L34C31" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L34C20-L34C31" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L54C17-L66C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L54C17-L66C36" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L71C29-L71C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L71C29-L71C44" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L73C40-L73C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L73C40-L73C44" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L75C44-L75C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L75C44-L75C49" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L77C35-L77C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L77C35-L77C40" }, { "DocsId": "P:System.Windows.Forms.TabControl.TabPageCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L79C35-L79C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs#L79C35-L79C40" } ], "DocsId": "T:System.Windows.Forms.TabControl.TabPageCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabControl.TabPageCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.TabPage.TabPageControlCollection.#ctor(System.Windows.Forms.TabPage)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs#L16C58-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs#L16C58-L18C10" }, { "DocsId": "M:System.Windows.Forms.TabPage.TabPageControlCollection.Add(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs#L29C13-L35C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs#L29C13-L35C10" } ], "DocsId": "T:System.Windows.Forms.TabPage.TabPageControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/TabControl/TabPage.TabPageControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.#ctor(System.Windows.Forms.ToolStrip)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L12C61-L14C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L12C61-L14C10" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.HitTest(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L24C13-L33C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L24C13-L33C38" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L42C13-L113C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L42C13-L113C25" }, { "DocsId": "M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L122C13-L146C26" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L122C13-L146C26" }, { "DocsId": "P:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L377C48-L377C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs#L377C48-L377C99" } ], "DocsId": "T:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStrip.ToolStripAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject.#ctor(System.Windows.Forms.Control,System.Windows.Forms.ToolStripControlHost)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs#L26C133-L30C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs#L26C133-L30C10" } ], "DocsId": "T:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.#ctor(System.Windows.Forms.ToolStripDropDown)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L13C77-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L13C77-L15C10" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L31C17-L32C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L31C17-L32C109" }, { "DocsId": "P:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L59C48-L59C101" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs#L59C48-L59C101" } ], "DocsId": "T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripDropDown.ToolStripDropDownAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.#ctor(System.Windows.Forms.ToolStripItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L25C9-L28C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L25C9-L28C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L203C13-L204C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.GetHelpTopic(System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L208C13-L224C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L208C13-L224C52" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L231C13-L268C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L231C13-L268C50" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.AddState(System.Windows.Forms.AccessibleStates)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L273C13-L281C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L273C13-L281C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L285C13-L290C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L285C13-L290C66" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L34C17-L40C49" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L34C17-L40C49" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Description", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L47C13-L47C97" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L47C13-L47C97" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Help", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L55C17-L63C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L55C17-L63C34" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.KeyboardShortcut", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L76C17-L83C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L76C17-L83C76" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L123C17-L135C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L123C17-L135C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L150C17-L156C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L150C17-L156C50" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L164C17-L197C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L164C17-L197C33" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Bounds", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L300C17-L307C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L300C17-L307C40" }, { "DocsId": "P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L318C17-L325C100" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs#L318C17-L325C100" } ], "DocsId": "T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripItem.ToolStripItemAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.#ctor(System.Windows.Forms.ToolStripPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.#ctor(System.Windows.Forms.ToolStripPanel,System.Windows.Forms.ToolStripPanelRow[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L22C9-L26C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Add(System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L41C13-L45C27" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L41C13-L45C27" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanelRow[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L50C13-L66C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L50C13-L66C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L70C13-L87C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L70C13-L87C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Contains(System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L91C13-L91C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L91C13-L91C46" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L96C13-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L96C13-L109C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L111C30-L111C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L111C30-L111C40" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L112C40-L112C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L112C40-L112C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L113C46-L113C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L113C46-L113C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L114C39-L114C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L114C39-L114C76" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L115C42-L115C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L115C42-L115C60" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L116C44-L116C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L116C44-L116C80" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L117C40-L117C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L117C40-L117C78" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L118C44-L118C86" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L118C44-L118C86" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L119C55-L119C98" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L119C55-L119C98" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L123C19-L123C43" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L124C19-L124C94" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L124C19-L124C94" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.IndexOf(System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L129C13-L129C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L129C13-L129C45" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Insert(System.Int32,System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L134C13-L138C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L134C13-L138C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Remove(System.Windows.Forms.ToolStripPanelRow)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L148C56-L148C79" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L148C56-L148C79" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L150C44-L150C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L150C44-L150C69" }, { "DocsId": "M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.CopyTo(System.Windows.Forms.ToolStripPanelRow[],System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L152C69-L152C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L152C69-L152C99" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L35C17-L35C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L35C17-L35C62" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L112C40-L112C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L112C40-L112C78" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L114C39-L114C76" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L114C39-L114C76" }, { "DocsId": "P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs#L123C19-L123C43" } ], "DocsId": "T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripPanel.ToolStripPanelRowCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.#ctor(System.Windows.Forms.ToolStripSplitButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs#L12C82-L15C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs#L12C82-L15C10" }, { "DocsId": "M:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.DoDefaultAction", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs#L19C13-L20C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs#L19C13-L20C10" } ], "DocsId": "T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/ToolStrips/ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.#ctor(System.Windows.Forms.Menu)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L26C9-L26C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L26C9-L26C91" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L32C20-L32C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L32C20-L32C30" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L33C19-L33C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L33C19-L33C20" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L40C40-L40C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L40C40-L40C50" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L42C44-L42C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L42C44-L42C54" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L44C35-L44C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L44C35-L44C45" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L48C56-L48C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L48C56-L48C66" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Add(System.String,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L50C78-L50C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L50C78-L50C88" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Add(System.String,System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L52C74-L52C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L52C74-L52C84" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Add(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L54C50-L54C60" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L54C50-L54C60" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Add(System.Int32,System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L56C61-L56C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L56C61-L56C71" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.AddRange(System.Windows.Forms.MenuItem[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L58C58-L58C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L58C58-L58C59" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L60C40-L60C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L60C40-L60C50" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Contains(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L62C49-L62C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L62C49-L62C59" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L64C46-L64C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L64C46-L64C56" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L66C56-L66C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L66C56-L66C66" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L68C39-L68C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L68C39-L68C40" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L70C53-L70C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L70C53-L70C54" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Find(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L72C71-L72C81" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L72C71-L72C81" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.IndexOf(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L74C47-L74C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L74C47-L74C57" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L76C54-L76C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L76C54-L76C64" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L78C44-L78C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L78C44-L78C54" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L80C54-L80C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L80C54-L80C55" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L82C47-L82C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L82C47-L82C57" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L84C51-L84C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L84C51-L84C52" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L86C55-L86C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L86C55-L86C56" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.Remove(System.Windows.Forms.MenuItem)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L88C53-L88C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L88C53-L88C54" }, { "DocsId": "M:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L90C43-L90C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L90C43-L90C44" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L28C52-L28C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L28C52-L28C62" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L32C20-L32C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L32C20-L32C30" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L36C53-L36C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L36C53-L36C63" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L38C29-L38C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L38C29-L38C39" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L40C40-L40C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L40C40-L40C50" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L42C44-L42C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L42C44-L42C54" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L44C35-L44C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L44C35-L44C45" }, { "DocsId": "P:System.Windows.Forms.Menu.MenuItemCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L46C35-L46C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs#L46C35-L46C45" } ], "DocsId": "T:System.Windows.Forms.Menu.MenuItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ContextMenu/Menu.MenuItemCollection.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestInfo.Nowhere", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HitTestInfo.Column", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L28C30-L28C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L28C30-L28C40" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HitTestInfo.Row", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L30C27-L30C37" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L30C27-L30C37" }, { "DocsId": "P:System.Windows.Forms.DataGrid.HitTestInfo.Type", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L32C36-L32C46" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs#L32C36-L32C46" } ], "DocsId": "T:System.Windows.Forms.DataGrid.HitTestInfo", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestInfo.cs" }, { "Members": [ { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.value__", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.None", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.Cell", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.ColumnHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.RowHeader", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.ColumnResize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.RowResize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "DocsId": "F:System.Windows.Forms.DataGrid.HitTestType.ParentRows", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" } ], "DocsId": "T:System.Windows.Forms.DataGrid.HitTestType", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGrid.HitTestType.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.CompModSwitches.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs#L24C9-L24C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs#L24C9-L24C78" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.CompModSwitches.DGEditColumnEditing", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs#L26C58-L26C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs#L26C58-L26C99" } ], "DocsId": "T:System.Windows.Forms.DataGridColumnStyle.CompModSwitches", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.CompModSwitches.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.#ctor(System.Windows.Forms.DataGridColumnStyle)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L26C9-L26C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L26C9-L26C124" }, { "DocsId": "M:System.Windows.Forms.DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L28C9-L28C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L28C9-L28C99" }, { "DocsId": "P:System.Windows.Forms.DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.Owner", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L30C48-L30C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs#L30C48-L30C58" } ], "DocsId": "T:System.Windows.Forms.DataGridColumnStyle.DataGridColumnHeaderAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/DataGrid/DataGridColumnStyle.DataGridColumnHeaderAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.#ctor(System.Windows.Forms.StatusBar)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L26C9-L26C102" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L26C9-L26C102" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L36C20-L36C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L36C20-L36C30" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L37C19-L37C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L37C19-L37C20" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L46C40-L46C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L46C40-L46C50" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L48C44-L48C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L48C44-L48C54" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L50C35-L50C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L50C35-L50C45" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L54C59-L54C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L54C59-L54C69" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Add(System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L56C57-L56C67" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L56C57-L56C67" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L58C40-L58C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L58C40-L58C50" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.AddRange(System.Windows.Forms.StatusBarPanel[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L60C65-L60C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L60C65-L60C66" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Contains(System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L62C55-L62C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L62C55-L62C65" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L64C46-L64C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L64C46-L64C56" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L66C56-L66C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L66C56-L66C66" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.IndexOf(System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L68C53-L68C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L68C53-L68C63" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L70C44-L70C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L70C44-L70C54" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L72C54-L72C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L72C54-L72C64" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Insert(System.Int32,System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L74C71-L74C72" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L74C71-L74C72" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L76C54-L76C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L76C54-L76C55" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L78C39-L78C40" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L78C39-L78C40" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Remove(System.Windows.Forms.StatusBarPanel)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L80C60-L80C61" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L80C60-L80C61" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L82C43-L82C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L82C43-L82C44" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L84C51-L84C52" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L84C51-L84C52" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L86C55-L86C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L86C55-L86C56" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L88C58-L88C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L88C58-L88C59" }, { "DocsId": "M:System.Windows.Forms.StatusBar.StatusBarPanelCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L90C47-L90C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L90C47-L90C57" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L30C20-L30C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L30C20-L30C30" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L36C20-L36C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L36C20-L36C30" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L40C59-L40C69" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L40C59-L40C69" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L44C29-L44C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L44C29-L44C39" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L46C40-L46C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L46C40-L46C50" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L48C44-L48C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L48C44-L48C54" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L50C35-L50C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L50C35-L50C45" }, { "DocsId": "P:System.Windows.Forms.StatusBar.StatusBarPanelCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L52C35-L52C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs#L52C35-L52C45" } ], "DocsId": "T:System.Windows.Forms.StatusBar.StatusBarPanelCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/StatusBar/StatusBar.StatusBarPanelCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.#ctor(System.Windows.Forms.ToolBar)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L25C9-L25C99" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L25C9-L25C99" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L35C20-L35C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L35C20-L35C30" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L36C19-L36C20" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L36C19-L36C20" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L44C40-L44C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L44C40-L44C50" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L46C44-L46C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L46C44-L46C54" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L48C35-L48C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L48C35-L48C45" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Add(System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L52C49-L52C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L52C49-L52C59" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L54C40-L54C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L54C40-L54C50" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L56C41-L56C51" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L56C41-L56C51" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.AddRange(System.Windows.Forms.ToolBarButton[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L58C57-L58C58" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L58C57-L58C58" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Clear", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L60C31-L60C32" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L60C31-L60C32" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Contains(System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L62C55-L62C65" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L62C55-L62C65" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L64C47-L64C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L64C47-L64C57" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L66C56-L66C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L66C56-L66C66" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L68C58-L68C59" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L68C58-L68C59" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.IndexOf(System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L70C53-L70C63" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L70C53-L70C63" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L72C45-L72C55" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L72C45-L72C55" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.IndexOfKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L74C54-L74C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L74C54-L74C64" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Insert(System.Int32,System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L76C63-L76C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L76C63-L76C64" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L78C55-L78C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L78C55-L78C56" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L80C43-L80C44" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L80C43-L80C44" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.RemoveByKey(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L82C55-L82C56" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L82C55-L82C56" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Remove(System.Windows.Forms.ToolBarButton)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L84C52-L84C53" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L84C52-L84C53" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L86C44-L86C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L86C44-L86C45" }, { "DocsId": "M:System.Windows.Forms.ToolBar.ToolBarButtonCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L88C47-L88C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L88C47-L88C57" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L29C20-L29C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L29C20-L29C30" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L35C20-L35C30" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L35C20-L35C30" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L39C58-L39C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L39C58-L39C68" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.Count", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L42C29-L42C39" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L42C29-L42C39" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L44C40-L44C50" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L44C40-L44C50" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L46C44-L46C54" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L46C44-L46C54" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L48C35-L48C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L48C35-L48C45" }, { "DocsId": "P:System.Windows.Forms.ToolBar.ToolBarButtonCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L50C35-L50C45" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs#L50C35-L50C45" } ], "DocsId": "T:System.Windows.Forms.ToolBar.ToolBarButtonCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/Unsupported/ToolBar/ToolBar.ToolBarButtonCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.#ctor(System.String,System.Windows.Forms.AccessibleObject)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L20C9-L23C10" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L27C20-L27C25" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L27C20-L27C25" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Parent", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L35C53-L35C57" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L35C53-L35C57" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L37C48-L37C71" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L37C48-L37C71" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.State", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L39C51-L39C78" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L39C51-L39C78" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Value", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L41C42-L41C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs#L41C42-L41C47" } ], "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainItemAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.#ctor(System.Windows.Forms.DomainUpDown)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L20C67-L23C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L20C67-L23C10" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChild(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L27C66-L27C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L27C66-L27C109" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChildCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L29C48-L29C91" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L29C48-L29C91" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.Role", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L25C48-L25C80" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs#L25C48-L25C80" } ], "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownAccessibleObject.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L56C13-L62C24" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L56C13-L62C24" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L69C13-L79C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L69C13-L79C10" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L86C13-L98C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L86C13-L98C10" }, { "DocsId": "M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L104C13-L109C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L104C13-L109C10" }, { "DocsId": "P:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L31C17-L31C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs#L31C17-L31C36" } ], "DocsId": "T:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/UpDown/DomainUpDown.DomainUpDownItemCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.#ctor(System.Windows.Forms.WebBrowser)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L24C15-L26C10" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#ShowContextMenu(System.UInt32,System.Drawing.Point*,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L31C13-L55C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L31C13-L55C33" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#GetHostInfo(Windows.Win32.Web.MsHtml.DOCHOSTUIINFO*)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L60C13-L89C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L60C13-L89C33" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#EnableModeless(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L94C13-L94C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L94C13-L94C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#ShowUI(System.UInt32,Windows.Win32.System.Ole.IOleInPlaceActiveObject.Interface,Windows.Win32.System.Ole.IOleCommandTarget.Interface,Windows.Win32.System.Ole.IOleInPlaceFrame.Interface,Windows.Win32.System.Ole.IOleInPlaceUIWindow.Interface)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L104C13-L104C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L104C13-L104C36" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#HideUI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L109C13-L109C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L109C13-L109C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#UpdateUI", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L114C13-L114C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L114C13-L114C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#OnDocWindowActivate(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L119C13-L119C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L119C13-L119C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#OnFrameWindowActivate(Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L124C13-L124C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L124C13-L124C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#ResizeBorder(Windows.Win32.Foundation.RECT*,Windows.Win32.System.Ole.IOleInPlaceUIWindow.Interface,Windows.Win32.Foundation.BOOL)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L129C13-L129C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L129C13-L129C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#GetOptionKeyPath(System.String[],System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L134C13-L134C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L134C13-L134C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#GetDropTarget(Windows.Win32.System.Ole.IDropTarget.Interface,Windows.Win32.System.Ole.IDropTarget.Interface@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L141C13-L142C38" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L141C13-L142C38" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#GetExternal(System.Object@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L147C13-L149C33" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L147C13-L149C33" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#TranslateAccelerator(Windows.Win32.UI.WindowsAndMessaging.MSG*,System.Guid*,System.UInt32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L154C13-L171C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L154C13-L171C36" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#TranslateUrl(System.UInt32,System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L178C13-L179C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L178C13-L179C36" }, { "DocsId": "M:System.Windows.Forms.WebBrowser.WebBrowserSite.Interop#Mshtml#IDocHostUIHandler#FilterDataObject(System.Runtime.InteropServices.ComTypes.IDataObject,System.Runtime.InteropServices.ComTypes.IDataObject@)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L186C13-L187C36" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs#L186C13-L187C36" } ], "DocsId": "T:System.Windows.Forms.WebBrowser.WebBrowserSite", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Controls/WebBrowser/WebBrowser.WebBrowserSite.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.Form.ControlCollection.#ctor(System.Windows.Forms.Form)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L21C15-L24C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L21C15-L24C10" }, { "DocsId": "M:System.Windows.Forms.Form.ControlCollection.Add(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L31C13-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L31C13-L56C10" }, { "DocsId": "M:System.Windows.Forms.Form.ControlCollection.Remove(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs#L63C13-L69C10" } ], "DocsId": "T:System.Windows.Forms.Form.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Form.ControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.MdiClient.ControlCollection.#ctor(System.Windows.Forms.MdiClient)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L15C53-L18C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L15C53-L18C10" }, { "DocsId": "M:System.Windows.Forms.MdiClient.ControlCollection.Add(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L39C13-L56C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L39C13-L56C10" }, { "DocsId": "M:System.Windows.Forms.MdiClient.ControlCollection.Remove(System.Windows.Forms.Control)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs#L63C13-L69C10" } ], "DocsId": "T:System.Windows.Forms.MdiClient.ControlCollection", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/MDI/MDIClient.ControlCollection.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.DataFormats.Format.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L25C9-L29C10" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L25C9-L29C10" }, { "DocsId": "M:System.Windows.Forms.DataFormats.Format.System#Private#Windows#Ole#IDataFormat#Create(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L35C74-L35C87" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L35C74-L35C87" }, { "DocsId": "P:System.Windows.Forms.DataFormats.Format.Name", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L31C30-L31C34" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L31C30-L31C34" }, { "DocsId": "P:System.Windows.Forms.DataFormats.Format.Id", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L33C25-L33C29" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs#L33C25-L33C29" } ], "DocsId": "T:System.Windows.Forms.DataFormats.Format", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/OLE/DataFormats.Format.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs#L20C13-L21C74" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs#L20C13-L21C74" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs#L27C89-L27C93" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs#L27C89-L27C93" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.#ctor", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" } ], "DocsId": "T:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs" }, { "Members": [ { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L187C13-L191C43" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L187C13-L191C43" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.GetHashCode", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L194C46-L194C88" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L194C46-L194C88" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.ToString", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L211C46-L211C104" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L211C46-L211C104" }, { "DocsId": "M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L213C38-L213C84" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L213C38-L213C84" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.All", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L48C17-L74C47" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L48C17-L74C47" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L100C20-L100C68" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L100C20-L100C68" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L123C20-L123C64" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L123C20-L123C64" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L146C20-L146C66" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L146C20-L146C66" }, { "DocsId": "P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L169C20-L169C62" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdgesConverter.cs#L169C20-L169C62" } ], "DocsId": "T:System.Windows.Forms.ScrollableControl.DockPaddingEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/Scrolling/ScrollableControl.DockPaddingEdges.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L47C56-L47C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L47C56-L47C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L51C53-L51C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L51C53-L51C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L55C57-L55C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L55C57-L55C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L59C58-L59C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L59C58-L59C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Default", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L63C57-L63C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L63C57-L63C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L74C65-L74C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L74C65-L74C129" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L78C62-L78C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L78C62-L78C123" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L82C66-L82C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L82C66-L82C131" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L86C67-L86C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L86C67-L86C133" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L90C63-L90C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L90C63-L90C125" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L94C60-L94C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L94C60-L94C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L98C64-L98C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L98C64-L98C127" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L102C65-L102C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L102C65-L102C129" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L113C65-L113C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L113C65-L113C129" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L117C62-L117C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L117C62-L117C123" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L121C66-L121C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L121C66-L121C131" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L125C67-L125C133" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L125C67-L125C133" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L129C63-L129C125" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L129C63-L129C125" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L133C60-L133C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L133C60-L133C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L137C64-L137C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L137C64-L137C127" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L141C65-L141C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L141C65-L141C129" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L145C61-L145C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L145C61-L145C121" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L149C58-L149C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L149C58-L149C116" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L153C62-L153C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L153C62-L153C124" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L157C63-L157C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L157C63-L157C126" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L168C56-L168C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L168C56-L168C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L172C58-L172C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L172C58-L172C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L181C56-L181C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L181C56-L181C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L195C56-L195C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L195C56-L195C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L199C53-L199C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L199C53-L199C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L203C57-L203C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L203C57-L203C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L207C58-L207C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L207C58-L207C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L287C56-L287C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L287C56-L287C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L291C53-L291C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L291C53-L291C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L295C57-L295C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L295C57-L295C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L299C58-L299C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L299C58-L299C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L308C56-L308C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L308C56-L308C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L312C53-L312C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L312C53-L312C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L316C57-L316C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L316C57-L316C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L320C58-L320C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L320C58-L320C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L329C56-L329C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L329C56-L329C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L333C53-L333C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L333C53-L333C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L337C57-L337C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L337C57-L337C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L341C58-L341C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L341C58-L341C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L350C56-L350C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L350C56-L350C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L354C53-L354C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L354C53-L354C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L358C57-L358C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L358C57-L358C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L362C58-L362C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L362C58-L362C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L376C56-L376C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L376C56-L376C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L380C53-L380C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L380C53-L380C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L384C57-L384C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L384C57-L384C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L388C58-L388C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L388C58-L388C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L397C56-L397C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L397C56-L397C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L401C53-L401C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L401C53-L401C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L405C57-L405C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L405C57-L405C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L409C58-L409C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L409C58-L409C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L418C56-L418C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L418C56-L418C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L422C53-L422C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L422C53-L422C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L426C57-L426C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L426C57-L426C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L430C58-L430C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L430C58-L430C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L439C56-L439C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L439C56-L439C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L443C53-L443C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L443C53-L443C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L447C57-L447C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L447C57-L447C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L451C58-L451C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L451C58-L451C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L465C58-L465C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L465C58-L465C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L469C55-L469C109" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L469C55-L469C109" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L473C59-L473C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L473C59-L473C117" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L477C60-L477C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L477C60-L477C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L481C60-L481C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L481C60-L481C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L485C57-L485C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L485C57-L485C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L489C61-L489C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L489C61-L489C121" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L493C62-L493C123" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L493C62-L493C123" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L497C60-L497C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L497C60-L497C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L501C57-L501C114" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L501C57-L501C114" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L505C61-L505C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L505C61-L505C122" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L509C62-L509C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L509C62-L509C124" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L513C61-L513C122" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L513C61-L513C122" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L517C58-L517C116" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L517C58-L517C116" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L521C62-L521C124" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L521C62-L521C124" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightDisabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L525C63-L525C126" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L525C63-L525C126" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L534C56-L534C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L534C56-L534C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L538C53-L538C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L538C53-L538C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L542C57-L542C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L542C57-L542C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L546C58-L546C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L546C58-L546C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L555C56-L555C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L555C56-L555C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L559C53-L559C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L559C53-L559C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L563C57-L563C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L563C57-L563C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L567C58-L567C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L567C58-L567C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L576C56-L576C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L576C56-L576C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L580C53-L580C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L580C53-L580C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L584C57-L584C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L584C57-L584C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L588C58-L588C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L588C58-L588C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L597C56-L597C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L597C56-L597C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L601C53-L601C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L601C53-L601C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L605C57-L605C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L605C57-L605C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L609C58-L609C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L609C58-L609C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L618C56-L618C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L618C56-L618C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L622C53-L622C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L622C53-L622C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L626C57-L626C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L626C57-L626C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L630C58-L630C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L630C58-L630C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L639C56-L639C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L639C56-L639C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L643C53-L643C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L643C53-L643C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L647C57-L647C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L647C57-L647C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L651C58-L651C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L651C58-L651C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L660C56-L660C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L660C56-L660C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L669C56-L669C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L669C56-L669C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.RightAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L678C60-L678C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L678C60-L678C119" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.LeftAlign", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L682C59-L682C117" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L682C59-L682C117" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L696C56-L696C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L696C56-L696C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L700C53-L700C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L700C53-L700C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L704C57-L704C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L704C57-L704C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L708C58-L708C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L708C58-L708C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L717C56-L717C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L717C56-L717C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L721C53-L721C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L721C53-L721C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L725C57-L725C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L725C57-L725C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L729C58-L729C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L729C58-L729C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L738C56-L738C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L738C56-L738C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L742C53-L742C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L742C53-L742C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L746C57-L746C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L746C57-L746C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L750C58-L750C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L750C58-L750C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L759C56-L759C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L759C56-L759C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L768C56-L768C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L768C56-L768C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L772C53-L772C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L772C53-L772C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L776C57-L776C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L776C57-L776C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L780C58-L780C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L780C58-L780C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L789C56-L789C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L789C56-L789C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L793C53-L793C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L793C53-L793C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L797C57-L797C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L797C57-L797C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L801C58-L801C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L801C58-L801C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L810C56-L810C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L810C56-L810C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L814C53-L814C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L814C53-L814C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L818C57-L818C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L818C57-L818C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L822C58-L822C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L822C58-L822C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L831C56-L831C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L831C56-L831C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L840C56-L840C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L840C56-L840C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L849C56-L849C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L849C56-L849C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L863C56-L863C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L863C56-L863C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L872C56-L872C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L872C56-L872C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L876C53-L876C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L876C53-L876C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L880C57-L880C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L880C57-L880C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L889C56-L889C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L889C56-L889C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L893C53-L893C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L893C53-L893C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L897C57-L897C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L897C57-L897C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedNormal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L901C64-L901C127" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L901C64-L901C127" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedHot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L905C61-L905C121" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L905C61-L905C121" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedPressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L909C65-L909C129" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L909C65-L909C129" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L918C56-L918C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L918C56-L918C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L922C53-L922C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L922C53-L922C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L926C57-L926C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L926C57-L926C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L935C56-L935C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L935C56-L935C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L944C56-L944C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L944C56-L944C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L948C53-L948C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L948C53-L948C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L952C57-L952C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L952C57-L952C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L961C56-L961C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L961C56-L961C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L965C53-L965C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L965C53-L965C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L969C57-L969C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L969C57-L969C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L978C56-L978C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L978C56-L978C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L987C56-L987C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L987C56-L987C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L996C56-L996C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L996C56-L996C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1000C53-L1000C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1000C53-L1000C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1004C57-L1004C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1004C57-L1004C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1013C56-L1013C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1013C56-L1013C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1017C53-L1017C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1017C53-L1017C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1021C57-L1021C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1021C57-L1021C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1030C56-L1030C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1030C56-L1030C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1044C56-L1044C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1044C56-L1044C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1048C53-L1048C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1048C53-L1048C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1052C57-L1052C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1052C57-L1052C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1061C56-L1061C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1061C56-L1061C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1065C53-L1065C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1065C53-L1065C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1069C57-L1069C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1069C57-L1069C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1078C56-L1078C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1078C56-L1078C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1082C53-L1082C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1082C53-L1082C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1086C57-L1086C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1086C57-L1086C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedUp", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1095C58-L1095C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1095C58-L1095C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1099C60-L1099C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1099C60-L1099C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1113C56-L1113C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1113C56-L1113C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1117C53-L1117C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1117C53-L1117C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1121C58-L1121C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1121C58-L1121C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1125C58-L1125C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1125C58-L1125C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.SelectedNotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1129C66-L1129C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1129C66-L1129C131" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1138C56-L1138C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1138C56-L1138C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1147C56-L1147C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1147C56-L1147C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1156C56-L1156C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1156C56-L1156C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1165C56-L1165C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1165C56-L1165C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1179C56-L1179C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1179C56-L1179C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1183C53-L1183C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1183C53-L1183C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1187C57-L1187C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1187C57-L1187C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1191C58-L1191C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1191C58-L1191C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1195C57-L1195C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1195C57-L1195C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1199C60-L1199C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1199C60-L1199C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1208C56-L1208C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1208C56-L1208C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1222C56-L1222C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1222C56-L1222C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1226C58-L1226C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1226C58-L1226C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Demoted", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1230C57-L1230C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1230C57-L1230C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1239C56-L1239C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1239C56-L1239C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1248C56-L1248C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1248C56-L1248C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1257C56-L1257C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1257C56-L1257C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1266C56-L1266C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1266C56-L1266C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1275C56-L1275C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1275C56-L1275C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1289C56-L1289C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1289C56-L1289C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1298C56-L1298C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1298C56-L1298C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1307C56-L1307C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1307C56-L1307C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1316C56-L1316C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1316C56-L1316C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1330C56-L1330C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1330C56-L1330C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1339C56-L1339C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1339C56-L1339C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1348C56-L1348C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1348C56-L1348C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1357C56-L1357C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1357C56-L1357C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1361C53-L1361C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1361C53-L1361C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1365C57-L1365C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1365C57-L1365C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1374C56-L1374C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1374C56-L1374C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1378C53-L1378C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1378C53-L1378C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1382C57-L1382C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1382C57-L1382C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1396C56-L1396C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1396C56-L1396C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1405C56-L1405C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1405C56-L1405C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1414C56-L1414C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1414C56-L1414C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1418C53-L1418C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1418C53-L1418C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1422C57-L1422C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1422C57-L1422C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1431C56-L1431C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1431C56-L1431C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1440C56-L1440C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1440C56-L1440C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1449C56-L1449C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1449C56-L1449C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1458C56-L1458C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1458C56-L1458C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1468C56-L1468C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1468C56-L1468C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1478C56-L1478C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1478C56-L1478C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1482C53-L1482C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1482C53-L1482C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1486C57-L1486C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1486C57-L1486C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1495C56-L1495C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1495C56-L1495C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1504C56-L1504C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1504C56-L1504C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1516C56-L1516C108" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1516C56-L1516C108" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1525C56-L1525C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1525C56-L1525C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1534C56-L1534C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1534C56-L1534C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1543C56-L1543C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1543C56-L1543C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1557C56-L1557C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1557C56-L1557C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1566C56-L1566C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1566C56-L1566C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1575C56-L1575C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1575C56-L1575C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1589C56-L1589C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1589C56-L1589C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1603C56-L1603C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1603C56-L1603C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1612C56-L1612C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1612C56-L1612C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1621C56-L1621C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1621C56-L1621C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1630C56-L1630C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1630C56-L1630C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1639C56-L1639C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1639C56-L1639C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1648C56-L1648C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1648C56-L1648C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1657C56-L1657C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1657C56-L1657C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1666C56-L1666C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1666C56-L1666C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1687C56-L1687C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1687C56-L1687C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1691C53-L1691C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1691C53-L1691C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1695C57-L1695C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1695C57-L1695C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1699C58-L1699C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1699C58-L1699C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1703C57-L1703C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1703C57-L1703C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1707C60-L1707C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1707C60-L1707C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1716C56-L1716C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1716C56-L1716C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1720C53-L1720C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1720C53-L1720C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1724C57-L1724C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1724C57-L1724C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1728C58-L1728C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1728C58-L1728C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1732C57-L1732C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1732C57-L1732C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1736C60-L1736C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1736C60-L1736C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1745C56-L1745C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1745C56-L1745C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1749C53-L1749C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1749C53-L1749C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1753C57-L1753C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1753C57-L1753C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1757C58-L1757C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1757C58-L1757C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1761C57-L1761C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1761C57-L1761C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1765C60-L1765C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1765C60-L1765C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1774C56-L1774C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1774C56-L1774C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1778C53-L1778C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1778C53-L1778C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1782C57-L1782C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1782C57-L1782C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1786C58-L1786C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1786C58-L1786C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Checked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1790C57-L1790C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1790C57-L1790C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.HotChecked", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1794C60-L1794C119" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1794C60-L1794C119" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1803C56-L1803C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1803C56-L1803C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1812C56-L1812C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1812C56-L1812C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1826C56-L1826C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1826C56-L1826C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1830C54-L1830C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1830C54-L1830C107" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1839C56-L1839C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1839C56-L1839C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1848C56-L1848C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1848C56-L1848C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Link", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1852C54-L1852C107" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1852C54-L1852C107" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1861C56-L1861C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1861C56-L1861C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1870C56-L1870C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1870C56-L1870C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1874C53-L1874C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1874C53-L1874C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1878C57-L1878C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1878C57-L1878C113" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1892C56-L1892C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1892C56-L1892C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1901C56-L1901C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1901C56-L1901C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1910C56-L1910C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1910C56-L1910C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1914C53-L1914C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1914C53-L1914C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1918C57-L1918C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1918C57-L1918C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1922C57-L1922C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1922C57-L1922C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1926C58-L1926C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1926C58-L1926C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1935C56-L1935C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1935C56-L1935C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1939C53-L1939C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1939C53-L1939C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1943C57-L1943C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1943C57-L1943C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1947C57-L1947C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1947C57-L1947C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1951C58-L1951C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1951C58-L1951C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1960C56-L1960C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1960C56-L1960C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1964C53-L1964C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1964C53-L1964C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1968C57-L1968C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1968C57-L1968C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1972C57-L1972C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1972C57-L1972C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1976C58-L1976C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1976C58-L1976C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1985C56-L1985C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1985C56-L1985C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1989C53-L1989C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1989C53-L1989C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1993C57-L1993C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1993C57-L1993C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1997C57-L1997C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L1997C57-L1997C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2001C58-L2001C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2001C58-L2001C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2010C56-L2010C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2010C56-L2010C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2014C53-L2014C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2014C53-L2014C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2018C57-L2018C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2018C57-L2018C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2022C57-L2022C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2022C57-L2022C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2026C58-L2026C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2026C58-L2026C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2035C56-L2035C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2035C56-L2035C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2039C53-L2039C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2039C53-L2039C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2043C57-L2043C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2043C57-L2043C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2047C57-L2047C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2047C57-L2047C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2051C58-L2051C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2051C58-L2051C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2060C56-L2060C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2060C56-L2060C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2069C56-L2069C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2069C56-L2069C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2083C56-L2083C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2083C56-L2083C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2087C53-L2087C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2087C53-L2087C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2091C58-L2091C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2091C58-L2091C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2095C58-L2095C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2095C58-L2095C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.SelectedNotFocus", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2099C66-L2099C131" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2099C66-L2099C131" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Closed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2108C56-L2108C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2108C56-L2108C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Opened", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2112C56-L2112C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2112C56-L2112C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2121C56-L2121C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2121C56-L2121C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2153C56-L2153C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2153C56-L2153C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2157C53-L2157C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2157C53-L2157C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Selected", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2161C58-L2161C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2161C58-L2161C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2165C58-L2165C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2165C58-L2165C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Focused", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2169C57-L2169C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2169C57-L2169C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.ReadOnly", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2173C58-L2173C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2173C58-L2173C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Assist", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2177C56-L2177C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2177C56-L2177C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2186C56-L2186C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2186C56-L2186C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2200C56-L2200C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2200C56-L2200C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2209C56-L2209C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2209C56-L2209C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2223C56-L2223C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2223C56-L2223C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2227C58-L2227C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2227C58-L2227C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2231C58-L2231C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2231C58-L2231C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2240C56-L2240C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2240C56-L2240C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2244C58-L2244C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2244C58-L2244C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2248C58-L2248C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2248C58-L2248C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2257C56-L2257C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2257C56-L2257C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2261C58-L2261C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2261C58-L2261C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2265C58-L2265C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2265C58-L2265C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2274C56-L2274C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2274C56-L2274C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2278C58-L2278C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2278C58-L2278C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2282C58-L2282C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2282C58-L2282C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2291C56-L2291C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2291C56-L2291C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2295C58-L2295C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2295C58-L2295C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2299C58-L2299C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2299C58-L2299C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2308C56-L2308C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2308C56-L2308C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2312C58-L2312C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2312C58-L2312C115" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2316C58-L2316C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2316C58-L2316C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2325C56-L2325C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2325C56-L2325C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2329C58-L2329C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2329C58-L2329C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2338C56-L2338C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2338C56-L2338C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2342C58-L2342C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2342C58-L2342C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2351C56-L2351C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2351C56-L2351C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2355C58-L2355C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2355C58-L2355C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2364C56-L2364C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2364C56-L2364C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2368C58-L2368C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2368C58-L2368C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2377C56-L2377C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2377C56-L2377C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2381C58-L2381C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2381C58-L2381C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Active", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2390C56-L2390C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2390C56-L2390C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Inactive", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2394C58-L2394C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2394C58-L2394C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2403C56-L2403C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2403C56-L2403C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2407C53-L2407C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2407C53-L2407C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2411C57-L2411C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2411C57-L2411C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2415C58-L2415C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2415C58-L2415C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2424C56-L2424C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2424C56-L2424C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2428C53-L2428C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2428C53-L2428C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2432C57-L2432C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2432C57-L2432C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2436C58-L2436C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2436C58-L2436C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2445C56-L2445C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2445C56-L2445C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2449C53-L2449C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2449C53-L2449C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2453C57-L2453C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2453C57-L2453C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2457C58-L2457C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2457C58-L2457C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2466C56-L2466C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2466C56-L2466C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2470C53-L2470C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2470C53-L2470C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2474C57-L2474C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2474C57-L2474C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2478C58-L2478C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2478C58-L2478C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2487C56-L2487C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2487C56-L2487C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2491C53-L2491C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2491C53-L2491C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2495C57-L2495C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2495C57-L2495C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2499C58-L2499C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2499C58-L2499C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2508C56-L2508C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2508C56-L2508C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2512C53-L2512C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2512C53-L2512C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2516C57-L2516C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2516C57-L2516C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2520C58-L2520C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2520C58-L2520C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2529C56-L2529C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2529C56-L2529C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2533C53-L2533C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2533C53-L2533C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2537C57-L2537C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2537C57-L2537C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2541C58-L2541C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2541C58-L2541C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2550C56-L2550C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2550C56-L2550C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2554C53-L2554C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2554C53-L2554C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2558C57-L2558C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2558C57-L2558C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2562C58-L2562C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2562C58-L2562C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2571C56-L2571C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2571C56-L2571C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2575C53-L2575C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2575C53-L2575C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2579C57-L2579C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2579C57-L2579C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2583C58-L2583C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2583C58-L2583C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2592C56-L2592C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2592C56-L2592C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2596C53-L2596C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2596C53-L2596C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2600C57-L2600C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2600C57-L2600C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2604C58-L2604C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2604C58-L2604C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2613C56-L2613C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2613C56-L2613C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2617C53-L2617C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2617C53-L2617C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2621C57-L2621C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2621C57-L2621C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2625C58-L2625C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2625C58-L2625C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2634C56-L2634C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2634C56-L2634C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2638C53-L2638C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2638C53-L2638C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2642C57-L2642C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2642C57-L2642C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2646C58-L2646C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2646C58-L2646C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2655C56-L2655C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2655C56-L2655C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2659C53-L2659C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2659C53-L2659C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2663C57-L2663C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2663C57-L2663C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2667C58-L2667C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2667C58-L2667C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2676C56-L2676C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2676C56-L2676C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2680C53-L2680C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2680C53-L2680C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2684C57-L2684C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2684C57-L2684C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2688C58-L2688C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2688C58-L2688C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2697C56-L2697C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2697C56-L2697C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2701C53-L2701C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2701C53-L2701C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2705C57-L2705C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2705C57-L2705C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2709C58-L2709C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2709C58-L2709C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2718C56-L2718C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2718C56-L2718C111" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Hot", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2722C53-L2722C105" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2722C53-L2722C105" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Pressed", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2726C57-L2726C113" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2726C57-L2726C113" }, { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Disabled", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2730C58-L2730C115" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2730C58-L2730C115" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2739C56-L2739C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2739C56-L2739C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2748C56-L2748C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2748C56-L2748C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2757C56-L2757C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2757C56-L2757C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2766C56-L2766C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2766C56-L2766C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2775C56-L2775C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2775C56-L2775C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2785C56-L2785C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2785C56-L2785C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2795C56-L2795C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2795C56-L2795C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2804C56-L2804C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2804C56-L2804C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" }, { "Members": [ { "DocsId": "P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate.Normal", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2813C56-L2813C111" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs#L2813C56-L2813C111" } ], "DocsId": "T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate", - "SourceLink": "https://github.com/dotnet/dotnet/blob/f7b4c5716faaee8fb8a289aed29118cad955c45f/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" + "SourceLink": "https://github.com/dotnet/dotnet/blob/e2c1e00b3d0f96afb892fb261d5921565b400246/src/winforms/src/System.Windows.Forms/System/Windows/Forms/VisualStyles/VisualStyleElement.cs" } ] } \ No newline at end of file diff --git a/xml/System.Formats.Asn1/AsnDecoder.xml b/xml/System.Formats.Asn1/AsnDecoder.xml index 5722cec4f2c..121029d1ddb 100644 --- a/xml/System.Formats.Asn1/AsnDecoder.xml +++ b/xml/System.Formats.Asn1/AsnDecoder.xml @@ -274,8 +274,8 @@ The decoded value. To be added. - + is not defined. @@ -304,7 +304,7 @@ . is not the same as . - + @@ -1812,8 +1812,8 @@ This method does not determine if the string used only characters defined by the encoding. - + is not defined. @@ -1838,7 +1838,7 @@ overlaps . - + diff --git a/xml/System.Formats.Asn1/AsnReader.xml b/xml/System.Formats.Asn1/AsnReader.xml index e1d8f489688..71fec1a71f5 100644 --- a/xml/System.Formats.Asn1/AsnReader.xml +++ b/xml/System.Formats.Asn1/AsnReader.xml @@ -373,8 +373,8 @@ The decoded value. To be added. - + is not a known character string type. @@ -399,7 +399,7 @@ . is not the same as . - + @@ -1632,8 +1632,8 @@ and the reader does not advance. To be added. - + is not a known character string type. @@ -1658,7 +1658,7 @@ . is not the same as . - + @@ -1702,8 +1702,8 @@ This method does not determine if the string used only characters defined by the encoding. - + The next value does not have the correct tag. @@ -1721,7 +1721,7 @@ . is not a character string tag type. - + diff --git a/xml/System.Formats.Asn1/ValueAsnReader.xml b/xml/System.Formats.Asn1/ValueAsnReader.xml index b484fd02e5d..f893f8836ce 100644 --- a/xml/System.Formats.Asn1/ValueAsnReader.xml +++ b/xml/System.Formats.Asn1/ValueAsnReader.xml @@ -345,8 +345,8 @@ The decoded value. To be added. - + is not a known character string type. @@ -371,7 +371,7 @@ . is not the same as . - + @@ -1550,8 +1550,8 @@ and the reader does not advance. To be added. - + is not a known character string type. @@ -1576,7 +1576,7 @@ . is not the same as . - + @@ -1617,8 +1617,8 @@ This method does not determine if the string used only characters defined by the encoding. - + The next value does not have the correct tag. @@ -1636,7 +1636,7 @@ . is not a character string tag type. - + diff --git a/xml/System.IO.Compression/ZipFileExtensions.xml b/xml/System.IO.Compression/ZipFileExtensions.xml index 1258aeeb40a..3a9d6b39250 100644 --- a/xml/System.IO.Compression/ZipFileExtensions.xml +++ b/xml/System.IO.Compression/ZipFileExtensions.xml @@ -274,7 +274,7 @@ The following example shows how to iterate through the contents of a zip archive System.IO.Compression.ZipArchiveEntry - + @@ -317,7 +317,7 @@ The following example shows how to iterate through the contents of a zip archive System.IO.Compression.ZipArchiveEntry - + @@ -503,7 +503,7 @@ The following example shows how to iterate through the contents of a zip archive System.Threading.Tasks.Task<System.IO.Compression.ZipArchiveEntry> - + @@ -547,7 +547,7 @@ The following example shows how to iterate through the contents of a zip archive System.Threading.Tasks.Task<System.IO.Compression.ZipArchiveEntry> - + @@ -747,7 +747,7 @@ A has been compressed usi System.Void - + @@ -913,7 +913,7 @@ A has been compressed usi System.Threading.Tasks.Task - + @@ -1139,7 +1139,7 @@ A has been compressed usi System.Void - + @@ -1325,7 +1325,7 @@ A has been compressed usi System.Threading.Tasks.Task - + diff --git a/xml/System.Xml/XmlReader.xml b/xml/System.Xml/XmlReader.xml index 58c5fbf1579..750bc51cc8e 100644 --- a/xml/System.Xml/XmlReader.xml +++ b/xml/System.Xml/XmlReader.xml @@ -1933,7 +1933,7 @@ This means that the can access any locations that do The qualified name of the attribute. When overridden in a derived class, gets the value of the attribute with the specified . - The value of the specified attribute. If the attribute is not found or the value is , is returned. + The value of the specified attribute. If the attribute is not found, is returned. If the attribute is present but has an empty value, is returned. can access any locations that do The local name of the attribute. The namespace URI of the attribute. When overridden in a derived class, gets the value of the attribute with the specified and . - The value of the specified attribute. If the attribute is not found or the value is , is returned. This method does not move the reader. + The value of the specified attribute. If the attribute is not found, is returned. This method does not move the reader. - + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] @@ -10069,7 +10069,7 @@ Invalid sequences will be represented in the enumeration by - + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] @@ -10117,7 +10117,7 @@ Invalid sequences will be represented in the enumeration by - + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] @@ -10156,7 +10156,7 @@ Invalid sequences will be represented in the enumeration by - + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] @@ -12659,7 +12659,7 @@ If `culture` is `null`, System.Int32 - + @@ -12776,7 +12776,7 @@ If `culture` is `null`, System.Int32 - + diff --git a/xml/System/ObsoleteAttribute.xml b/xml/System/ObsoleteAttribute.xml index 2d2d6ef8d0f..a50b0e6e3a8 100644 --- a/xml/System/ObsoleteAttribute.xml +++ b/xml/System/ObsoleteAttribute.xml @@ -55,14 +55,8 @@ - - Marks program elements that are no longer in use. - - - Source code imported from - - ObsoleteAttribute.cs without any changes, all resulting warnings ignored accordingly. - + Marks program elements that are no longer in use. + To be added. attribute. Accessing the value of the `OldProperty` property in code generates a compiler warning, but calling the `CallOldMethod` method generates a compiler error. The example also shows the output that results when you attempt to compile the source code.